/* ===========================
   AZMOOD — Landing Page Styles
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #6e131d;
  --red-deep:   #4a0d13;
  --red-glow:   rgba(110, 19, 29, 0.25);
  --bg:         #0d0d0d;
  --bg-2:       #111111;
  --bg-3:       #181818;
  --bg-card:    #161616;
  --border:     rgba(255,255,255,0.07);
  --text:       #f0ece4;
  --text-muted: #888880;
  --text-dim:   #555550;
  --gold:       #c9a96e;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-display:'Bebas Neue', 'Arial Narrow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITY ─────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label--center { text-align: center; }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 48px;
}
.section-heading--center { text-align: center; }

/* ── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
}
.btn--primary:hover {
  background: #a93226;
  border-color: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn--large { padding: 18px 44px; font-size: 14px; }

/* ── NAV ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.nav--scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: default;
}
.nav__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 2px;
}
.nav__cta:hover { background: #a93226 !important; }
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
}
.nav__overlay--active { display: block; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 200;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero {
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 60%, rgba(192,57,43,0.15) 0%, transparent 70%),
    linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.4) 50%, rgba(13,13,13,0.85) 100%);
}
.hero__spice-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1px at 20% 30%, rgba(201,169,110,0.3) 0%, transparent 1px),
    radial-gradient(circle 1px at 80% 20%, rgba(201,169,110,0.2) 0%, transparent 1px),
    radial-gradient(circle 1px at 60% 70%, rgba(201,169,110,0.15) 0%, transparent 1px),
    radial-gradient(circle 1px at 35% 75%, rgba(192,57,43,0.3) 0%, transparent 1px),
    radial-gradient(circle 2px at 75% 55%, rgba(192,57,43,0.2) 0%, transparent 2px),
    radial-gradient(circle 1px at 10% 60%, rgba(201,169,110,0.25) 0%, transparent 1px);
  background-size: 400px 400px, 300px 300px, 500px 500px, 350px 350px, 450px 450px, 280px 280px;
  animation: spiceFloat 20s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes spiceFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFade 1.2s ease forwards;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0.85;
}
.hero__logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.hero__logo-img {
  width: clamp(140px, 25vw, 240px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(110,19,29,0.3));
}
.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.4;
  animation: fadeIn 2s 1.5s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 0.4; } }
.hero__scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── MARQUEE ─────────────────────────── */
.marquee-strip {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.95);
}
.marquee-track .dot { color: rgba(255,255,255,0.5); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STORY ───────────────────────────── */
.story {
  position: relative;
  padding: 140px 48px 160px;
  background-image:
    linear-gradient(to bottom, rgba(13,13,13,0.2) 0%, rgba(13,13,13,0.55) 55%, rgba(13,13,13,1) 100%),
    url('Page  2 background.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  max-width: 100%;
}
.story > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.story__grid.in-view { opacity: 1; transform: none; }

.story__img-frame {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
}
.story__img-inner {
  width: 100%; height: 100%;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.story__box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  transition: transform 0.5s ease;
}
.story__img-inner:hover .story__box-img { transform: scale(1.03); }
.story__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  box-shadow: 0 0 40px var(--red-glow);
}
.story__badge span { font-size: 9px; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); }
.story__badge strong { font-size: 11px; letter-spacing: 0.1em; color: #fff; }

.story__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text);
}
.story__body {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.8;
}
.story__body strong { color: var(--text); }
.story__pillars {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.pillar__icon { font-size: 16px; }
.pillar__label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ── PRODUCTS ────────────────────────── */
.products {
  padding: 120px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s;
}
.product-card.in-view { opacity: 1; transform: none; }
.product-card:hover { border-color: rgba(192,57,43,0.4); }
.product-card--beef { transition-delay: 0.15s; }
.product-card__glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
}
.product-card__tag {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 4px 10px;
  border-radius: 2px;
}
.product-card__ethiopic { font-size: 11px; color: var(--red); letter-spacing: 0.05em; }

