/* ============================================================
   JALMOA KITCHEN — Parisian Bistro Theme
   Midnight Navy × Champagne Gold
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0e1420;
  --navy-mid:   #2a3d60;
  --gold:       #c8a050;
  --gold-dark:  #a07830;
  --cream:      #f5f3ef;
  --cream-dark: #e8e4dc;
  --text-body:  #3a3228;
  --text-muted: #7a6e60;
  --white:      #ffffff;
  --shadow:     0 8px 40px rgba(14,20,32,0.13);
  --radius:     12px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', Georgia, serif;
  color: var(--navy);
  line-height: 1.22;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { padding-left: 1.4em; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(14,20,32,0.22);
  padding: 12px 0;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { font-size: 1.5rem; }

.logo-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  padding: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0e1420 0%, #2a3d60 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(200,160,80,0.12) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a050' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,20,32,0.85) 0%, rgba(14,20,32,0.2) 100%);
}

.hero-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border: 1px solid rgba(200,160,80,0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(200,160,80,0.12);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 28px 80px;
  margin-left: calc((100vw - 1180px) / 2);
  margin-left: max(28px, calc((100vw - 1180px) / 2));
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(200,160,80,0.3);
}

.hero-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,160,80,0.4);
}

/* ============================================================
   SHAPEON SECTION
   ============================================================ */
.shapeon-section {
  background: var(--navy);
  padding: 90px 28px;
  position: relative;
  overflow: hidden;
}

.shapeon-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200,160,80,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.shapeon-section--bottom {
  background: linear-gradient(135deg, #0e1420 0%, #1e2d4a 100%);
}

.shapeon-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.shapeon-badge-top {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.shapeon-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 12px;
}

.shapeon-sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 16px;
}

.shapeon-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 52px;
}

/* Product Cards */
.product-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,160,80,0.2);
  border-radius: var(--radius);
  padding: 32px 28px;
  width: 100%;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border-color: rgba(200,160,80,0.5);
}

.product-card--featured {
  background: rgba(200,160,80,0.1);
  border-color: var(--gold);
  transform: scale(1.03);
}

.product-card--featured:hover { transform: scale(1.03) translateY(-6px); }

.product-card--best {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,160,80,0.4);
}

.product-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255,255,255,0.6);
  padding: 4px 14px;
  border-radius: 100px;
}

.product-label--featured {
  background: var(--gold);
  color: var(--navy);
}

.product-label--best {
  background: rgba(200,160,80,0.3);
  color: var(--gold);
}

.product-img {
  width: 140px;
  height: 160px;
  object-fit: contain;
}

.product-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.product-price-block {
  text-align: center;
}

.price-per {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 6px;
}

.price-total {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.price-old {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.price-new {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'EB Garamond', Georgia, serif;
}

.product-shipping {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.btn-buy {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  margin-top: auto;
}

.btn-buy:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-buy--featured {
  background: var(--gold);
  box-shadow: 0 6px 24px rgba(200,160,80,0.35);
}

.btn-buy--best { background: var(--gold); }

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  padding-top: 12px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.8);
}

.trust-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Guarantee */
.guarantee-block {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,160,80,0.2);
  border-radius: var(--radius);
  padding: 28px 36px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.guarantee-seal {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.guarantee-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============================================================
   RECIPES SECTION
   ============================================================ */
.recipes-section {
  padding: 100px 28px;
  background: var(--cream);
}

.recipes-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  text-align: center;
}

.section-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-align: center;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
  font-size: 1.08rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Recipe Grid */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 36px;
}

/* Recipe Card */
.recipe-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14,20,32,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  box-shadow: 0 12px 40px rgba(14,20,32,0.13);
  transform: translateY(-4px);
}

.recipe-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.recipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img { transform: scale(1.05); }

.recipe-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,20,32,0.45) 0%, transparent 55%);
}

.recipe-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.recipe-meta-top {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
}

.recipe-time,
.recipe-servings {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.recipe-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.recipe-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.recipe-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 6px;
  width: 100%;
  transition: background var(--transition), transform var(--transition);
}

.recipe-toggle-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-icon {
  display: inline-block;
  transition: transform var(--transition);
  font-size: 1rem;
}

/* Recipe Details (collapsed) */
.recipe-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fdf9f4;
  border-top: 0px solid transparent;
}

.recipe-details.active {
  max-height: 800px;
  border-top: 2px solid var(--cream-dark);
}

.recipe-details-inner {
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.recipe-col h4 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.recipe-col ul {
  list-style: none;
  padding: 0;
}

.recipe-col ul li {
  font-size: 0.96rem;
  color: var(--text-body);
  padding: 5px 0;
  border-bottom: 1px solid rgba(14,20,32,0.06);
  line-height: 1.5;
}

.recipe-col ul li:last-child { border-bottom: none; }

.recipe-col ol {
  padding-left: 1.3em;
}

.recipe-col ol li {
  font-size: 0.96rem;
  color: var(--text-body);
  padding: 6px 0 6px 4px;
  border-bottom: 1px solid rgba(14,20,32,0.06);
  line-height: 1.6;
}

.recipe-col ol li:last-child { border-bottom: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a0f1a;
  padding: 70px 28px 30px;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h5 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-col a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  margin-bottom: 24px;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .hero-content {
    margin-left: 0;
    padding: 100px 28px 60px;
    max-width: 100%;
  }

  .hero-deco { display: none; }

  .product-cards { flex-direction: column; align-items: center; }
  .product-card--featured { transform: none; }
  .product-card--featured:hover { transform: translateY(-4px); }

  .footer-cols { grid-template-columns: 1fr; gap: 28px; }

  .recipe-details-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 18px; }

  .recipe-grid { grid-template-columns: 1fr; }

  .guarantee-block { flex-direction: column; text-align: center; }

  .trust-badges { gap: 22px; }

  .shapeon-title { font-size: 1.6rem; }
}
