/* ---------- LOGO ---------- */
.nav-logo { display: flex; align-items: center; }
.logo-primary {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
/* Hero logo — full size, centered */
/* Footer */
.logo-footer { height: 52px; width: auto; display: block; margin-bottom: 16px; }
.footer-logo-link { display: inline-block; }

/* ==========================================================================
   RECIPINOS — style.css
   1. Variables  2. Reset  3. Typography  4. Utilities  5. Wave dividers
   6. Navigation  7. Sections  8. Cards  9. Animations  10. Media queries
   ========================================================================== */

/* ---------- 1. VARIABLES ---------- */
:root {
  --ivory: #FAF8F3;
  --ivory-warm: #F5F2EB;
  --emerald: #0B5D4B;
  --emerald-dark: #084537;
  --gold: #C9A227;
  --charcoal: #2B2B2B;
  --muted: #7A7A7A;
  --paprika: #C84A3A;
  --dark: #111111;
  --dark-2: #0A0A0A;
  --wood: #2A1F1A;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Manrope', sans-serif;
  --font-urdu: 'Noto Nastaliq Urdu', serif;

  --container: 1280px;
  --radius: 12px;
  --shadow-soft: 0 8px 48px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }
svg { display: block; }
[dir="rtl"] { direction: rtl; }

/* ---------- 3. TYPOGRAPHY ---------- */
.urdu { font-family: var(--font-urdu) !important; direction: rtl; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; color: var(--charcoal); line-height: 1.15; }
h1.urdu, h2.urdu, h3.urdu, h4.urdu { font-family: var(--font-urdu) !important; line-height: 2; }
p { color: var(--muted); }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.emerald { color: var(--emerald); }

.gold-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 20px 0;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* mixed typography heading: big number + urdu label */
.mixed-heading { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mixed-heading .num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--charcoal);
  line-height: 1;
}
.mixed-heading .label {
  font-family: var(--font-urdu);
  font-size: 20px;
  color: var(--muted);
}

/* ---------- 4. UTILITIES ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.flex { display: flex; }
.grid { display: grid; }
.section { position: relative; padding: 120px 0; overflow: visible; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header .eng-sub { font-size: 14px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn-emerald { background: var(--emerald); color: #fff; }
.btn-emerald:hover { background: var(--emerald-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11,93,75,.3); }
.btn-gold { background: var(--gold); color: #fff; border-radius: 4px; padding: 16px 48px; }
.btn-gold:hover { background: #b3901f; transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--emerald); color: var(--emerald); background: transparent; }
.btn-outline:hover { background: var(--emerald); color: #fff; }
.link-arrow { color: var(--emerald); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; transition: gap .25s var(--ease); }
.link-arrow:hover { gap: 12px; }

.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #E8E4DC;
  color: #999;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .5px;
  text-align: center;
  min-height: 100px;
}
.media-frame { position: relative; width: 100%; height: 100%; overflow: hidden; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: .65s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: .75s; }

/* ---------- 5. TORN PAPER DIVIDERS ---------- */








