/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Body */
body {
    font-family: montserrat, sans-serif;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 25px;
}

header .logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
  transform: translateY(-2px);

}

.logo-text {
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1;
}

.logo-text:hover {
  color: #ffbf00;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    font-size: 1.2em;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

header nav ul li a:hover {
    color: #ffbf00;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 5px;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 950px) {

  header {
    flex-wrap: wrap;
  }

  /* Top row alignment */
  header .logo {
    flex: 1;
  }

  .nav-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  /* THIS is the key change */
  header nav {
    width: 100%;
    order: 3;
  }

  /* Nav hidden by default */
  header nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #000;
    padding: 10px 0;
  }

  header nav ul.active {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 👈 THIS is the key */
    text-align: right;     /* keeps text aligned cleanly */
  }

  /* Social icons move into flow properly */
  .social-icons {
    display: none;
  }
}


/* Hero Section */
.hero {
    background: url('/images/hero-bg.png') center/cover no-repeat;
   
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 60px;
    color: rgb(255, 255, 255);
    text-align: center;
}


.hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: midnightblue;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background-color: #ffbf00;
    color: midnightblue;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.7),
        0 6px 20px rgba(0,0,0,0.6);
    max-width: 900px;
    background-color: rgba(0,0,0,0.5);
    padding: 10px 20px;          
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* About Section */
.about-home {
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f8f8; /* optional subtle contrast */
}

.about-home h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-home h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.about-home p {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn {
  padding: 10px 20px;
    background-color: midnightblue;
    color: white;
    text-decoration: none;
    border-radius: 10px;  
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #ffbf00;
    color: midnightblue;
}

/* Featured Destinations Section */
.featured-destinations {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.featured-destinations h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
  transition: background 0.3s ease;
}

.destination-card:hover .card-overlay {
  background: rgba(0,0,0,0.6);
  
}

.card-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
}

/* Featured Experiences Section */

.featured-experiences {
  padding: 80px 20px;
  background: linear-gradient(to top, #aaefff, #f8f8f8);
  text-align: center;
}

.featured-experiences h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.experience-card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
  transition: background 0.3s ease;
}

.experience-card:hover .card-overlay {
  background: rgba(0,0,0,0.6);
}

.card-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
}

#adventures,
#food,
#hotels {
  scroll-margin-top: 400px;
}

#tours,
#aviation {
  scroll-margin-top: 950px;
}

#attractions {
  scroll-margin-top: 1450px;
}

/* Aviation Section */

.aviation-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #D0F0FF, #ffffff); /* soft sky gradient */
  text-align: center;
}

.aviation-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.aviation-hero-video video {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 40px;
}

.aviation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.aviation-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.aviation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.aviation-card:hover img {
  transform: scale(1.05);
}

.aviation-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
}

/* Featured Blog Section */
.featured-blog {
  padding: 80px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.featured-blog h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Gallery Preview Section */
.gallery-preview {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.gallery-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay container */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Text styling */
.gallery-overlay span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4); /* optional extra contrast */
}

/* Hover effects */
.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}


@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact & Connect Section */
.contact-connect {
  padding: 90px 20px;
  background: linear-gradient(to top, #0f1727, #374595, #56a2db);
  color: #fff;
  text-align: center;
}

.contact-connect h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.contact-connect p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Buttons */
.connect-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn.primary {
  background-color: #ffbf00;
  color: #000;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
}

.btn.primary:hover {
  background-color: #e6a700;
}

.btn.secondary:hover {
  background-color: rgba(255,255,255,0.15);
}

/* Socials */
.connect-social p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.connect-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.connect-social img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.connect-social a:hover img {
  transform: scale(1.2);
}

.tiktok-embed {
  border-radius: 10px;
  
}




/* Footer */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-brand p {
  opacity: 0.8;
}

.footer-nav h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffbf00;
}

.footer-social {
  display: flex;
  flex-direction: column;  /* stack heading + icons vertically */
  align-items: center;     /* center everything horizontally */
  gap: 10px;               /* space between h4 and icons */
}


.footer-social .social-icons {
  display: flex;
  gap: 15px;
}


.footer-social img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@import "./css/destinations.css?v=2.0";

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* smaller base size */
  gap: 0.5rem;
  justify-content: center; /* center the grid on larger screens */
  padding-bottom: 30px;
}

.video-card {
  position: relative;
  width: 100%;
  max-width: 300px; /* limits how big each video can get */
  aspect-ratio: 9 / 16; /* perfect for vertical Shorts */
  margin: 0 auto; /* center card in column */
  
}

.video-card iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Hover zoom effect */
.video-card:hover iframe {
  transform: scale(1.05);  /* slight zoom */
}

/* Mobile: single column */
@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 0.75rem; /* slightly larger gap for readability */
  }
}

/* See All button */
.see-all-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.btn-blog {
   border: 2px solid #333;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  background-color: #000;
  transition: all 0.2s ease;
}

.btn-blog:hover {
     background-color: white;
  color: #333;
}

.section-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  padding-bottom: 30px;
}

/* Privacy Policy */
.privacy {
  padding: 80px 20px;
  background-color: #fff;
  margin: 0 auto;
  max-width: 1000px;
}
.privacy h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.privacy em {
  display: block;
  text-align: center;
  margin-bottom: 40px;
  color: #777;
}

.privacy p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.privacy h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.privacy ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}
