/* Vaishnavi Tours — shared styles */

:root {
  --teal-900: #0a3a42;
  --teal-800: #0e5c68;
  --teal-700: #12707e;
  --teal-100: #e3f0ef;
  --marigold-600: #e8a33d;
  --marigold-700: #cf8a26;
  --marigold-100: #fbeed9;
  --ink: #20302f;
  --ink-soft: #4d5f5d;
  --paper: #faf7f2;
  --paper-alt: #f2ede3;
  --white: #ffffff;
  --border: #e4ddcf;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 58, 66, 0.09);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('images/logo.png');
  background-repeat: no-repeat;
  background-position: center 42%;
  background-size: min(40vw, 420px);
  opacity: 0.045;
}
body::after {
  content: "चला मुलांनो";
  position: fixed;
  left: 0; right: 0;
  top: 68%;
  text-align: center;
  z-index: 0;
  pointer-events: none;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-weight: 700;
  font-size: min(6vw, 60px);
  color: var(--teal-800);
  opacity: 0.045;
  letter-spacing: 0.02em;
}
.site-header, .site-footer, main, section, .container { position: relative; z-index: 1; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-tight { padding: 40px 0; }
.section-alt { background: var(--paper-alt); }
.section-teal { background: var(--teal-900); color: var(--white); }
.section-teal h2, .section-teal h3 { color: var(--white); }
.section-teal p { color: #cfe3e1; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--marigold-700);
  background: var(--marigold-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow-heading {
  display: inline-block;
  background: none;
  padding: 0;
  border-radius: 0;
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--teal-800);
  margin-bottom: 14px;
}
.section-teal .eyebrow-heading { color: var(--white); }

.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--marigold-600); color: var(--teal-900); }
.btn-primary:hover { background: var(--marigold-700); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-teal { background: var(--teal-800); color: var(--white); }
.btn-teal:hover { background: var(--teal-700); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 54px; height: 54px; object-fit: contain; flex: none; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-900);
}
.brand-tag { font-size: 0.72rem; color: var(--marigold-700); letter-spacing: 0.04em; }
.brand-marathi { font-size: 0.85rem; color: var(--teal-700); font-weight: 600; margin-top: 1px; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a.active, .nav-links a:hover { color: var(--teal-800); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--marigold-600);
}
.nav-cta { display: none; }
@media (min-width: 860px) { .nav-cta { display: inline-flex; } }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-toggle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-inner { position: relative; z-index: 2; max-width: 680px; }
.hero h1 { color: var(--white); }
.hero .lede { color: #e7f1ef; font-size: 1.12rem; max-width: 560px; }

.page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 6px; }
.page-hero p { color: #d9ebe8; max-width: 560px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.disclaimer-card { padding: 18px 20px; }
.disclaimer-card p { font-size: 0.82rem; margin-bottom: 0.7em; line-height: 1.5; }
.disclaimer-card h3 { font-size: 1.05rem; }
.card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-100);
  color: var(--teal-800);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-box {
  background: var(--white);
  border-left: 4px solid var(--marigold-600);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.feature-box h4 { margin-bottom: 4px; font-size: 1.02rem; }
.feature-box p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Collage (finished tours) ---------- */
.tour-block { margin-bottom: 54px; }
.tour-block-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.tour-block-head h3 { margin: 0; }
.tour-block-head .stamp {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--teal-800); background: var(--teal-100);
  padding: 5px 12px; border-radius: 999px;
}
.collage-4, .collage-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.collage-2 { max-width: 520px; }
.collage-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper-alt);
}
.collage-frame .collage-bg {
  position: absolute; inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(0.75);
  transform: scale(1.15);
}
.collage-frame .collage-fg {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.upcoming-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 10px;
  cursor: pointer;
  display: block;
}

.stamp-strip {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 10px;
}
.stamp-item { flex: 0 0 255px; text-align: center; }
.stamp-item img {
  width: 255px; height: 192px; object-fit: contain;
  background: var(--paper-alt);
  border-radius: 14px; border: 4px solid var(--white);
  box-shadow: var(--shadow); margin-bottom: 10px;
}
.stamp-item span { font-weight: 600; font-size: 0.9rem; color: var(--teal-800); }

/* ---------- Testimonial ---------- */
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  max-width: 640px;
  min-height: 220px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-card p { font-family: var(--font-display); font-size: 1.1rem; color: var(--teal-900); font-style: italic; }
.quote-card cite { font-style: normal; font-weight: 600; color: var(--marigold-700); margin-top: 10px; display: block; }

/* ---------- Video cards ---------- */
.video-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.video-card { background: #000; }
.video-card .video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #000;
  overflow: hidden;
}
.video-card .video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}
.video-card .video-meta { padding: 14px 18px; background: var(--white); }
.video-card .video-meta h4 { margin: 0; font-size: 1rem; }

/* ---------- Gallery (uniform photo cards) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid figure { margin: 0; }
.gallery-grid button.gallery-thumb {
  all: unset;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--paper-alt);
}
.gallery-grid .gallery-bg {
  position: absolute; inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(0.75);
  transform: scale(1.15);
}
.gallery-grid .gallery-fg {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-grid button.gallery-thumb:hover .gallery-fg { transform: scale(1.06); }
.gallery-grid .placeholder {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-alt); color: var(--ink-soft); font-size: 0.85rem;
  border: 1.5px dashed var(--border); border-radius: var(--radius);
}

/* ---------- Lightbox ---------- */
img.lightbox-img { cursor: pointer; }

.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(10, 20, 20, 0.92);
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  width: min(92vw, 1000px);
  height: min(80vh, 640px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-count {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: #e7f1ef; font-size: 0.85rem; letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next, .lightbox-close { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 10px; right: 10px; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.info-row .icon {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: var(--teal-100); color: var(--teal-800);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--teal-900); }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); font-family: var(--font-body); font-size: 0.96rem;
  background: var(--white);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #cfe3e1; padding: 56px 0 26px; border-top: 1px solid rgba(255,255,255,0.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--marigold-600); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px; font-size: 0.82rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--marigold-600); border-color: var(--marigold-600); color: var(--teal-900); }

.badge-dummy {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  background: var(--marigold-100); color: var(--marigold-700);
  padding: 3px 10px; border-radius: 999px; margin-left: 8px; vertical-align: middle;
}
