* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f0;
}

header {
    background: linear-gradient(135deg, #c62828 0%, #8b1a1a 100%);
    color: white;
    padding: 3rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-align: center;
}

.logo-container {
    max-width: 128px;
    margin: 0 auto 1rem;
}

.logo-container img {
    width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    color: white;
    font-weight: bold;
}

.tagline {
    font-size: 1.4rem;
    font-style: italic;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    background: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    padding: 0.5rem;
    border-radius: 5px;
}

nav a:hover {
    background: #c62828;
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23e8dcc4" width="1200" height="600"/><circle fill="%23c62828" cx="600" cy="300" r="200" opacity="0.3"/><circle fill="%23d32f2f" cx="400" cy="250" r="80" opacity="0.2"/><circle fill="%23d32f2f" cx="800" cy="350" r="100" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #c62828;
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

.btn:hover {
    background: #8b1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.6);
}

section {
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #c62828;
    font-weight: bold;
    text-transform: uppercase;
}

.menu-section {
    background: white;
    padding: 4rem 2rem;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-category {
    background: #f5f5f0;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-title {
    font-size: 1.8rem;
    color: #c62828;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 3px solid #c62828;
    padding-bottom: 0.5rem;
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ccc;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.3rem;
}

.item-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.item-price {
    font-weight: bold;
    color: #c62828;
    font-size: 1.2rem;
}

.item-description {
    color: #555;
    font-size: 0.95rem;
    font-style: italic;
}

.extras {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.extras h3 {
    color: #c62828;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.extras-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.extra-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about {
    background: #f5f5f0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.gallery {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 2rem;
}

.gallery div {
    margin: 1rem;
    text-align: center;
}

.gallery img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact {
    background: linear-gradient(135deg, #c62828 0%, #8b1a1a 100%);
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255,255,255,0.15);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.contact-card p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-card a {
    color: white;
    text-decoration: none;
    border-bottom: 2px dotted white;
    transition: border-bottom 0.3s;
}

.contact-card a:hover {
    border-bottom: 2px solid white;
}

.social {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.social a {
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: bold;
}

#google-reviews {
    margin-bottom: 2rem;
}

footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem;
}

.seo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .menu-categories {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
    }

    .container {
        padding: 0 10px;
    }

    section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr;
    }
}