/* ===========================
   TERANGA — Custom African Catering
   Design: Warm editorial, West African heritage
   =========================== */

/* --- Variables --- */
:root {
  --bg: #FDF6EE;
  --bg-alt: #F5EDE3;
  --bg-dark: #1A1A18;
  --primary: #C4622D;
  --secondary: #E8A838;
  --accent: #2D4A3E;
  --text: #1A1A18;
  --text-muted: #6B5E52;
  --text-light: #9B8D82;
  --cream: #FAF4ED;
  --border: rgba(196, 98, 45, 0.18);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* --- Typography --- */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Geometric decoration: West African textile-inspired circles */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--border);
}
.geo-circle--1 {
  width: 420px; height: 420px;
  top: -80px; right: 8%;
  border-color: rgba(196, 98, 45, 0.12);
}
.geo-circle--2 {
  width: 280px; height: 280px;
  top: -20px; right: 12%;
  border-color: rgba(232, 168, 56, 0.14);
}
.geo-diamond {
  position: absolute;
  width: 80px; height: 80px;
  border: 1.5px solid rgba(45, 74, 62, 0.12);
  transform: rotate(45deg);
}
.geo-diamond--1 {
  bottom: 18%; right: 35%;
}
.geo-diamond--2 {
  bottom: 30%; right: 25%;
  width: 50px; height: 50px;
}
.geo-triangle {
  position: absolute;
  width: 0; height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(196, 98, 45, 0.07);
}
.geo-triangle--1 {
  bottom: 20%; right: 18%;
  transform: rotate(15deg);
}

/* Warm gradient overlay on right side */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(160deg, #F9EFE5 0%, #F0DCC8 50%, #E8C89A 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 6rem 0;
  padding-left: 0;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-divider-line {
  width: 60px;
  height: 2px;
  background: var(--secondary);
  margin-bottom: 1.5rem;
}

.hero-services {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.8rem 1.75rem;
  background: var(--primary);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 14px rgba(196, 98, 45, 0.3);
  width: fit-content;
}
.hero-cta:hover {
  background: #b0551f;
  transform: translateY(-1px);
}

/* CSS Art: Plate illustration */
.plate-art {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plate-plate {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #F9F3EC;
  border: 2px solid rgba(196, 98, 45, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(196, 98, 45, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
}

.plate-rice {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 40%, #F5E6D0 0%, #EDD9B8 60%, #D8C090 100%);
}

.plate-sauce {
  position: absolute;
  width: 120px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(ellipse, #C45030 0%, #A03A1C 100%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 12px rgba(160, 58, 28, 0.4);
}

/* Accent dots on plate */
.plate-plate::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E8A838;
  top: 30%; left: 70%;
}
.plate-plate::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  bottom: 35%; right: 25%;
}

.plate-bowl {
  position: absolute;
  width: 90px;
  height: 70px;
  border-radius: 0 0 45px 45px;
  background: linear-gradient(180deg, #D4B483 0%, #B89060 100%);
  bottom: 30px;
  right: 60px;
  border: 1px solid rgba(180,140,90,0.4);
}

.plate-spice {
  position: absolute;
  border-radius: 50%;
}
.bowl-spice-1 {
  width: 22px; height: 16px;
  border-radius: 50%;
  background: #C4622D;
  bottom: 80px; right: 50px;
}
.bowl-spice-2 {
  width: 16px; height: 12px;
  border-radius: 50%;
  background: #2D4A3E;
  bottom: 95px; right: 75px;
}

.leaf-decor {
  position: absolute;
  border-radius: 50% 0 50% 50%;
  transform: rotate(45deg);
}
.leaf-1 {
  width: 30px; height: 18px;
  background: #2D4A3E;
  top: 80px; right: 130px;
  transform: rotate(-30deg);
}
.leaf-2 {
  width: 22px; height: 14px;
  background: #4A7A62;
  top: 110px; right: 170px;
  transform: rotate(20deg);
}
.leaf-3 {
  width: 18px; height: 12px;
  background: #C4622D;
  top: 100px; right: 155px;
  transform: rotate(-10deg);
}

/* Steam rising from plate */
.steam {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: rgba(196, 98, 45, 0.2);
  animation: steam-rise 2.5s ease-in-out infinite;
}
.steam-1 { height: 40px; top: 55px; left: 55%; transform: translateX(-50%); animation-delay: 0s; }
.steam-2 { height: 30px; top: 60px; left: 45%; transform: translateX(-50%); animation-delay: 0.8s; }
.steam-3 { height: 35px; top: 58px; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }

@keyframes steam-rise {
  0% { opacity: 0; transform: translateX(-50%) translateY(0) scaleX(1); }
  40% { opacity: 0.5; }
  100% { opacity: 0; transform: translateX(-50%) translateY(-50px) scaleX(0.5); }
}

/* ===========================
   PHILOSOPHY
   =========================== */
.philosophy {
  background: var(--cream);
  padding: 7rem 4rem;
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  color: var(--text);
}

.philosophy-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.philosophy-body em { font-style: italic; color: var(--primary); }

.philosophy-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.value-card:hover { border-color: rgba(196, 98, 45, 0.35); }

.value-icon { flex-shrink: 0; }

.value-card h3 {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-style: normal;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===========================
   OCCASIONS
   =========================== */
.occasions {
  background: var(--bg);
  padding: 7rem 4rem;
}

.occasions-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.occasions-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 3.5rem;
  color: var(--text);
}

.occasion-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.occasion-card {
  padding: 2rem 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(196, 98, 45, 0.1);
  border-radius: 4px;
  transition: all 0.3s;
}
.occasion-card:hover {
  background: var(--bg-alt);
  border-color: rgba(196, 98, 45, 0.25);
  transform: translateY(-3px);
}

.occasion-badge {
  margin-bottom: 1.25rem;
}

.occasion-card h3 {
  font-size: 1.05rem;
  font-family: 'Lora', serif;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  font-style: normal;
}

.occasion-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===========================
   MENU PREVIEW
   =========================== */
.menu-preview {
  background: var(--accent);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

.menu-preview::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(232, 168, 56, 0.15);
  pointer-events: none;
}

.menu-preview::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.menu-header { position: sticky; top: 4rem; }

.menu-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #FAF4ED;
  margin-bottom: 0;
  line-height: 1.15;
}

.menu-preview .section-label { color: var(--secondary); }

.dish-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dish-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(250, 244, 237, 0.1);
}
.dish-row:first-child { border-top: 1px solid rgba(250, 244, 237, 0.1); }

.dish-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.6rem;
}

.dish-info { flex: 1; }

.dish-info h3 {
  font-size: 1.05rem;
  font-family: 'Lora', serif;
  font-weight: 600;
  color: #FAF4ED;
  margin-bottom: 0.4rem;
  font-style: normal;
}

.dish-info p {
  font-size: 0.875rem;
  color: rgba(250, 244, 237, 0.6);
  line-height: 1.6;
  margin: 0;
}

.dish-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid rgba(232, 168, 56, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.menu-note {
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  background: rgba(250, 244, 237, 0.06);
  border-left: 3px solid var(--secondary);
  border-radius: 0 4px 4px 0;
}
.menu-note p {
  font-size: 0.875rem;
  color: rgba(250, 244, 237, 0.65);
  margin: 0;
}

/* ===========================
   PROCESS
   =========================== */
.process {
  background: var(--bg-alt);
  padding: 7rem 4rem;
}

.process-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.process-heading {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 4rem;
  color: var(--text);
  line-height: 1.2;
}

.step-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: left;
}

.step {
  display: grid;
  grid-template-columns: 60px 2px 1fr;
  gap: 0 2rem;
  width: 100%;
  align-items: start;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(196, 98, 45, 0.2) 100%);
  flex-shrink: 0;
}
.step:last-child .step-connector { display: none; }