/* ---------- 6. NAVIGATION ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(250, 248, 243, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  padding: 14px 0;
  border-bottom-color: #EDE8DC;
}
/* Solid navbar for inner pages (recipe, about, blogs, etc.) */
.navbar.navbar-solid {
  background: rgba(250, 248, 243, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  border-bottom-color: #EDE8DC;
  padding: 14px 0;
}
.navbar.navbar-solid .nav-logo .logo-text { color: var(--emerald); }
.navbar.navbar-solid .nav-links a { color: var(--charcoal); }
.navbar.navbar-solid .nav-hamburger span { background: var(--charcoal); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { margin-left: auto; }

.nav-logo .logo-text {
  font-family: var(--font-serif); font-weight: 700; font-size: 26px;
  color: #fff; transition: color .35s var(--ease);
}
.navbar.scrolled .nav-logo .logo-text { color: var(--emerald); }

.nav-links { display: flex; flex-direction: row-reverse; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-urdu); font-size: 17px;
  color: rgba(255,255,255,.92);
  position: relative;
  padding-bottom: 4px;
  transition: color .35s var(--ease);
}
.navbar.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover { color: var(--gold); }

.nav-item-mega { position: relative; }
.mega-menu {
  position: absolute; top: calc(100% + 20px); right: 0;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-soft);
  padding: 24px; display: grid; grid-template-columns: repeat(2, 160px); gap: 8px 24px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav-item-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu a { font-family: var(--font-urdu); color: var(--charcoal); font-size: 16px; padding: 6px 0; }
.mega-menu a:hover { color: var(--emerald); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span { width: 100%; height: 2.5px; background: #fff; border-radius: 2px; display: block; transition: background .35s var(--ease); }
.navbar.scrolled .nav-hamburger span { background: var(--charcoal); }


/* mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
  background: var(--ivory); z-index: 210; padding: 32px 28px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
  overflow-y: auto;
}
.mobile-drawer.active { transform: translateX(0); }
.drawer-close { font-size: 24px; color: var(--charcoal); margin-bottom: 32px; display: block; }
.mobile-drawer a { display: block; font-family: var(--font-urdu); font-size: 19px; padding: 14px 0; border-bottom: 1px solid #EDE8DC; color: var(--charcoal); }
.drawer-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 205; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
.drawer-scrim.active { opacity: 1; visibility: visible; }

/* ---------- 7. SECTIONS ---------- */

/* TORN PAPER DIVIDERS */
.torn-edge {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 106px;
  z-index: 10;
  pointer-events: none;
  line-height: 0;
  font-size: 0;
}
.torn-edge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}
@media (max-width: 768px) {
  .torn-edge { height: 60px; }
  .torn-edge img { object-fit: cover; object-position: center; }
}

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  background: #1a1a1a;
  overflow: visible;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.40); }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
}
.hero-logo {
  width: min(580px, 85vw);
}
.logo-hero {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.66)) drop-shadow(0 8px 32px rgba(0,0,0,0.54));
}



/* ---------- SEARCH STRIP ---------- */
.search-strip {
  background: #FFFFFF;
  padding: 56px 0 52px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.strip-tagline {
  font-family: var(--font-urdu);
  font-size: 21px;
  color: #0B5D4B;
  line-height: 2.2;
  margin-bottom: 32px;
  display: block;
}
.strip-search-wrap {
  display: flex;
  align-items: center;
  max-width: 580px;
  margin: 0 auto 28px;
  background: #FAF8F3;
  border-radius: 50px;
  padding: 6px 6px 6px 28px;
  border: 1px solid #E8E4DC;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}
.strip-search-wrap:focus-within {
  box-shadow: 0 4px 32px rgba(201,162,39,0.25);
}
.strip-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-urdu);
  font-size: 17px;
  color: #2B2B2B;
  direction: rtl;
  padding: 8px 0;
}
.strip-input::placeholder {
  color: #A0998C;
}
.strip-search-btn {
  background: #0B5D4B;
  border: none;
  border-radius: 50px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}
