
/* ========== SECTION ========== */
.mysection-one {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  transition: background-image 3s ease-in-out;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}

#carousel-title {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* Strong dark mask over background */
.mysection-one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 29, 61, 0.85) 100%);
  z-index: 0;
}

/* Glassmorphism container */
/* Carousel container (glassmorphism) */
.carousel-content {
  background: transparent;
  padding: 3rem 2rem;
  border-radius: 0;
  position: relative;
  z-index: 1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  transform: translateY(0);
  transition: all 0.3s ease;
}

/* Carousel title */
.carousel-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}

/* Carousel paragraph */
.carousel-content p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  text-shadow: none;
  transition: all 0.6s ease-in-out;
  opacity: 1;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Fade-in animation for JS */
.fade-in {
  opacity: 1 !important;
}


.mysection-one h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mysection-one p {
  font-size: 1.2rem;
}

.discover-btn {
  display: inline-block;
  background: #ffffff;
  color: #001d3d;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.discover-btn:hover {
  background: #f5f5f5;
  color: #001d3d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.book-btn {
  position: absolute;
  bottom: 60px;
  right: 60px;
  background: #ffffff;
  color: #001d3d;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.book-btn:hover {
  background: #f5f5f5;
  color: #001d3d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .mysection-one {
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
    padding-top: 80px;
    text-align: center;
  }

  .carousel-content {
    padding: 2rem 1rem;
  }

  .carousel-content h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .carousel-content p {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    margin-bottom: 1.5rem;
  }

  .discover-btn {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }

  .book-btn {
    position: static;
    margin-top: 1rem;
    align-self: center;
    width: auto;
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .carousel-content h2 {
    font-size: 1.75rem;
  }

  .carousel-content p {
    font-size: 0.95rem;
  }

  .discover-btn,
  .book-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
