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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFD700;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23654321" width="1200" height="600"/><circle fill="%23DC143C" cx="200" cy="150" r="80" opacity="0.3"/><circle fill="%23FFD700" cx="900" cy="400" r="100" opacity="0.3"/><circle fill="%238B4513" cx="600" cy="300" r="60" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cta-button {
    background: #DC143C;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #B8001F;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(220, 20, 60, 0.3);
}

section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

h2 {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 2rem;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.menu-item h3 {
    color: #DC143C;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.menu-item .price {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.menu-item p {
    color: #666;
    line-height: 1.6;
}

.about {
    background: linear-gradient(135deg, #FFF5E1 0%, #FFE4B5 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.contact {
    background: #8B0000;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact h2 {
    color: white;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 1.1rem;
}

.contact-item strong {
    color: #FFD700;
    display: block;
    margin-bottom: 0.5rem;
}

footer {
    background: #2C0000;
    color: white;
    text-align: center;
    padding: 2rem;
}

.menu-page {
    min-height: calc(100vh - 200px);
}

.menu-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.menu-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-image-container {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.menu-image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

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

    .menu-images {
        grid-template-columns: 1fr;
    }
}
