/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
}

.hero-text {
  text-align: center;
  padding: 1rem;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-text .lead {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  background: var(--btn-bg);
  color: var(--btn-color);
  text-decoration: none;
  font-size: 0.9rem;
}

/* --- Top Picks Section --- */
.top-picks {
  padding: 2rem 1rem;
}

.top-picks h1 {
  text-align: center;
  margin-bottom: 0.3rem;
}

.subtitle {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #aaa;
}

/* Slider Container */
.slideshow-container {
  position: relative;
  max-width: 100%;
}

.mySlides {
  display: none;
  text-align: center;
}

.mySlides img {
  width: 100%;
  border-radius: 0.5rem;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 0.8rem;
  margin-top: -1.5rem;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  user-select: none;
}

.prev { left: 0.5rem; }
.next { right: 0.5rem; }

.dotwrapper {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.active, .dot:hover {
  background: var(--primary-color);
}

/* --- Tablet Breakpoint --- */
@media (min-width: 600px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text .lead {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .mySlides img {
    max-height: 400px;
    object-fit: cover;
  }
}

/* --- Desktop Breakpoint --- */
@media (min-width: 900px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text .lead {
    font-size: 1.5rem;
  }

  .hero-ctas {
    gap: 1rem;
  }

  .top-picks {
    max-width: 1200px;
    margin: 0 auto;
  }

  .mySlides {
    padding: 1rem;
  }
}