
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #CE1126; --gold: #F5A623; --blue: #003087;
  --dark: #1a1a1a; --light: #fafafa; --white: #fff;
  --text: #333; --muted: #666; --border: #e5e5e5;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); padding: 16px 0; transition: all 0.3s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.nav-logo-icon { font-size: 1.5rem; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--red); color: white !important; padding: 8px 20px; border-radius: 4px; }
.nav-cta:hover { background: #a50e1e !important; }

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(206,17,38,0.4) 100%), url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=1600') center/cover; display: flex; align-items: center; padding: 100px 0 60px; }
.hero-content { text-align: center; color: white; }
.hero-badge { display: inline-block; background: var(--gold); color: var(--dark); padding: 6px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em; }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: #a50e1e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(206,17,38,0.4); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--dark); }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }

/* SECTIONS */
section { padding: 80px 0; }
.section-tag { font-size: 0.75rem; font-weight: 700; color: var(--red); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 10px; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 600px; line-height: 1.7; margin-bottom: 48px; }

/* ABOUT */
#about { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-img { border-radius: 8px; overflow: hidden; height: 400px; background: linear-gradient(135deg, var(--red), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 6rem; }

/* MENU */
#menu { background: var(--dark); }
#menu h2, #menu .section-tag { color: white; }
#menu .section-sub { color: rgba(255,255,255,0.7); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.menu-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 28px; transition: all 0.2s; }
.menu-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.menu-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.menu-card h3 { color: white; font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.menu-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }
.menu-price { color: var(--gold); font-weight: 700; font-size: 1rem; margin-top: 12px; }

/* REVIEWS */
#reviews { background: var(--light); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: white; border-radius: 8px; padding: 28px; box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { color: var(--muted); font-style: italic; line-height: 1.7; margin-bottom: 16px; font-size: 0.92rem; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 36px; height: 36px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.8rem; }
.reviewer strong { display: block; font-size: 0.88rem; }
.reviewer span { font-size: 0.78rem; color: var(--muted); }
.rating-summary { text-align: center; margin-bottom: 48px; }
.big-rating { font-size: 5rem; font-family: 'Playfair Display', serif; font-weight: 800; color: var(--red); line-height: 1; }
.big-stars { font-size: 1.5rem; color: var(--gold); }
.rating-count { color: var(--muted); font-size: 0.9rem; }

/* LOCATION */
#location { background: white; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.info-icon { font-size: 1.3rem; flex-shrink: 0; }
.info-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.info-item p, .info-item a { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.map-embed { border-radius: 8px; overflow: hidden; height: 400px; background: var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.call-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: white; padding: 16px 36px; border-radius: 4px; font-weight: 700; font-size: 1.05rem; margin-top: 24px; transition: all 0.2s; }
.call-cta:hover { background: #a50e1e; transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--dark); color: white; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 12px; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-item .icon { font-size: 0.9rem; flex-shrink: 0; color: var(--gold); }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.85rem; transition: background 0.2s; }
.social-link:hover { background: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.footer-flag { display: flex; gap: 3px; }
.flag-block { width: 16px; height: 16px; border-radius: 2px; }
.fb-red { background: var(--red); }
.fb-white { background: white; }
.fb-blue { background: var(--blue); }

/* FAB */
.fab-call { position: fixed; bottom: 24px; right: 24px; background: var(--red); color: white; padding: 14px 20px; border-radius: 50px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 24px rgba(206,17,38,0.4); z-index: 999; transition: all 0.2s; font-weight: 700; }
.fab-call:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(206,17,38,0.5); }
.fab-call span:first-child { font-size: 1.1rem; }
.fab-text strong { display: block; font-size: 0.85rem; }
.fab-text small { font-size: 0.75rem; opacity: 0.85; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
}
