/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #2a9d8f;
  --teal-dark: #1f7a6e;
  --teal-light: #e0f5f1;
  --amber: #e9a820;
  --amber-light: #fff8e1;
  --terracotta: #c4724e;
  --orange: #e67e22;
  --warm-bg: #fffdf7;
  --text-dark: #2c2c2c;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--warm-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* === Header === */
.header {
  background: var(--white);
  text-align: center;
  padding: 30px 20px;
  border-bottom: 3px solid var(--teal-light);
}

.brand-logo {
  max-width: 280px;
  height: auto;
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--teal-light), var(--amber-light));
  text-align: center;
  padding: 50px 20px;
}

.hero h2 {
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

.hero-sub em {
  font-size: 0.95rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* === CTA Button === */
.cta-button {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(42, 157, 143, 0.3);
}

.cta-button:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

/* === How it Works === */
.how-it-works {
  padding: 50px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === What is a Marmita === */
.what-is-marmita {
  padding: 50px 20px;
  background: var(--white);
}

.what-is-marmita h2 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 24px;
}

.marmita-explain {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.marmita-explain > p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* === Vegan Option === */
.menu-vegan {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--teal-light);
}

.vegan-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.menu-vegan p {
  font-size: 0.82rem;
  color: var(--teal);
  margin-bottom: 0;
  font-style: italic;
}

/* === Marmita Image === */
.marmita-image {
  margin-bottom: 24px;
}

.marmita-image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  margin: 0 auto;
}

.marmita-placeholder {
  width: 100%;
  max-width: 480px;
  height: 260px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff3e0, #fff8e1);
  border: 2px dashed var(--amber);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.marmita-placeholder span {
  font-size: 3rem;
}

.marmita-placeholder p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.marmita-contains {
  background: var(--amber-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 20px;
  text-align: left;
}

.marmita-contains h3 {
  font-size: 1.05rem;
  color: var(--terracotta);
  margin-bottom: 14px;
  text-align: center;
}

.marmita-contains ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.marmita-contains li {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.marmita-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === Menu === */
.menu {
  background: var(--white);
  padding: 50px 20px;
}

.menu h2 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 6px;
}

.menu-dates {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.menu-card {
  background: var(--warm-bg);
  border: 1px solid #f0e8d8;
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  transition: transform 0.15s;
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.menu-day {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.menu-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.menu-price {
  display: inline-block;
  background: var(--amber);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 4px 14px;
  border-radius: 20px;
}

/* === Fusion Card === */
.menu-card.fusion {
  background: linear-gradient(135deg, var(--amber-light), #fff3e0);
  border: 2px solid var(--amber);
  position: relative;
}

.menu-card.fusion .menu-day {
  background: linear-gradient(90deg, var(--terracotta), var(--teal));
}

/* === Menu Extras === */
.menu-extras {
  background: var(--amber-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.menu-extras h3 {
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.menu-extras ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.menu-extras li {
  font-size: 0.95rem;
  font-weight: 500;
}

/* === About === */
.about {
  padding: 50px 20px;
}

.about h2 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 24px;
}

.about-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text-dark);
}

.about-text em {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* === Info === */
.info {
  background: var(--white);
  padding: 50px 20px;
}

.info h2 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 28px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.info-card {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  text-align: center;
  padding: 50px 20px;
}

.cta-section h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.cta-section .cta-button {
  background: var(--amber);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-button:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* === Footer === */
.footer {
  background: #1a1a1a;
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
}

.footer-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 8px;
}

.footer p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-copy {
  margin-top: 12px;
  font-size: 0.78rem;
  opacity: 0.5;
}

/* === Mobile === */
@media (max-width: 600px) {
  .brand-logo {
    max-width: 220px;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 14px 28px;
    width: 100%;
    max-width: 320px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-extras ul {
    flex-direction: column;
    gap: 8px;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
