@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --red: #C0272D;
  --red-dark: #8B1A1F;
  --red-light: #FDF2F2;
  --red-glow: rgba(192, 39, 45, 0.12);
  --cream: #FFF9F7;
  --dark: #1A1A1A;
  --gray-800: #2D2D2D;
  --gray-600: #555;
  --gray-400: #999;
  --gray-200: #E8E8E8;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 48px; height: 48px; border-radius: 50%; }
.nav-logo span {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--red);
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--gray-600);
  transition: color 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red); border-radius: 1px;
}
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 22px; border-radius: var(--radius-full);
  font-weight: 600 !important; font-size: 14px !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px var(--red-glow); }
.nav-cta::after { display: none !important; }

/* Mobile menu */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--dark);
  position: absolute; left: 5px; transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 21px; }
.hamburger.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99; padding: 32px 24px;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-size: 22px; font-weight: 500; color: var(--dark); padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu a.active { color: var(--red); }
.mobile-menu .nav-cta {
  display: inline-block; text-align: center; margin-top: 8px;
  font-size: 18px !important; padding: 14px 28px;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { display: none; }
}

/* ─── HERO ─── */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--red) 0%, #D43A40 45%, #E8575C 100%);
  position: relative; overflow: hidden;
  text-align: center; color: var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0,0,0,0.1) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; }
.hero-logo {
  width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 24px;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.25), 0 8px 32px rgba(0,0,0,0.2);
  animation: logoFloat 3s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero h1 {
  font-family: var(--font-display); font-size: 52px; font-weight: 700;
  margin-bottom: 12px; letter-spacing: -1px; line-height: 1.1;
}
.hero .tagline {
  font-size: 19px; opacity: 0.9; margin-bottom: 36px;
  font-weight: 300; max-width: 500px; margin-left: auto; margin-right: auto;
}
.hero-phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--red); padding: 16px 36px;
  border-radius: var(--radius-full); font-size: 22px; font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-phone:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.hero-phone svg { width: 22px; height: 22px; }
.hero-subtitle {
  margin-top: 16px; font-size: 14px; opacity: 0.75; font-weight: 400;
}

/* ─── SECTION SHARED ─── */
.section { padding: 80px 0; }
.section-light { background: var(--gray-100); }
.section-cream { background: var(--cream); }
.section-red { background: var(--red); color: var(--white); }
.section-title {
  font-family: var(--font-display); font-size: 36px; font-weight: 600;
  text-align: center; margin-bottom: 12px;
}
.section-subtitle {
  text-align: center; color: var(--gray-600); font-size: 16px;
  max-width: 560px; margin: 0 auto 48px;
}
.section-red .section-subtitle { color: rgba(255,255,255,0.8); }
.section-label {
  display: block; text-align: center; font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red);
  margin-bottom: 8px;
}
.section-red .section-label { color: rgba(255,255,255,0.6); }

/* ─── HOW TO ORDER STEPS ─── */
.steps { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 240px; max-width: 320px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--red);
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; margin: 0 auto 18px;
  font-family: var(--font-display);
}
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ─── ABOUT / STORY ─── */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.story-text .section-label { text-align: left; }
.story-text h2 {
  font-family: var(--font-display); font-size: 36px; font-weight: 600;
  margin-bottom: 16px; line-height: 1.2;
}
.story-text p { color: var(--gray-600); font-size: 15px; margin-bottom: 16px; }
.story-image {
  display: flex; justify-content: center; align-items: center;
}
.story-image img {
  width: 280px; height: 280px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 8px var(--red-light), var(--shadow-lg);
}

/* ─── TEAM CARDS ─── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card-img {
  height: 220px; background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-img .placeholder-icon {
  width: 80px; height: 80px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 32px; font-weight: 700;
}
.team-card-body { padding: 24px; }
.team-card-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.team-card-body .role { font-size: 13px; color: var(--red); font-weight: 500; margin-bottom: 10px; }
.team-card-body p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* ─── RESTAURANT MENU ─── */
.menu-category { margin-bottom: 40px; }
.menu-category h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--red); display: inline-block;
}
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.menu-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 18px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.menu-item:hover { border-color: var(--red); box-shadow: 0 2px 8px var(--red-glow); }
.menu-item-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.menu-item-info span { font-size: 13px; color: var(--gray-400); }
.menu-item-phone {
  font-size: 14px; font-weight: 600; color: var(--red);
  white-space: nowrap;
}

/* ─── CONTACT / ORDER ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.contact-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  margin-bottom: 20px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
}
.contact-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--red-light); display: flex; align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--red); }
.contact-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--gray-600); }
.contact-item a { color: var(--red); font-weight: 500; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--red), #D43A40);
  border-radius: var(--radius-lg); padding: 56px 48px;
  text-align: center; color: var(--white); position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1), transparent 60%);
}
.cta-banner * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display); font-size: 32px; font-weight: 600;
  margin-bottom: 12px;
}
.cta-banner p { font-size: 16px; opacity: 0.85; margin-bottom: 28px; }
.cta-banner .hero-phone { font-size: 20px; }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark); color: var(--white); padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.footer p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }
.footer h4 {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 16px; color: rgba(255,255,255,0.4);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero { padding: 120px 0 60px; }
  .hero-logo { width: 100px; height: 100px; }
  .hero-phone { font-size: 18px; padding: 14px 28px; }
  .story-grid { grid-template-columns: 1fr; text-align: center; }
  .story-text .section-label { text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; }
}