.strip-search-btn:hover {
  background: #094d3d;
  transform: scale(1.05);
}
.strip-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.strip-tags a {
  background: transparent;
  color: #2B2B2B;
  border: 1px solid #D0CBC0;
  padding: 8px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.strip-tags a:hover {
  background: #0B5D4B;
  border-color: #0B5D4B;
  color: #ffffff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .search-strip { padding: 40px 0 36px; }
  .strip-tagline { font-size: 18px; }
  .strip-search-wrap { margin: 0 16px 24px; }
  .strip-tags { gap: 8px; padding: 0 16px; }
  .strip-tags a { padding: 7px 16px; font-size: 12px; }
}


/* Intro section heading — Nastaleeq right-aligned */
.intro-heading {
  font-family: 'Noto Nastaliq Urdu', serif !important;
  text-align: right;
  direction: rtl;
  line-height: 2;
}
.intro-heading.centered {
  text-align: center;
}
/* INTRO SPLIT */
.intro-split .container { display: grid; grid-template-columns: 55fr 45fr; gap: 60px; align-items: center; }
.intro-photo { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; position: relative; }
.intro-text-wrap { position: relative; }
.floating-card {
  background: #fff; padding: 48px; box-shadow: var(--shadow-soft); border-radius: 8px;
  position: relative; z-index: 2;
}
.intro-split .floating-card { margin-top: 0; }
.intro-split .intro-card { margin-right: -60px; }
.floating-card h2 { font-size: clamp(30px, 3vw, 40px); margin-bottom: 18px; }
.floating-card p.urdu { font-size: 19px; line-height: 2.1; margin-bottom: 22px; color: var(--charcoal); }

/* FEATURED RECIPE */
.featured-recipe { background: var(--ivory); }
.featured-recipe .container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
.featured-photo-wrap { position: relative; aspect-ratio: 4/3; border-radius: var(--radius) 0 0 var(--radius); overflow: hidden; }
.featured-card { margin-left: -50px; padding: 56px; }
.featured-card .meta-row { display: flex; gap: 24px; margin: 20px 0 28px; flex-wrap: wrap; }
.featured-card .meta-row span { font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.featured-card h2 { font-size: clamp(32px, 3.5vw, 42px); }
.featured-card .urdu-title { font-family: var(--font-urdu); font-size: 24px; color: var(--emerald); margin: 8px 0 18px; }
.featured-card p.urdu { font-size: 18px; line-height: 2; margin-bottom: 8px; }

/* STATS + QUALITY */
.stats-section .container { display: grid; grid-template-columns: 60fr 40fr; gap: 60px; align-items: center; }
.quality-photo-wrap { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; }
.quality-card-wrap { position: relative; }
.quality-card { margin-left: -70px; padding: 44px; }
.quality-card h2 { font-size: clamp(28px, 3vw, 36px); }

.arc-stats { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.arc-stat { position: relative; width: 130px; height: 130px; }
.arc-stat svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.arc-stat-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.arc-stat-inner .num { font-family: var(--font-serif); font-weight: 700; font-size: 32px; color: var(--charcoal); }
.arc-stat-inner .label { font-family: var(--font-urdu); font-size: 15px; color: var(--muted); margin-top: 2px; }

/* TRENDING GRID */
.trending-section { background: var(--ivory-warm); }
.recipe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.recipe-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.recipe-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.recipe-card .img-wrap { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.recipe-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.recipe-card:hover .img-wrap img { transform: scale(1.05); }
.badge { position: absolute; top: 14px; padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 600; color: #fff; letter-spacing: .5px; }
.badge-cuisine { left: 14px; background: var(--emerald); }
.badge-trending { right: 14px; background: var(--paprika); font-family: var(--font-urdu); font-size: 12px; }
.recipe-card-body { padding: 22px; }
.recipe-card .cat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.recipe-card h3 { font-size: 22px; margin: 6px 0 4px; }
.recipe-card .urdu-title { font-family: var(--font-urdu); font-size: 17px; color: var(--charcoal); margin-bottom: 12px; }
.recipe-card .meta-row { display: flex; gap: 16px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }

/* PARALLAX */
.parallax-section {
  position: relative; overflow: hidden; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  background-image: url('images/parallax-1.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  .parallax-section {
    background-attachment: scroll;
  }
}
.parallax-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.55); z-index: 1; }
.parallax-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 24px; }
.parallax-text {
  font-family: var(--font-urdu);
  font-size: clamp(30px, 4.5vw, 54px);
  color: var(--gold);
  text-align: center;
  direction: rtl;
  line-height: 2;
  margin-bottom: 36px;
}
.parallax-content .big-num { font-family: var(--font-serif); font-weight: 700; font-size: clamp(72px, 10vw, 120px); line-height: 1; }
.parallax-content .urdu-line { font-family: var(--font-urdu); font-style: italic; font-size: clamp(40px, 6vw, 72px); color: var(--gold); margin: 8px 0 36px; }
@media (max-width: 767px) {
  .parallax-section { min-height: 380px; }
}

/* CUISINES */
.cuisine-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 36px 24px; }
.cuisine-item { text-align: center; }
.cuisine-circle {
  width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px;
  border: 2px solid transparent; transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.cuisine-item:hover .cuisine-circle { border-color: var(--emerald); transform: translateY(-4px); }
.cuisine-circle img { width: 100%; height: 100%; object-fit: cover; }
.cuisine-flag { font-size: 20px; margin-bottom: 4px; }
.cuisine-name { font-size: 15px; font-weight: 500; transition: color .25s var(--ease); }
.cuisine-item:hover .cuisine-name { color: var(--emerald); }

/* VIDEOS */
.videos-section { background: var(--dark); color: #fff; }
.videos-section h2 { color: #fff; }
.videos-section .section-header .eng-sub { color: rgba(255,255,255,.5); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.video-card { background: #1B1B1B; border-radius: var(--radius); overflow: hidden; }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.play-btn span {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(0,0,0,.45); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px;
  transition: background .3s var(--ease), transform .3s var(--ease);
  border: 1.5px solid rgba(255,255,255,.7);
}
.video-card:hover .play-btn span { background: var(--emerald); transform: scale(1.08); }
.duration-badge { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.7); color: #fff; font-size: 12px; padding: 3px 10px; border-radius: 50px; }
.video-card-body { padding: 18px 20px; }
.video-card-body h3 { color: #fff; font-size: 20px; }
.video-card-body .urdu { color: rgba(255,255,255,.55); font-size: 15px; margin-top: 4px; }
.btn-youtube { background: #FF0000; color: #fff; display: block; width: max-content; margin: 0 auto; }
.btn-youtube:hover { background: #cc0000; }

/* GALLERY (dark wood) */
.gallery-section {
  background-color: var(--wood);
  background-image: linear-gradient(rgba(42,31,26,.55), rgba(42,31,26,.75)), url('images/wood-bg.jpg');
  background-size: cover; background-position: center;
  color: #fff;
}
.gallery-section h2 { color: #fff; }
.gallery-section .section-header .eng-sub { color: rgba(255,255,255,.55); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gallery-item { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(11,93,75,.75);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: #fff; opacity: 0; transition: opacity .35s var(--ease);
}
.gallery-overlay svg { width: 28px; height: 28px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-follow { text-align: center; margin-top: 48px; }

/* NEWSLETTER */
.newsletter-section { text-align: center; }
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-inner h2 { font-size: clamp(34px, 4vw, 48px); margin: 10px 0 6px; }
.newsletter-inner .eng-sub { color: var(--muted); font-size: 15px; margin-bottom: 18px; letter-spacing: 1px; text-transform: uppercase; }
.newsletter-inner p.urdu { font-size: 18px; margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 15px 22px; border-radius: 50px; border: 1.5px solid #E4DFD2;
  font-family: var(--font-urdu); direction: rtl; font-size: 15px; outline: none;
  transition: border-color .25s var(--ease);
}
.newsletter-form input:focus { border-color: var(--emerald); }
.newsletter-note { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); border-top: 1px solid var(--gold); }
.footer-main { padding: 80px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: #fff; font-family: var(--font-sans); font-size: 15px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; text-align: right; direction: rtl; }
.footer-links { text-align: right; direction: rtl; }
.footer-logo { font-family: var(--font-serif); font-size: 28px; color: #fff; margin-bottom: 16px; display: block; }
.footer-grid .urdu { font-size: 16px; line-height: 2; margin-bottom: 20px; }
.footer-links a { display: block; padding: 7px 0; font-family: var(--font-urdu); font-size: 15px; color: rgba(255,255,255,.7); transition: color .25s var(--ease); text-align: right; }
.footer-links a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 14px; }
.social-icons a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease), border-color .25s var(--ease);
}
.social-icons a:hover { background: var(--gold); border-color: var(--gold); }
.social-icons a.icon-yt { background: #FF0000 !important; border-color: #FF0000 !important; }
.social-icons a.icon-yt:hover { background: #CC0000 !important; border-color: #CC0000 !important; }
.social-icons a.icon-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; border-color: transparent !important; }
.social-icons a.icon-ig:hover { opacity: 0.85; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; }
.footer-contact p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 10px; }
.footer-mini-form { display: flex; margin-top: 16px; gap: 8px; }
.footer-mini-form input { flex: 1; padding: 11px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff; font-size: 13px; direction: rtl; font-family: var(--font-urdu); }
.footer-mini-form button { background: var(--emerald); color: #fff; padding: 11px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; }
.footer-bottom { background: var(--dark-2); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom-links { display: flex; gap: 20px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.5); }

/* ---------- INNER PAGE HEADER (recipes.html / recipe.html) ---------- */
.page-header {
  padding: 180px 0 80px; background: var(--charcoal);
  background-image: linear-gradient(rgba(17,17,17,.65), rgba(17,17,17,.65)), url('images/parallax-1.jpg');
  background-size: cover; background-position: center;
  text-align: center; color: #fff;
}
.page-header h1 { color: #fff; font-size: clamp(38px, 5vw, 56px); }
.page-header .urdu { font-family: var(--font-urdu); font-size: 19px; color: rgba(255,255,255,.8); margin-top: 12px; }
.breadcrumbs { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 16px; }
.breadcrumbs a:hover { color: var(--gold); }

/* filters bar (recipes.html) */
.filters-bar { background: #fff; border-bottom: 1px solid #EDE8DC; padding: 24px 0; position: sticky; top: 0; z-index: 40; }
.filters-bar .container { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }
.filter-chip {
  padding: 9px 20px; border-radius: 50px; border: 1.5px solid #E4DFD2; font-size: 14px;
  font-family: var(--font-urdu); transition: all .25s var(--ease);
}
.filter-chip.active, .filter-chip:hover { background: var(--emerald); border-color: var(--emerald); color: #fff; }

.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 56px; }
.pagination a {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid #E4DFD2; display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all .25s var(--ease);
}
.pagination a.active, .pagination a:hover { background: var(--emerald); border-color: var(--emerald); color: #fff; }

/* recipe.html detail */
.recipe-hero { padding: 180px 0 0; background: var(--ivory); }
.recipe-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; margin-top: -60px; position: relative; z-index: 2; }
.recipe-main-photo { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.recipe-title-block { padding: 0 4px 32px; }
.recipe-title-block h1 { font-size: clamp(34px, 4vw, 52px); }
.recipe-title-block .urdu-title { font-family: var(--font-urdu); font-size: 22px; color: var(--emerald); margin-top: 10px; }
.recipe-meta-strip { display: flex; gap: 30px; flex-wrap: wrap; margin: 24px 0; padding: 24px 0; border-top: 1px solid #EDE8DC; border-bottom: 1px solid #EDE8DC; }
.recipe-meta-strip div { text-align: center; }
.recipe-meta-strip .val { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--emerald); }
.recipe-meta-strip .lbl { font-family: var(--font-urdu); font-size: 14px; color: var(--muted); }
.recipe-body h2 { font-size: 28px; margin: 40px 0 18px; }
.recipe-body p.urdu { font-size: 18px; line-height: 2.1; margin-bottom: 16px; }
.ingredients-list li, .steps-list li { font-family: var(--font-urdu); font-size: 18px; line-height: 2; padding: 10px 0; border-bottom: 1px dashed #E4DFD2; direction: rtl; }
.steps-list { counter-reset: step; }
.steps-list li { display: flex; gap: 14px; align-items: flex-start; border-bottom: none; padding: 16px 0; }
.recipe-sidebar { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 32px; height: max-content; }
.recipe-sidebar h4 { font-size: 18px; margin-bottom: 20px; }
.related-recipe { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid #EDE8DC; }
.related-recipe .thumb { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.related-recipe h5 { font-family: var(--font-urdu); font-size: 15px; font-weight: 500; }

/* ---------- 10. MEDIA QUERIES ---------- */
@media (max-width: 1280px) {
  .container { padding: 0 24px; }
  .recipe-grid { grid-template-columns: repeat(3, 1fr); }
  .cuisine-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .intro-split .container, .stats-section .container, .featured-recipe .container { grid-template-columns: 1fr; gap: 40px; }
  .intro-split .floating-card, .featured-card, .quality-card { margin-left: 0; margin-right: 0; }
  .featured-card { padding: 40px 8px; }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  /* Logo block spans full width, two link columns sit side by side below */
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .recipe-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .cuisine-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }
  .parallax-text {
  font-family: var(--font-urdu);
  font-size: clamp(30px, 4.5vw, 54px);
  color: var(--gold);
  text-align: center;
  direction: rtl;
  line-height: 2;
  margin-bottom: 36px;
}
.parallax-content .big-num { font-size: 15vw; }
  .video-grid { grid-template-columns: 1fr; }
  .featured-photo-wrap { border-radius: var(--radius); }
  .newsletter-form { flex-direction: column; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .recipe-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cuisine-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .floating-card, .featured-card, .quality-card { padding: 28px 22px; }
  
  .stats-section .container { gap: 24px; }
}

/* ============================================
   PERMANENT RULE — DO NOT REMOVE OR MODIFY
   No clip-path polygon on any image wrapper.
   Torn paper effect comes from .torn-edge 
   PNG dividers ONLY. Never use ::after or 
   ::before pseudo elements for torn effects.
   ============================================ */
.featured-photo-wrap::after,
.featured-photo-wrap::before,
.quality-photo-wrap::after,
.quality-photo-wrap::before,
.intro-photo-wrap::after,
.intro-photo-wrap::before {
  content: none !important;
  display: none !important;
  clip-path: none !important;
}
.hero-bg::after,
.hero-bg::before {
  clip-path: none !important;
}
img {
  clip-path: none !important;
}
