/* Restaurant De Gouden Leeuw - Klassiek Design */
:root {
    --color-gold: #d4af37;
    --color-gold-dark: #b8941f;
    --color-green: #1a3a2e;
    --color-green-dark: #0d1f18;
    --color-cream: #faf8f4;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.nav {
    background: var(--color-green);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--color-cream);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-gold);
}

.btn-reserve {
    background: var(--color-gold);
    color: var(--color-green) !important;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-reserve:hover {
    background: var(--color-gold-dark);
}

/* Hero Section */
.hero {
    height: 650px;
    background-image: url('restaurant-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 46, 0.85) 0%, rgba(13, 31, 24, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-gold);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 15px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-green);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-green);
}

.btn-outline {
    background: transparent;
    color: var(--color-green);
    border: 2px solid var(--color-green);
}

.btn-outline:hover {
    background: var(--color-green);
    color: white;
}

/* Intro Section */
.intro {
    padding: 100px 20px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.eyebrow {
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.intro-text h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--color-green);
    font-weight: 600;
}

.intro-text p {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.link-arrow {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.link-arrow:hover {
    color: var(--color-gold-dark);
}

/* Specialties Section */
.specialties {
    padding: 100px 20px;
    background: var(--color-cream);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-green);
    font-weight: 600;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.specialty-card {
    text-align: center;
    padding: 40px 20px;
}

.specialty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.specialty-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-gold);
}

.specialty-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-green);
}

.specialty-card p {
    font-size: 16px;
    color: var(--color-text-light);
}

/* Menu Preview */
.menu-preview {
    padding: 100px 20px;
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-green);
    margin-bottom: 15px;
}

.menu-header p {
    font-size: 18px;
    color: var(--color-text-light);
}

.menu-items {
    max-width: 800px;
    margin: 0 auto 50px;
}

.menu-item {
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-item h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-green);
}

.price {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 20px;
}

.menu-item p {
    color: var(--color-text-light);
    font-size: 15px;
}

.text-center {
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 100px 20px;
    background: var(--color-green);
    color: white;
    text-align: center;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--color-green-dark);
    color: white;
    padding: 80px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3, .footer h4 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.footer h3 {
    font-size: 24px;
    color: var(--color-gold);
}

.footer h4 {
    font-size: 18px;
    color: var(--color-gold);
}

.footer p, .footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
}

.footer a:hover {
    color: var(--color-gold);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 13px;
}




/* Menu page specific styles */
.menu-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 60px;
}

.wine-section {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: var(--color-cream);
    border-radius: 4px;
}

.wine-section h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-green);
    margin-bottom: 15px;
}

.wine-section p {
    color: var(--color-text-light);
    font-size: 17px;
}

.wine-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 30px;
}

/* Contact page specific styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--color-green);
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-label {
    color: var(--color-gold);
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-text {
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-text a {
    color: var(--color-gold);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
}

.map-placeholder p {
    color: var(--color-text-light);
}



/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-gold);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

/* Over page specific styles */
.page-title {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--color-green);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.philosophy-card {
    text-align: center;
    padding: 30px;
}

.philosophy-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.philosophy-card p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.chef-quote {
    background: var(--color-cream);
    padding: 60px;
    border-radius: 4px;
    text-align: center;
}

.chef-quote h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-green);
    margin-bottom: 20px;
}

.chef-quote p {
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.chef-quote .signature {
    font-style: italic;
    color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-green);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }

    .btn-reserve {
        margin-top: 10px;
        text-align: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title,
    .page-title {
        font-size: 36px !important;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chef-quote {
        padding: 40px 20px;
    }

    .chef-quote h3 {
        font-size: 28px;
    }

    .section-title,
    .menu-header h2 {
        font-size: 36px !important;
    }

    .hero-buttons, .cta-buttons {
        flex-direction: column;
    }

    .cta h2 {
        font-size: 36px;
    }


    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-section-title {
        font-size: 28px;
    }

    .wine-section {
        padding: 30px 20px;
    }

    .wine-section h3 {
        font-size: 28px;
    }

    .wine-image {
        height: 200px;
    }
}