/* ===== GLOBAL ===== */
* {margin:0;padding:0;box-sizing:border-box;}
body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #222;
    background: #fff;
}
img {max-width: 100%; display: block;}
a {text-decoration: none; transition: 0.3s;}
.container {max-width: 1200px; margin: auto; padding: 0 20px;}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo h1 {
    color: white;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    color: #f0f0f0;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

nav a:not(.nav-btn):hover {
    color: #ffcc00;
}

nav a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ffcc00;
    transition: width 0.3s ease;
}

nav a:not(.nav-btn):hover::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 25px;
    background: #ffcc00;
    color: #111 !important;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 75px;
    right: 5%;
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    gap: 20px;
  }

  nav a {
    margin: 0;
    text-align: center;
    width: 100%;
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }
}


/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 13, 0.45); /* dark overlay for text readability */
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.hero-text h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 3rem);
  margin-bottom: 15px;
  text-transform: uppercase !important;
}

.hero-text p {
  font-size: clamp(1rem, 1vw + 0.8rem, 1.3rem);
  margin-bottom: 20px;
}

.hero-text .btn {
  background: #ffcc00;
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero-text .btn:hover {
  background: #e6b800;
}

/* ===== SCROLL DOWN INDICATOR ===== */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}


/* ===== GRID CARDS ===== */
.destination-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.destination-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.destination-card .image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card h3 {
    padding: 25px 25px 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.destination-card p {
    padding: 0 25px 25px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.view-more {
    display: inline-block;
    margin: 0 25px 30px;
    background: transparent;
    color: #111;
    font-weight: 700;
    padding: 12px 0;
    border-radius: 0;
    text-decoration: none;
    text-align: left;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-bottom: 2px solid #ffcc00;
    width: fit-content;
}

.view-more:hover {
    background: transparent;
    color: #ffcc00;
}

/* ===== CTA ===== */
.cta {
    margin: 80px auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ffcc00;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .book-btn {
    display: inline-block;
    background: #ffcc00;
    color: #111;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.cta .book-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {opacity:0; transform: translateY(40px); transition: opacity .8s, transform .8s;}
.scroll-reveal.active {opacity:1; transform: translateY(0);}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .destination-grid {gap: 16px;}
}
@media (max-width: 520px) {
    .destination-grid {grid-template-columns: 1fr;}
    .cta {border-radius:12px; padding:30px 16px;}
}

/* FOOTER */
footer {
    background: #111;
    color: #b0b0b0;
    padding: 80px 5% 30px;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about h3, .footer-links h4, .footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-about h3::after, .footer-links h4::after, .footer-contact h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #ffcc00;
    margin-top: 10px;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

.footer-logo {
    width: 160px;
    margin-top: 20px;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.socials a img {
    width: 18px;
    height: 18px;
    margin: 0;
    filter: brightness(0) invert(1);
}

.socials a:hover {
    background: #ffcc00;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    footer {
        padding: 60px 5% 30px;
    }
    .footer-container {
        text-align: center;
    }
    .footer-about h3::after, .footer-links h4::after, .footer-contact h4::after {
        margin: 10px auto 0;
    }
    .footer-logo {
        margin: 20px auto;
    }
    .socials {
        justify-content: center;
    }
}

/* Initial hidden state */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active state when visible */
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}
