/* =========================
   GLOBAL STYLES
========================= */
:root {
  --primary: #0f766e;
  --secondary: #134e4a;
  --accent: #facc15;
  --dark: #0f172a;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
  background: #d5aa24;
  color: #ffffff; /* FORCE PURE WHITE */
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600; /* STRONGER */
  display: inline-block;
}

.btn-primary:hover {
  background: var(--secondary);
  color: #ffffff;
}


.btn-accent {
  background: var(--accent);
  color: #000;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
}

.btn-accent:hover {
  opacity: 0.9;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.main-nav a {
  margin-left: 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--primary);
}

/* =========================
   HERO
========================= */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(15,118,110,0.6), rgba(15,118,110,0.6)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 650px;
  color: var(--white);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 80px 0;
}

.section-light {
  background: #f1f5f9;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
}

/* =========================
   FEATURES
========================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.feature-box {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.feature-box h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* =========================
   CARDS (DESTINATIONS)
========================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden; /* THIS IS REQUIRED */
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}


.card:hover {
  transform: translateY(-6px);
}



.card-body {
  padding: 20px;
}

.card-body h3 {
  color: #020617;
  font-weight: 600;
}

.card-body p {
  color: #475569;
}


/* =========================
   CTA STRIP
========================= */
.cta-strip {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  border-radius: 40px;
  margin: 80px 20px;
}

.cta-strip h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-strip p {
  margin-bottom: 25px;
  opacity: 0.95;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #020617;
  color: #cbd5f5;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 35px;
  margin-bottom: 40px;
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #cbd5f5;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .main-nav a {
    margin-left: 15px;
  }

  .cta-strip {
    border-radius: 20px;
  }
}



/* =========================
   MOBILE & TABLET RESPONSIVE
========================= */

/* ---------- TABLETS ---------- */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section {
    padding: 70px 0;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  /* HEADER */
  .header-flex {
    flex-direction: column;
    gap: 15px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .main-nav a {
    margin: 0;
    font-size: 14px;
  }

  /* HERO */
  .hero {
    padding: 80px 0;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

  /* BUTTONS */
  .btn-primary,
  .btn-accent {
    padding: 14px 30px;
    font-size: 15px;
  }

  /* SECTION TITLES */
  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 15px;
  }

  /* FEATURES */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* CARDS */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 200px;
  }

  /* CTA STRIP */
  .cta-strip {
    margin: 40px 15px;
    padding: 60px 20px;
    border-radius: 20px;
  }

  .cta-strip h2 {
    font-size: 30px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer a {
    margin-bottom: 10px;
  }
}

/* ---------- SMALL PHONES ---------- */
@media (max-width: 480px) {

  .logo {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .card img {
    height: 180px;
  }

  .btn-primary,
  .btn-accent {
    width: 100%;
    text-align: center;
  }
}
