
/* ========== GLOBAL ========== */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --brand:#ffcc00;
  --dark:#111;
  --text:#222;
  --muted:#555;
  --max:1200px;
}
html,body{height:100%}
body{
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.6;
  color:var(--text);
  background:#fff;
}
img{max-width:100%;display:block}

/* Fluid type helpers */
h1{font-size:clamp(1.2rem,1rem + 2vw,1.8rem)}
h2{font-size:clamp(1.4rem,1rem + 3vw,2.2rem)}
h3{font-size:clamp(1.05rem,0.9rem + 1vw,1.35rem)}
p, a, li, button, input{font-size:clamp(0.95rem,0.85rem + 0.4vw,1.05rem)}

/* Layout container */
.container{max-width:var(--max);margin:0 auto;padding:0 20px}

/* ========== HEADER (fixed + mobile menu) ========== */
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;
}

/* Desktop nav */
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 toggle */
.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;
  }
}


/* Push page down so hero isn't under fixed header */
main{padding-top:0}

/* ========== HERO ========== */
.hero{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-top: 0;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}
.hero .hero-text{
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out forwards;
}
.hero .hero-text h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero .hero-text p{
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 30px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== DESTINATIONS GRID ========== */
.destinations {
    padding: 100px 0;
    background: #f9f9f9;
}

.destination-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 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 (optional, if you added earlier) ========== */
.scroll-reveal{opacity:0;transform:translateY(40px);transition:opacity .8s, transform .8s}
.scroll-reveal.active{opacity:1;transform:translateY(0)}

/* ========== SMALLER BREAKPOINT TWEAKS ========== */
@media (max-width:760px){
  .destination-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:520px){
  .destination-grid{grid-template-columns:1fr}
  .cta{border-radius:12px}
}

/* Improve tap targets */
a, button{min-height:44px}

/* FOOTER */
/* 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;
}

/* ===== RESPONSIVE ===== */
@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);
}