.product-card__img {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 24px;
  padding: 0 16px;
}
.product-card__img img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
  transition: transform 0.35s ease;
}
.product-card:hover .product-card__img img {
  transform: scale(1.04) translateY(-4px);
}
.product-card--beef .product-card__img img {
  width: 214px;
  height: 214px;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.product-card__name-eth { font-size: 12px; color: var(--red); letter-spacing: 0.05em; margin-bottom: 20px; }
.product-card__ingredients {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.product-card__ingredients li {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 2px;
}
.product-card__note { font-size: 13px; color: var(--text-muted); font-style: italic; font-weight: 500; margin-bottom: 28px; }
.product-card__btn {
  display: inline-block;
  padding: 11px 28px;
  background: transparent;
  border: 1px solid rgba(192,57,43,0.5);
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  margin-top: auto;
  transition: all 0.25s;
}
.product-card__btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ── SPICES ──────────────────────────── */
.spices { padding: 120px 24px; }
.spices__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.spice-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.25s, background 0.25s;
}
.spice-card.in-view { opacity: 1; transform: none; }
.spice-card:nth-child(1) { transition-delay: 0s; }
.spice-card:nth-child(2) { transition-delay: 0.1s; }
.spice-card:nth-child(3) { transition-delay: 0.2s; }
.spice-card:nth-child(4) { transition-delay: 0.3s; }
.spice-card:nth-child(5) { transition-delay: 0.4s; }
.spice-card:hover {
  border-color: rgba(255,255,255,0.15);
  background: var(--bg-3);
  transform: translateY(-4px);
}
.spice-card__img {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.spice-card__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 140px;
  display: block;
  transition: transform 0.4s ease;
}
.spice-card:hover .spice-card__img img { transform: scale(1.07); }
.spice-card:nth-child(2) .spice-card__img img { transform: translateY(-40px); }
.spice-card:nth-child(2):hover .spice-card__img img { transform: translateY(-40px) scale(1.07); }
.spice-card__name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.spice-card__amharic { font-size: 13px; color: var(--text-muted); }
.spice-card--more {
  background: var(--bg-3);
  border-style: dashed;
  border-color: rgba(255,255,255,0.1);
  justify-content: center;
}
.spice-card--more:hover { transform: none; }
.spice-card__dots { display: flex; gap: 6px; margin-bottom: 4px; }
.spice-card__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.7;
}
.spice-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  margin-top: 4px;
}
.spice-card__link:hover { text-decoration: underline; }

/* ── CTA BANNER ──────────────────────── */
.cta-banner {
  position: relative;
  padding: 120px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(13,13,13,0.65), rgba(13,13,13,0.65)),
    url('Page 3 background.jpg');
  background-size: cover;
  background-position: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(110,19,29,0.25) 0%, transparent 70%);
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(192,57,43,0.02) 40px,
    rgba(192,57,43,0.02) 41px
  );
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.8;
}
.cta-banner__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.1;
}

/* ── FEEDBACK STRIP ─────────────────── */
.feedback-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.feedback-strip p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.feedback-strip__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.feedback-strip__link:hover { opacity: 0.75; text-decoration: underline; }

.footer__feedback-link { color: var(--red) !important; }

/* ── FOOTER ──────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer__logo {
  margin-bottom: 16px;
}
.footer__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.footer__tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer__links h5,
.footer__social h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text); }
.footer__social-links { display: flex; flex-direction: column; gap: 14px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-link:hover { color: var(--text); }
.footer__bottom {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .spices__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav--scrolled { padding: 12px 24px; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 260px; height: 100vh;
    background: #0d0d0d;
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 32px;
    gap: 28px;
    transition: right 0.3s ease;
  }
  .nav__links--open { right: 0; }
  .nav__links a { font-size: 14px; }
  .nav__burger { display: flex; }

  .story { padding: 80px 24px; }
  .story__grid { grid-template-columns: 1fr; gap: 48px; }
  .story__img-frame { max-width: 340px; margin: 0 auto; }

  .products__grid { grid-template-columns: 1fr; max-width: 420px; }
  .spices__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 48px 24px 24px; }
}
@media (max-width: 480px) {
  .hero__wordmark { font-size: 4.5rem; }
  .spices__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; align-items: center; }
  .story__pillars { justify-content: center; }
}
