/* The Walker Brasserie - Modern Brasserie Design */
:root {
    --color-forest: #2d5016;
    --color-forest-dark: #1a3009;
    --color-cognac: #b8860b;
    --color-cognac-light: #daa520;
    --color-cream: #faf7f2;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --font-heading: 'Montserrat', -apple-system, system-ui, sans-serif;
    --font-body: 'Open Sans', -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-forest);
    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-cognac);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

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

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

.btn-reserve:hover {
    background: var(--color-cognac-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-cognac);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8) 0%, rgba(26, 48, 9, 0.7) 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-cognac);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 3px;
}

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

.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-cognac);
    color: white;
}

.btn-primary:hover {
    background: var(--color-cognac-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
}

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

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

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

.btn-outline:hover {
    background: var(--color-forest);
    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-cognac);
    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-forest);
    font-weight: 600;
}

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

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

.link-arrow:hover {
    color: var(--color-cognac-light);
}

/* 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-forest);
    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;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.specialty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-cream) 0%, #f5f0e8 100%);
    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-cognac);
}

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

.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-forest);
    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-forest);
}

.price {
    color: var(--color-cognac);
    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-forest);
    color: white;
    text-align: center;
}

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

.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-forest-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-cognac);
}

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

.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-cognac);
}

.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;
}

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

.menu-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 60px;
}

/* 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-forest);
        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;
    }

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

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

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

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

    .specialties-grid {
        grid-template-columns: 1fr;
    }
}
