 
.hero-slide {
  position: relative;
  width: 100%;
 height: 557px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* button goes bottom */
  padding-bottom: 30px;  /* space from bottom */
}

.hero-btn {
  background: #e74c3c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #c0392b;
}

/* Swiper pagination (dots) */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.6);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--accent);
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-slide {
    justify-content: center; 
    height: 343px;
  }

  .hero-content {
    max-width: 100%;
    background: rgba(0,0,0,0.55); /* darker for readability */
    text-align: center;
    padding: 15px;
  }

  .hero-content h2 {
    font-size: 1.3rem; /* smaller text */
  }

  .hero-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}
