/* ═══════════════════════════════════════════════════════════════
   CASPIAN PARADISE — Shared Stylesheet
   Mobile-first, performance-optimised, brand-consistent
═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --green:        #1a6b35;
  --green-dark:   #0f4320;
  --green-mid:    #1f7d3e;
  --green-light:  #e8f5ed;
  --red:          #c0392b;
  --red-hover:    #a93226;
  --purple:       #7b3fa0;
  --gold:         #c9900a;
  --gold-light:   #fef3d0;
  --white:        #ffffff;
  --off-white:    #fafaf8;
  --bg:           #f7f7f5;
  --text:         #111111;
  --text-2:       #3a3a3a;
  --text-3:       #666666;
  --border:       #e0e0d8;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.18);
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --container:    1160px;
  --nav-h:        68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img,
.nav-logo svg {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.nav-links a.active {
  color: #f5c842;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--red);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-hover); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 4px 8px;
  line-height: 1;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--green-dark);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 16px;
  border-radius: 8px;
  transition: background 0.15s;
  text-align: center;
}
.mobile-menu a:hover { background: rgba(255,255,255,.12); }
.mobile-menu .nav-cta { 
  margin-top: 8px;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0 28px;
  height: 52px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn-primary   { background: var(--red); color: #fff; box-shadow: 0 4px 16px rgba(192,57,43,.3); }
.btn-primary:hover { background: var(--red-hover); box-shadow: 0 6px 20px rgba(192,57,43,.4); transform: translateY(-1px); }
.btn-green     { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(26,107,53,.3); }
.btn-green:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-outline   { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-dark:hover { background: var(--green); color: #fff; }
.btn-lg { height: 60px; font-size: 1.1rem; padding: 0 36px; }
.btn-sm { height: 42px; font-size: 0.88rem; padding: 0 20px; }

/* ── SECTION LAYOUT ── */
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-dark { background: var(--green-dark); color: white; }
.section-tinted { background: var(--off-white); }
.section-green { background: var(--green-light); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-dark .section-tag {
  color: #f5c842;
  background: rgba(245,200,66,.12);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--green-dark);
}
.section-dark .section-title { color: white; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-3);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .section-subtitle { color: rgba(255,255,255,.7); }

/* ── CARDS ── */
.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 20px; }
.card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--green-dark); }
.card-text { font-size: 0.9rem; color: var(--text-3); margin-top: 8px; line-height: 1.6; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: white;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-top: 10px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}


/* Hide nav on scroll — toggled by JS on menu page */
.site-nav.nav-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.site-nav {
  transition: transform 0.3s ease;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
/* Quick Links + Our Menu merged into one col via inner grid */
.footer-links-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer-logo img { height: 70px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #f5c842; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; margin-bottom: 12px;
}
.footer-contact-item .icon { font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.footer-cta-wrap { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-cta-wrap .btn { height: 44px; font-size: 0.85rem; border-radius: 8px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #f5c842; }

/* ── FLOATING CALL BUTTON (mobile) ── */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(192,57,43,.5);
  text-decoration: none;
  transition: transform 0.2s;
}
.float-call:hover { transform: scale(1.08); }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* ── REVIEWS ── */
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: #f5c842; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.88rem; }
.review-platform { font-size: 0.75rem; color: var(--text-3); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: span 2; }
  .footer-links-pair { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .float-call { display: flex; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { grid-column: auto; }
  .footer-links-pair { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .btn { height: 48px; font-size: 0.95rem; }
  .btn-lg { height: 54px; }
}

/* ── MOBILE: Hero text centred ── */
@media (max-width: 960px) {
  .hero-inner { text-align: center; }
  .hero-text { align-items: center; display: flex; flex-direction: column; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-eyebrow { align-self: center; }
  .open-badge { align-self: center; }
}

/* ── MOBILE: Page hero (about/contact/menu) centred ── */
.page-hero { text-align: center; }
.page-hero h1, .page-hero p { text-align: center; }

/* ── MOBILE: Hamburger centred in nav bar ── */
@media (max-width: 768px) {
  .nav-inner {
    justify-content: space-between;
    position: relative;
  }
  .nav-toggle {
    /* Centre the hamburger icon itself */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 1.4rem;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
  }
}

/* ── MOBILE: About story section stacks nicely ── */
@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .about-story-grid .about-story-img {
    height: 260px !important;
    order: -1; /* image first, text below */
  }
  .about-story-grid > div:first-child {
    order: 2; /* text second */
  }
}

/* ── ALL NAV menus: close on scroll ── */
