﻿/* ============================================================
   BISTRO NOVA â€” Modern Restaurant Styles
   Theme: Warm orange / white / cream â€” clean, fresh, modern
   ============================================================ */

/* â”€â”€ Fonts & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a1a;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* â”€â”€ Navigation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.7rem 0;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: #fff;
  transition: color 0.4s;
}
.site-nav.scrolled .nav-logo { color: #1a1a1a; }
.nav-logo span { color: #f97316; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9); position: relative; padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: #f97316;
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.site-nav.scrolled .nav-links a { color: #1a1a1a; }
.nav-cta { font-size: 0.88rem; padding: 0.65rem 1.5rem; color: #fff !important; }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px; background: #fff;
  transition: all 0.3s ease; display: block; border-radius: 2px;
}
.site-nav.scrolled .hamburger span { background: #1a1a1a; }
.mobile-nav {
  list-style: none; max-height: 0; overflow: hidden;
  background: #fff; transition: max-height 0.4s ease, padding 0.3s ease;
}
.mobile-nav.open { max-height: 300px; padding: 1rem 0; }
.mobile-nav li a {
  display: block; padding: 0.8rem 1.5rem;
  color: #1a1a1a; font-weight: 500; font-size: 1rem;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.3s, background 0.3s;
}
.mobile-nav li a:hover { color: #f97316; background: #fff7ed; }

/* â”€â”€ Hero Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-section {
  position: relative; min-height: 100vh;
  background: linear-gradient(145deg, #1a1a1a 0%, #2d1b0e 50%, #3d2010 100%);
  display: flex; align-items: center;
  overflow: hidden;
}
#hero-canvas { position:absolute;top:0;left:0;width:100%;height:100%;z-index:0; }
.btn-outline { padding:0.75rem 1.8rem;border-radius:8px;font-weight:600;font-size:0.95rem;display:inline-block;transition:all 0.3s; }
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(249,115,22,0.15) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 100px;
}
.hero-tagline {
  font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase;
  color: #f97316; font-weight: 600; margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 480px; line-height: 1.7; margin-bottom: 2.5rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  letter-spacing: 2px; animation: floatY 2s ease-in-out infinite;
}

/* â”€â”€ Stats Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-bar {
  background: linear-gradient(90deg, #f97316, #ef4444);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; text-align: center;
}
.stat-item { color: #fff; }
.stat-num { display: block; font-size: 2.5rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.85rem; opacity: 0.85; letter-spacing: 0.5px; }

/* â”€â”€ Section Labels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-label {
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  color: #f97316; font-weight: 600; margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #1a1a1a; line-height: 1.2; margin-bottom: 1.5rem;
}
.section-body {
  color: #555; line-height: 1.8; margin-bottom: 1rem; max-width: 520px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-cta { text-align: center; margin-top: 3rem; }

/* â”€â”€ About Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.about-image-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; padding-top: 110%;
  background: linear-gradient(135deg, #fed7aa, #fb923c);
  border-radius: 24px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  box-shadow: 0 30px 80px rgba(249,115,22,0.25);
}
.img-overlay-text {
  position: absolute; bottom: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: rgba(255,255,255,0.9);
  font-weight: 700;
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ef4444);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 10px 30px rgba(249,115,22,0.4);
}
.badge-year { font-size: 0.6rem; letter-spacing: 2px; }
.badge-num { font-size: 1.4rem; font-weight: 800; font-family: 'Playfair Display', serif; }

/* â”€â”€ Menu Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.menu-card { cursor: pointer; }
.menu-card-inner {
  background: #fff; border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden; transition: box-shadow 0.3s ease;
}
.menu-card:hover .menu-card-inner { box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.menu-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.menu-info { padding: 1.5rem; }
.menu-category {
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: #f97316; font-weight: 600;
}
.menu-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: #1a1a1a; margin: 0.4rem 0 0.6rem;
}
.menu-desc { font-size: 0.85rem; color: #777; line-height: 1.5; margin-bottom: 1rem; }
.menu-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-price { font-size: 1.3rem; font-weight: 700; color: #1a1a1a; }
.menu-badge {
  background: #fff7ed; color: #f97316;
  font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.7rem;
  border-radius: 20px; border: 1px solid #fed7aa;
}

/* â”€â”€ Experience Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.experience-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; text-align: center;
}
.exp-card {
  background: #fff; padding: 2.5rem 2rem; border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.exp-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.exp-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.75rem; }
.exp-card p { color: #666; font-size: 0.9rem; line-height: 1.6; }

/* â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.t-card {
  background: #fff; border-radius: 20px; padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-left: 4px solid #f97316;
}
.t-card p { color: #555; font-size: 0.92rem; line-height: 1.7; margin: 1rem 0; }
.reviewer { font-size: 0.85rem; color: #999; }
.reviewer strong { color: #1a1a1a; }
.stars { color: #f97316; font-size: 1rem; letter-spacing: 2px; }

/* â”€â”€ CTA Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a, #2d1b0e);
  padding: 5rem 0; text-align: center; color: #fff;
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer { background: #111; color: rgba(255,255,255,0.75); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem; margin-bottom: 3rem;
}
.footer-grid h4 {
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: 1rem; margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; }
.footer-grid ul li, .footer-grid p {
  font-size: 0.88rem; line-height: 2; opacity: 0.75;
}
.footer-grid ul li a { color: rgba(255,255,255,0.7); }
.footer-grid ul li a:hover { color: #f97316; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; text-align: center; font-size: 0.82rem; opacity: 0.5;
}

/* â”€â”€ Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes floatY { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 640px) {
  .hero-title { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; }
  .about-grid { grid-template-columns: 1fr; }
}
