/* ===========================
   SPICE GARDEN - CUSTOM CSS
   Branding: Deep Red + Gold
   Fonts: Playfair Display + Lato
=========================== */
:root {
    --primary: #C0392B;
    --primary-dark: #A93226;
    --secondary: #F39C12;
    --secondary-dark: #D68910;
    --bg-light: #FAFAFA;
    --bg-dark: #1A1A1A;
    --text-dark: #1A1A1A;
    --text-grey: #595959;
    --text-light: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}
.skip-nav {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: var(--text-light); padding: 12px 24px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 10000;
    transition: top 0.3s; text-decoration: none; font-weight: 700;
}
.skip-nav:focus { top: 0; color: var(--text-light); }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); color: var(--text-dark); font-weight: 700; }
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
p { color: var(--text-grey); margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

/* Navbar */
#mainNav {
    background: rgba(26,26,26,0.95); backdrop-filter: blur(10px);
    padding: 12px 0; transition: all var(--transition); border-bottom: 2px solid transparent;
}
#mainNav.scrolled { padding: 8px 0; background: rgba(26,26,26,0.98); border-bottom: 2px solid var(--primary); }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { color: var(--secondary); font-size: 1.4rem; }
.brand-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-light) !important; }
.nav-link {
    font-family: var(--font-body); font-weight: 400; font-size: 0.95rem;
    padding: 8px 16px !important; color: rgba(255,255,255,0.85) !important;
    position: relative; letter-spacing: 0.5px; transition: color var(--transition);
}
.nav-link:hover,.nav-link.active { color: var(--secondary) !important; }
.nav-link.active::after {
    content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
    height: 2px; background: var(--secondary); border-radius: 2px;
}
.navbar-toggler { border-color: rgba(255,255,255,0.3); }

/* Hero - WITH REAL IMAGE */
.hero-section {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=80') center center / cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%); z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--text-light); margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.3rem); color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 40px; font-weight: 300; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page Headers - WITH REAL IMAGES */
.page-header {
    position: relative; padding: 160px 0 80px; text-align: center;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center center / cover no-repeat;
}
.page-header-menu {
    background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=80') !important;
}
.page-header-about {
    background-image: url('https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=1600&q=80') !important;
}
.page-header-reservations {
    background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1600&q=80') !important;
}
.page-header-contact {
    background-image: url('https://images.unsplash.com/photo-1552566626-52f8b828add9?w=1600&q=80') !important;
}
.page-header h1 { color: var(--text-light); margin-bottom: 10px; position: relative; z-index: 2; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.page-header p { color: rgba(255,255,255,0.9); font-size: 1.15rem; position: relative; z-index: 2; text-shadow: 0 1px 5px rgba(0,0,0,0.3); }

/* Buttons */
.btn-primary-custom {
    background: var(--primary); color: var(--text-light); border: 2px solid var(--primary);
    padding: 12px 32px; border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem; transition: all var(--transition);
}
.btn-primary-custom:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--text-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-custom {
    background: transparent; color: var(--text-light); border: 2px solid var(--text-light);
    padding: 12px 32px; border-radius: var(--radius-sm); font-weight: 600; transition: all var(--transition);
}
.btn-outline-custom:hover { background: var(--text-light); color: var(--text-dark); transform: translateY(-2px); }
.btn-outline-custom-light {
    background: transparent; color: var(--text-light); border: 2px solid var(--text-light);
    padding: 14px 40px; border-radius: var(--radius-sm); font-weight: 600; font-size: 1.1rem; transition: all var(--transition);
}
.btn-outline-custom-light:hover { background: var(--text-light); color: var(--primary); transform: translateY(-2px); }

/* Sections */
.section-title { text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-grey); font-size: 1.1rem; margin-bottom: 40px; }
.featured-section { padding: 80px 0; background: var(--bg-light); }

/* Dish Cards - WITH REAL IMAGES */
.dish-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); height: 100%; }
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dish-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}
.dish-image-lamb { background-image: url('https://images.unsplash.com/photo-1574484284002-952d92456975?w=600&q=80'); }
.dish-image-seabass { background-image: url('https://images.unsplash.com/photo-1534604973900-c43ab4c2e0ab?w=600&q=80'); }
.dish-image-risotto { background-image: url('https://images.unsplash.com/photo-1476124369491-e7addf5db371?w=600&q=80'); }
.dish-info { padding: 24px; }
.dish-info h3 { font-size: 1.3rem; margin-bottom: 8px; }
.dish-info p { font-size: 0.95rem; margin-bottom: 12px; }
.dish-price { font-family: var(--font-heading); font-size: 1.2rem; color: var(--primary); font-weight: 700; }

