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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

/* Header & Navigation */
header {
    background-color: #ae3025;
    color: white;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: visible;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 66px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-image {
    height: 88px;
    width: auto;
    display: block;
    transform: translateY(16px);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-links a.active {
    color: #f59e0b;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.carousel-hero {
    padding: 2.25rem 0 2.75rem;
}

.image-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 14px;
    padding: 12px;
    background: transparent;
    box-shadow: none;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.carousel-slide {
    position: relative;
    padding-top: 66%;
    border-radius: 8px;
    overflow: hidden;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.carousel-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-empty {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1f2937;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #374151;
}

/* Main Content */
main {
    padding: 3rem 0;
}

.content-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.content-section h2 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 2rem;
}

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

.menu-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.menu-item .price {
    color: #059669;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.location-map {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

/* Footer */
footer {
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        overflow: visible;
    }

    nav {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 12px 0 18px;
        gap: 8px;
    }

    .logo {
        justify-content: center;
    }

    .logo-image {
        height: 64px;
        transform: translateY(8px);
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.25rem;
        padding-bottom: 8px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .carousel-track {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}
