:root {
    --primary-orange: #E87A28;
    --primary-orange-hover: #d66815;
    --royal-green: #1B4D3E;
    --dark-green: #12352a;
    --warm-white: #FDFBF7;
    --text-dark: #1A1A1A;
    --text-light: #f0f0f0;
    --chalk-font: 'Caveat', cursive;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--body-font);
    background-color: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--heading-font); color: var(--royal-green); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
    display: inline-block; padding: 12px 30px; border-radius: 50px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; border: none; transition: all 0.3s ease;
}
.btn-primary { background-color: var(--primary-orange); color: white; }
.btn-primary:hover { background-color: var(--primary-orange-hover); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--royal-green); color: var(--royal-green); background: transparent; }
.btn-outline:hover { background-color: var(--royal-green); color: white; }
.btn-white { border-color: white; color: white; }
.btn-white:hover { background-color: white; color: var(--royal-green); }

.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title p { color: #666; max-width: 600px; margin: 0 auto; }

/* Navigation */
nav {
    background-color: rgba(253, 251, 247, 0.95); backdrop-filter: blur(5px);
    padding: 20px 0; position: fixed; width: 100%; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--heading-font); font-size: 1.8rem; font-weight: 700; color: var(--primary-orange); display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--royal-green); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--royal-green); }
.nav-links a:hover { color: var(--primary-orange); }
.mobile-menu-btn { display: none; font-size: 1.5rem; color: var(--royal-green); cursor: pointer; }

/* Hero Section */
.hero {
    height: 100vh;
    /* EDIT HERE: Change 'images/hero-bg.jpg' to your pizza photo filename */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('images/hero-bg.jpg');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding-top: 80px;
}
.hero-content h1 { font-size: 4rem; color: white; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* Story Section */
.story-section { background-color: white; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.story-img img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.story-content h3 { font-size: 2rem; margin-bottom: 20px; color: var(--primary-orange); }
.timeline { margin-top: 30px; border-left: 3px solid var(--primary-orange); padding-left: 20px; }
.timeline-item { margin-bottom: 20px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -26px; top: 5px; width: 10px; height: 10px; background: var(--royal-green); border-radius: 50%; }
.timeline-year { font-weight: 700; color: var(--royal-green); display: block; }

/* Menu Section (Chalkboard Style) */
.menu-section { background-color: var(--royal-green); color: var(--warm-white); position: relative; }
.menu-section::before { 
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: url('https://www.transparenttextures.com/patterns/dark-wood.png'); 
    opacity: 0.1; pointer-events: none; 
}
.menu-section .section-title h2 { color: var(--warm-white); font-family: var(--chalk-font); font-size: 3.5rem; }
.menu-section .section-title p { color: #ccc; }

.menu-category { margin-bottom: 40px; }
.category-header { 
    font-family: var(--chalk-font); font-size: 2.5rem; color: var(--primary-orange); 
    border-bottom: 2px dashed var(--primary-orange); display: inline-block; 
    margin-bottom: 20px; padding-bottom: 5px; 
}
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.menu-item { margin-bottom: 15px; border-bottom: 1px dotted rgba(255,255,255,0.2); padding-bottom: 10px; }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; }
.menu-item-name { font-weight: 700; font-size: 1.1rem; color: white; }
.menu-item-desc { font-size: 0.9rem; color: #ddd; font-style: italic; }

/* Badges */
.badge { background-color: var(--primary-orange); color: white; padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; text-transform: uppercase; margin-left: 10px; }
.badge-fasting { background-color: #4CAF50; }

/* Teaser Section */
.teaser-section { background-color: var(--primary-orange); color: white; text-align: center; padding: 60px 0; }
.teaser-content h2 { color: white; margin-bottom: 15px; }

/* Contact Section */
.contact-section { background-color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h3 { margin-bottom: 20px; color: var(--royal-green); }
.info-item { display: flex; align-items: flex-start; margin-bottom: 20px; gap: 15px; }
.info-item i { color: var(--primary-orange); font-size: 1.2rem; margin-top: 5px; }
.delivery-partners { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.partner-badge { background: #f0f0f0; padding: 10px 20px; border-radius: 8px; font-weight: 600; color: #555; display: flex; align-items: center; gap: 10px; }

/* Footer */
footer { background-color: var(--dark-green); color: white; padding: 40px 0; text-align: center; }
.footer-content p { opacity: 0.8; font-size: 0.9rem; }
.social-links { margin: 20px 0; }
.social-links a { color: white; font-size: 1.5rem; margin: 0 10px; opacity: 0.8; }
.social-links a:hover { opacity: 1; color: var(--primary-orange); }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links { 
        display: none; position: absolute; top: 70px; left: 0; width: 100%; 
        background: white; flex-direction: column; padding: 20px; 
        box-shadow: 0 5px 10px rgba(0,0,0,0.1); 
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .story-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
}