/* About Teaser - WITH REAL IMAGE */
.about-teaser { padding: 80px 0; background: #fff; }
.about-image {
    height: 350px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
}
.about-image-restaurant { background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=800&q=80'); }
.about-image-story { background-image: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=800&q=80'); }
.about-image-chef { background-image: url('https://images.unsplash.com/photo-1577219491135-ce391730fb2c?w=800&q=80'); }
.about-image.large { height: 450px; }
.about-teaser-content h2 { margin-bottom: 20px; }
.about-teaser-content p { font-size: 1.05rem; line-height: 1.8; }

/* CTA Banner */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, #8E1A0E 100%); color: var(--text-light); }
.cta-banner h2 { color: var(--text-light); margin-bottom: 12px; font-size: 2.2rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 30px; }

/* Menu Page */
.menu-section { padding: 60px 0 80px; }
.menu-tabs { margin-bottom: 40px; gap: 8px; }
.menu-tabs .nav-link { color: var(--text-dark) !important; font-weight: 600; border-radius: var(--radius-sm); padding: 10px 24px !important; font-size: 1rem; transition: all var(--transition); }
.menu-tabs .nav-link::after { display: none; }
.menu-tabs .nav-link.active { background: var(--primary) !important; color: var(--text-light) !important; }
.menu-tabs .nav-link:hover:not(.active) { background: rgba(192,57,43,0.1); }
.dietary-filters { text-align: center; margin-bottom: 20px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border: 2px solid #ddd; border-radius: 50px; background: #fff; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: var(--text-grey); transition: all var(--transition); font-family: var(--font-body); }
.filter-btn:hover,.filter-btn.active { border-color: var(--primary); color: var(--primary); background: rgba(192,57,43,0.05); }
.menu-item { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: all var(--transition); height: 100%; border-left: 4px solid transparent; }
.menu-item:hover { border-left-color: var(--primary); box-shadow: var(--shadow-md); }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.menu-item-header h3 { font-size: 1.15rem; margin: 0; flex: 1; }
.menu-price { font-family: var(--font-heading); font-size: 1.15rem; color: var(--primary); font-weight: 700; white-space: nowrap; }
.dietary-badge { display: inline-block; font-size: 0.65rem; padding: 2px 8px; border-radius: 50px; font-family: var(--font-body); font-weight: 700; vertical-align: middle; }
.dietary-badge.veg { background: #E8F5E9; color: #2E7D32; }
.dietary-badge.vegan { background: #E0F2F1; color: #00695C; }
.dietary-badge.gf { background: #FFF3E0; color: #E65100; }

/* About Page */
.about-story,.about-chef { padding: 80px 0; }
.about-chef { background: #fff; }
.chef-quote { margin: 30px 0; padding: 24px 30px; border-left: 4px solid var(--secondary); background: #FFF8E1; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.chef-quote p { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-dark); font-style: italic; margin-bottom: 8px; }
.chef-quote cite { color: var(--primary); font-weight: 700; font-style: normal; }
.about-values { padding: 80px 0; background: var(--bg-light); }
.value-card { text-align: center; padding: 40px 30px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all var(--transition); height: 100%; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 2rem; }

/* Forms */
.reservation-section,.contact-section { padding: 60px 0 80px; }
.form-card { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.form-card h2 { margin-bottom: 8px; }
.form-intro { color: var(--text-grey); margin-bottom: 30px; }
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 6px; }
.required { color: var(--primary); }
.form-control,.form-select { border-radius: var(--radius-sm); border: 2px solid #e0e0e0; padding: 10px 14px; font-size: 0.95rem; transition: border-color var(--transition); }
.form-control:focus,.form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(192,57,43,0.15); }
.char-count { text-align: right; font-size: 0.8rem; color: var(--text-grey); margin-top: 4px; }
.reservation-info-card,.contact-info-card { background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.reservation-info-card h3,.contact-info-card h3 { font-size: 1.2rem; margin-bottom: 16px; color: var(--primary); }
.reservation-info-card ul { list-style: none; padding: 0; }
.reservation-info-card li { padding: 8px 0; color: var(--text-grey); display: flex; align-items: center; gap: 12px; }
.reservation-info-card li i { color: var(--secondary); width: 20px; }
.phone-link { display: block; font-size: 1.5rem; font-family: var(--font-heading); font-weight: 700; color: var(--primary); }
.contact-detail { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail i { color: var(--primary); font-size: 1.2rem; margin-top: 4px; width: 24px; text-align: center; }
.contact-detail strong { display: block; color: var(--text-dark); margin-bottom: 2px; }
.contact-detail p { margin: 0; color: var(--text-grey); }
.hours-table { width: 100%; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid #eee; color: var(--text-grey); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--text-dark); }
.map-container { margin-bottom: 20px; }
.map-container h3 { font-size: 1.2rem; margin-bottom: 12px; }

/* Footer */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 20px; }
.footer-col h4 { color: var(--text-light); font-size: 1.1rem; margin-bottom: 20px; font-family: var(--font-heading); }
.footer-col address p,.hours-list li { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--secondary); }
.footer-col address i { color: var(--secondary); margin-right: 8px; width: 16px; }
.hours-list { list-style: none; padding: 0; }
.social-links { display: flex; gap: 12px; margin-bottom: 20px; }
.social-links a { width: 40px; height: 40px; border: 2px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all var(--transition); font-size: 0.9rem; }
.social-links a:hover { border-color: var(--secondary); color: var(--secondary); transform: translateY(-3px); }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-nav a:hover { color: var(--secondary); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin: 0; }

/* Alerts */
.alert { border-radius: var(--radius-sm); padding: 16px 20px; display: flex; align-items: flex-start; gap: 12px; }
.alert i { font-size: 1.2rem; margin-top: 2px; }

/* Focus (Accessibility) */
*:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-title,.hero-subtitle,.hero-buttons { animation: fadeInUp 0.8s ease forwards; }
.hero-subtitle { animation-delay: 0.2s; }
.hero-buttons { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .form-card { padding: 24px; }
    .about-image,.about-image.large { height: 280px; margin-bottom: 30px; }
}
@media (max-width: 767px) {
    .hero-section { min-height: 80vh; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .page-header { padding: 130px 0 60px; }
    .featured-section,.about-teaser,.about-story,.about-chef,.about-values { padding: 50px 0; }
    .menu-tabs .nav-link { padding: 8px 16px !important; font-size: 0.9rem; }
    .menu-item-header { flex-direction: column; }
    .form-card { padding: 20px; }
    .contact-detail { flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
    *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
