/* ══════════════════════════════════════════════════════════
   SATKOOL MAKHANA — Custom Styles
   File: css/styles.css
══════════════════════════════════════════════════════════ */

/* ── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:wght@400;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* ── Material Icons ──────────────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ── Scroll-reveal Animation ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── Glassmorphism Nav ───────────────────────────────────── */
.glass-nav {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ── Card Shadows ────────────────────────────────────────── */
.makhana-shadow {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}
.makhana-shadow-hover {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.makhana-shadow-hover:hover {
  box-shadow: 0 22px 44px -10px rgba(0, 0, 0, 0.13);
  transform: translateY(-5px) scale(1.015);
}

/* ── Image zoom on card hover ────────────────────────────── */
.card-img-wrap {
  overflow: hidden;
}
.card-img-wrap > div {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.makhana-shadow-hover:hover .card-img-wrap > div {
  transform: scale(1.08);
}

/* ── Hero Parallax ───────────────────────────────────────── */
.hero-bg {
  will-change: transform;
}

/* ── Floating badge animation ────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-9px); }
}
.float-badge {
  animation: float 4s ease-in-out infinite;
}

/* ── Marquee / ticker strip ──────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-inner:hover {
  animation-play-state: paused;
}

/* ── Scroll-progress bar ─────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #735c00, #163422);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── CTA pulse ring ──────────────────────────────────────── */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(22, 52, 34, 0.38); }
  70%  { box-shadow: 0 0 0 14px rgba(22, 52, 34, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(22, 52, 34, 0);    }
}
.pulse-cta {
  animation: pulse-ring 2.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ── Number counter ──────────────────────────────────────── */
.counter {
  font-variant-numeric: tabular-nums;
}

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease, padding 0.3s ease;
}
.faq-body.open {
  max-height: 320px;
}

/* ── Step circle interactive ─────────────────────────────── */
.step-circle {
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.step-circle:hover {
  background-color: #163422;
  border-color: #163422;
  transform: scale(1.12);
}
.step-circle:hover .step-num {
  color: #ffffff;
}

/* ── Feature icon hover ──────────────────────────────────── */
.feature-icon {
  transition: transform 0.3s ease;
}
.feature-icon-wrap:hover .feature-icon {
  transform: scale(1.14) rotate(-4deg);
}

/* ── Testimonial card lift ───────────────────────────────── */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

/* ── Filter tab active state ─────────────────────────────── */
.filter-btn.active-filter {
  background-color: #163422;
  color: #ffffff;
  border-color: #163422;
}

/* ── Mobile nav drawer ───────────────────────────────────── */
#mobile-menu {
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

/* ── Flavour Multi-Photo Modal ────────────────────────────── */
.modal-backdrop {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(22, 52, 34, 0.45);
  transition: opacity 0.3s ease;
}

.gallery-thumb {
  transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.gallery-thumb.active-thumb {
  border-color: #163422 !important;
  opacity: 1 !important;
  transform: scale(1.05);
}

.gallery-thumb:hover {
  opacity: 0.9;
}

