* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, Arial, sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
}

#container {
  position: relative;
  width: 100%;
  height: 100vh;
}



/* Sections */
.section {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transition: transform 1s cubic-bezier(.77,0,.175,1);
  transform: translateY(100%);
  overflow: hidden;
  will-change: transform; /* Optimize for animation */
}

/* Sections with links - make them clickable */
.section[data-link] {
  cursor: pointer;
}

.section[data-link]:hover {
  opacity: 1;
}

.section.active {
  transform: translateY(0);
  z-index: 2;
}

/* Shared inner */
.inner {
  max-width: 1100px;
  margin: auto;
  padding: 100px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Ensure all sections have white text by default */
.section {
  color: white;
}

.section h1,
.section p,
.section .card {
  color: white;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: white;
}

.hero h1 {
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 700;
}

.hero p {
  margin-top: 20px;
  font-size: clamp(18px, 2.5vw, 24px);
  max-width: 600px;
}

.btn {
  margin-top: 30px;
  display: inline-block;
  padding: 15px 30px;
  background: #22c55e;
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
}

/* TOUR SECTIONS - All sections with overlay should have white text */
.section:not(.hero) {
  color: white;
}

.section:not(.hero) h1 {
  font-size: clamp(45px, 6.5vw, 90px);
  font-weight: 700;
  color: white;
}

.section:not(.hero) p {
  font-size: clamp(18px, 2.5vw, 24px);
  color: white;
}

.family {
  background: url("https://i.ibb.co/NdZzLQ8S/Family-Tripss-jpg.jpg") center/cover no-repeat;
  color: white;
}
.honeymoon {
  background: url("https://i.ibb.co/Wvj5Zrbd/Private-Honymoon-jpg.jpg") center/cover no-repeat;
  color: white;
}

.group {
  background: url("https://i.ibb.co/cKZmwKBJ/Group-Tour-jpg.jpg") center/cover no-repeat;
  color: white;
}

.corporate {
  background: url("https://i.ibb.co/VWr5pycs/Corporate-Trips-jpg.jpg") center/cover no-repeat;
  color: white;
}

.hotelbooking {
  background: url("https://i.ibb.co/Fdc6B6H/Hotel-Booking-jpg.jpg") center/cover no-repeat;
  color: white;
}

/* Overlay */
.overlay {
  background: rgba(0, 0, 0, 0.541);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Cards */
.cards {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.card {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 20px;
  color: white;
  flex: 0 0 auto;
  min-width: 200px;
  max-width: 300px;
}

/* Desktop: Cards flow in a row */
@media (min-width: 1025px) {
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  
  .card {
    flex: 0 0 auto;
    min-width: 220px;
    max-width: 280px;
  }
}

/* Tablet: Cards in row with wrap */
@media (max-width: 1024px) and (min-width: 701px) {
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* Mobile: Cards stack vertically */
@media (max-width: 700px) {
  .cards {
    flex-direction: column;
    width: 100%;
  }
  
  .card {
    width: 100%;
    max-width: 100%;
  }
}

/* Contact */
.contact {
  background: #020617;
  color: white;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
  border: none;
}

/* Mobile */
@media(max-width: 700px) {
  .nav {
    padding: 0 20px;
  }
}
.section-logo{
  position: fixed;
  height: 80px;
  width: 100%;
  top: 10px;
  left: 80px;
  align-items: center;
  gap: 10px;
  display: flex;
  z-index: 50;
  color: white;
}
.section-logo img{
  height: 80px;
}

@media(max-width: 700px) {
  .section-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    
  top: 0px;
  left: 0px;
  }
}
