/* ========================================
   NONA'S KITCHEN — Italian Family Restaurant
   Elegant, warm, heritage, wine & gold
   ======================================== */

:root {
  --primary: #8B1A1A;
  --primary-light: #A52828;
  --accent: #C9952B;
  --accent-light: #DEB04A;
  --cream: #FAF5EF;
  --warm: #F5EDE0;
  --linen: #EFE6D5;
  --dark: #1A0F0A;
  --dark-soft: #2E1E14;
  --text: #3E2A1E;
  --text-muted: #7B6555;
  --text-light: #A89480;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26,15,10,0.06);
  --shadow-md: 0 4px 24px rgba(26,15,10,0.1);
  --shadow-lg: 0 8px 40px rgba(26,15,10,0.15);
  --shadow-gold: 0 4px 20px rgba(201,149,43,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --max-width: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Source Sans Pro', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.15; color: var(--dark); }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Ornament divider */
.ornament { text-align: center; margin: 16px 0 24px; color: var(--accent); font-size: 1.4rem; letter-spacing: 8px; opacity: 0.6; }

/* ---- NAV ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; background: transparent; transition: all var(--transition); }
.nav.scrolled { background: rgba(26,15,10,0.95); backdrop-filter: blur(10px); padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--white); }
.nav-logo em { font-style: italic; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: color var(--transition); }
.nav-links a:hover { color: var(--accent); }
.nav-cta { background: var(--accent) !important; color: var(--dark) !important; padding: 10px 24px; border-radius: 4px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--accent-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(26,15,10,0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }

/* ---- HERO ---- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,15,10,0.82) 0%, rgba(139,26,26,0.5) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; padding: 120px 24px 80px; }
.hero-tagline { display: inline-block; padding: 6px 24px; border: 1px solid var(--accent); color: var(--accent); font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-size: 4rem; color: var(--white); margin-bottom: 20px; font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--accent-light); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all var(--transition); border: none; text-decoration: none; letter-spacing: 0.5px; }
.btn-primary { background: var(--accent); color: var(--dark); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); color: var(--dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); color: var(--white); }

/* ---- SECTIONS ---- */
section { padding: 100px 0; }
.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm); }
.bg-linen { background: var(--linen); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark); color: var(--cream); }
.bg-dark h2, .bg-dark h3 { color: var(--cream); }
.bg-wine { background: var(--primary); color: var(--cream); }
.bg-wine h2, .bg-wine h3 { color: var(--cream); }

.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 12px; font-family: 'Source Sans Pro', sans-serif; }
.section-title { font-size: 2.8rem; margin-bottom: 16px; font-weight: 400; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ---- INTRO GRID ---- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.intro-img img { width: 100%; height: 450px; object-fit: cover; }
.intro-text h2 { margin-bottom: 20px; }
.intro-text p { margin-bottom: 16px; }

/* ---- SIGNATURE DISHES ---- */
.dishes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dish-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dish-img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s ease; }
.dish-card:hover .dish-img { transform: scale(1.05); }
.dish-img-wrap { overflow: hidden; }
.dish-info { padding: 24px; text-align: center; }
.dish-info h3 { font-size: 1.4rem; margin-bottom: 6px; font-weight: 400; }
.dish-info p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; font-style: italic; }
.dish-price { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--accent); font-weight: 700; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); padding: 32px; border-radius: var(--radius); border-top: 3px solid var(--accent); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--accent); line-height: 1; margin-bottom: 8px; opacity: 0.5; }
.testimonial-text { font-size: 0.95rem; color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-top: 4px; letter-spacing: 2px; }

/* ---- MENU PAGE ---- */
.menu-section { margin-bottom: 48px; }
.menu-section h2 { font-size: 2rem; margin-bottom: 8px; display: inline-block; border-bottom: 2px solid var(--accent); padding-bottom: 8px; font-weight: 400; }
.menu-section-desc { color: var(--text-muted); font-style: italic; margin-bottom: 24px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(139,26,26,0.08); }
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.1rem; }
.menu-item-desc { font-size: 0.88rem; color: var(--text-muted); font-style: italic; margin-top: 2px; }
.menu-item-price { font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--accent); font-size: 1.1rem; white-space: nowrap; margin-left: 20px; }

/* ---- RESERVATION FORM ---- */
.reservation-card { background: var(--dark); color: var(--cream); padding: 48px; border-radius: var(--radius-lg); max-width: 600px; margin: 0 auto; }
.reservation-card h2 { color: var(--cream); text-align: center; margin-bottom: 32px; font-weight: 400; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,149,43,0.3); border-radius: 4px; color: var(--cream); font-size: 0.95rem; font-family: 'Source Sans Pro', sans-serif; transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-light { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-form-light .form-group input, .contact-form-light .form-group textarea { background: var(--cream); border: 2px solid rgba(139,26,26,0.1); color: var(--text); }
.contact-form-light .form-group input:focus, .contact-form-light .form-group textarea:focus { border-color: var(--accent); }
.contact-info-dark { background: var(--dark); color: var(--cream); padding: 40px; border-radius: var(--radius-lg); }
.contact-info-dark h3 { color: var(--cream); font-size: 1.5rem; font-weight: 400; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(201,149,43,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail h4 { font-family: 'Source Sans Pro', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 2px; }
.contact-detail p { font-size: 0.95rem; color: rgba(255,255,255,0.7); }

/* ---- PHOTO STRIP ---- */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.photo-strip img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); transition: transform 0.5s ease; cursor: pointer; }
.photo-strip img:hover { transform: scale(1.03); }

/* ---- CTA BANNER ---- */
.cta-banner { text-align: center; padding: 80px 40px; background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1400&q=80&auto=format') center/cover no-repeat; position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,15,10,0.85), rgba(139,26,26,0.75)); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--cream); margin-bottom: 16px; font-weight: 400; font-size: 2.2rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 160px 0 80px; text-align: center; background: var(--dark); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; border: 1px solid rgba(201,149,43,0.15); border-radius: 50%; }
.page-hero::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 350px; height: 350px; border: 1px solid rgba(201,149,43,0.08); border-radius: 50%; }
.page-hero h1 { color: var(--cream); font-size: 3rem; margin-bottom: 12px; font-weight: 400; position: relative; z-index: 1; }
.page-hero p { color: var(--accent); font-size: 1.1rem; font-style: italic; position: relative; z-index: 1; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); padding: 60px 0 30px; color: rgba(250,245,239,0.5); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer h3 { font-family: 'Cormorant Garamond', serif; color: var(--cream); font-size: 1.4rem; margin-bottom: 12px; font-weight: 400; }
.footer h3 em { color: var(--accent); }
.footer p { font-size: 0.9rem; line-height: 1.6; }
.footer h4 { font-family: 'Source Sans Pro', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(250,245,239,0.5); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(250,245,239,0.08); font-size: 0.85rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.5rem; }
  .hero-content { padding: 100px 24px 60px; }
  section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .dishes-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2.2rem; }
}