.step-body {
  padding: 0.5rem 0 2.5rem;
}

.step-body h3 {
  font-size: 1.1rem;
  font-family: 'Lora', serif;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-style: normal;
}

.step-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.process-quote {
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.process-quote blockquote p {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

/* ===========================
   CLOSING
   =========================== */
.closing {
  background: var(--bg);
  padding: 8rem 4rem;
  text-align: center;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.closing-motif {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moti-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
}

.moti-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  opacity: 0.25;
}
.moti-ring-1 { width: 50px; height: 50px; }
.moti-ring-2 { width: 85px; height: 85px; opacity: 0.15; }
.moti-ring-3 { width: 120px; height: 120px; opacity: 0.08; }

.closing-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.closing-heading em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--text);
  padding: 3rem 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-name {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #FAF4ED;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(250, 244, 237, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(250, 244, 237, 0.15);
  margin: 0 auto 1.5rem;
}

.footer-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 244, 237, 0.35);
  margin-bottom: 1.5rem;
}

.footer-info p {
  font-size: 0.8rem;
  color: rgba(250, 244, 237, 0.35);
  margin-bottom: 0.25rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .occasions-heading { margin-bottom: 2rem; }
  .occasion-cards { grid-template-columns: repeat(2, 1fr); }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .menu-inner { grid-template-columns: 1fr; gap: 3rem; }
  .menu-header { position: static; }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 2rem;
    align-items: center;
  }
  .hero-left { padding: 5rem 0 3rem; }
  .hero-right { display: none; }
  .hero::after { display: none; }

  .philosophy { padding: 5rem 2rem; }
  .occasions { padding: 5rem 2rem; }
  .occasion-cards { grid-template-columns: 1fr; }
  .menu-preview { padding: 5rem 2rem; }
  .process { padding: 5rem 2rem; }
  .step { grid-template-columns: 48px 2px 1fr; gap: 0 1.25rem; }
  .closing { padding: 5rem 2rem; }
  .site-footer { padding: 2.5rem 2rem; }

  .step-connector { height: 60px; }

  .footer-values { flex-wrap: wrap; gap: 0.5rem; }
}
