/* ============================================
   LUCY ETHIOPIAN RESTAURANT
   Clean Minimalist — Emerald & Cream
   ============================================ */

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

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --cream-50: #faf9f6;
  --cream-100: #f5f3ed;
  --cream-200: #ebe7db;
  --cream-300: #e0d9c8;
  --warm-500: #c49a6c;
  --warm-600: #a87b4f;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #7a7a7a;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--cream-50);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.site-header.scrolled {
  border-bottom-color: var(--cream-200);
  box-shadow: 0 1px 20px rgba(6, 78, 59, 0.04);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--emerald-900);
  letter-spacing: -0.01em;
}

.logo-mark {
  color: var(--emerald-700);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-list a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-smooth);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald-700);
  transition: width 0.3s var(--ease-out);
}

.nav-list a:hover {
  color: var(--emerald-800);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--emerald-900);
  color: var(--cream-50) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: background 0.3s var(--ease-smooth), transform 0.2s var(--ease-smooth) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--emerald-700);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--emerald-900);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(6, 78, 59, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196, 154, 108, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  padding: 4rem 0 4rem 0;
  max-width: 600px;
  margin-left: 8%;
  position: relative;
  z-index: 1;
}

.hero-greeting {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--warm-600);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--emerald-900);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}

.hero-title-accent {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--emerald-700);
  font-size: 0.85em;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-image {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.5s forwards;
}

.hero-image img {
  width: 420px;
  height: 560px;
  object-fit: cover;
  border-radius: 200px 200px 16px 16px;
  box-shadow: 0 40px 80px rgba(6, 78, 59, 0.12);
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream-300), transparent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.btn-primary {
  background: var(--emerald-900);
  color: var(--cream-50);
}

.btn-primary:hover {
  background: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--emerald-800);
  border: 1px solid var(--emerald-700);
}

.btn-ghost:hover {
  background: var(--emerald-900);
  color: var(--cream-50);
  border-color: var(--emerald-900);
}

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1px;
  background: var(--emerald-700);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--emerald-900);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.accent-italic {
  font-style: italic;
  color: var(--emerald-600);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 8rem 0;
  background: var(--cream-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--cream-300);
  border-radius: 8px;
  z-index: -1;
}

.about-content {
  padding: 1rem 0;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-details {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-200);
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.detail-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--emerald-800);
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 8rem 0;
  background: var(--emerald-900);
  color: var(--cream-50);
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.menu-header .section-label {
  color: var(--warm-500);
}

.menu-header .section-label::before {
  background: var(--warm-500);
}

.menu-header .section-title {
  color: var(--cream-50);
}

.menu-header .accent-italic {
  color: var(--warm-500);
}

.menu-intro {
  font-size: 1rem;
  color: rgba(250, 249, 246, 0.6);
  line-height: 1.8;
}

.menu-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  max-width: 960px;
  margin: 0 auto;
}

.category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream-50);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(250, 249, 246, 0.12);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.menu-item {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(250, 249, 246, 0.06);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream-50);
  flex: 1;
}

.menu-item-dots {
  flex: 1;
  height: 1px;
  background: rgba(250, 249, 246, 0.15);
  min-width: 2rem;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: rgba(250, 249, 246, 0.5);
  line-height: 1.65;
  font-weight: 300;
}

.menu-note {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(250, 249, 246, 0.35);
  margin-top: 3rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
  padding: 8rem 0;
  background: var(--cream-100);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.experience-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-200);
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  color: var(--emerald-700);
  margin-top: 2px;
}

.feature-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--emerald-900);
  margin-bottom: 0.2rem;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.experience-images {
  position: relative;
  height: 640px;
}

.exp-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 75%;
}

.exp-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.exp-img-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 45%;
  border: 6px solid var(--cream-100);
  border-radius: 8px;
  overflow: hidden;
}

.exp-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  padding: 8rem 0;
  background: var(--cream-50);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.visit-info .section-title {
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--cream-100);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream-200);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-value {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-link {
  color: var(--emerald-700);
  transition: color 0.3s var(--ease-smooth);
}

.contact-link:hover {
  color: var(--emerald-900);
}

.visit-map {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 480px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  border-radius: 12px;
  border: 1px solid var(--cream-300);
}

.map-placeholder svg {
  color: var(--emerald-700);
  opacity: 0.6;
}

.map-placeholder p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.map-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--emerald-700);
  border-bottom: 1px solid var(--emerald-700);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.map-link:hover {
  color: var(--emerald-900);
  border-color: var(--emerald-900);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--emerald-900);
  color: var(--cream-50);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0 3rem;
  border-bottom: 1px solid rgba(250, 249, 246, 0.1);
}

.footer-brand .logo {
  color: var(--cream-50);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(250, 249, 246, 0.5);
  line-height: 1.7;
  max-width: 260px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(250, 249, 246, 0.6);
  transition: color 0.3s var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--cream-50);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  font-size: 0.95rem;
  color: var(--warm-500);
  transition: color 0.3s var(--ease-smooth);
}

.footer-contact a:hover {
  color: var(--cream-50);
}

.footer-contact span {
  font-size: 0.88rem;
  color: rgba(250, 249, 246, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250, 249, 246, 0.3);
  letter-spacing: 0.04em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 4rem;
  }

  .hero-content {
    margin-left: 0;
    padding: 3rem 2rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    padding: 0 2rem 3rem;
  }

  .hero-image img {
    width: 320px;
    height: 420px;
  }

  .about-grid,
  .experience-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrap::before {
    display: none;
  }

  .experience-images {
    height: 480px;
    order: -1;
  }

  .menu-categories {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream-50);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s var(--ease-out);
    z-index: 1000;
  }

  .nav-list.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active {
    z-index: 1001;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-image img {
    width: 260px;
    height: 340px;
    border-radius: 160px 160px 12px 12px;
  }

  .about-details {
    flex-direction: column;
    gap: 1.5rem;
  }

  .experience-images {
    height: 360px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-tagline {
    max-width: none;
  }

  .container {
    padding: 0 1.5rem;
  }

  .header-inner {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .hero-image img {
    width: 220px;
    height: 290px;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}
