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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fdfbfb 0%, #f7f0e8 100%);
    min-height: 100vh;
}

.hero {
    background: linear-gradient(135deg, #c31432 0%, #d32f2f 50%, #b71c1c 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 215, 0, 0.05) 10px,
        rgba(255, 215, 0, 0.05) 20px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.3em;
    font-style: italic;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.featured-dishes,
.restaurant-showcase,
.menu-section,
.locations-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffd700;
}

.featured-dishes h2,
.restaurant-showcase h2,
.menu-section h2,
.locations-section h2 {
    color: #c31432;
    font-size: 2.5em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.dishes-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.dish-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(195, 20, 50, 0.2);
    border-color: #ffd700;
}

.dish-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.dish-card h3 {
    color: #c31432;
    font-size: 1.2em;
    padding: 15px 15px 5px 15px;
    text-align: center;
}

.dish-card p {
    color: #d32f2f;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    padding: 0 15px 15px 15px;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.showcase-image {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.showcase-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(195, 20, 50, 0.2);
}

.showcase-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.showcase-image p {
    color: #c31432;
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.dropdown {
    position: relative;
    width: 100%;
}

.dropdown-btn {
    width: 100%;
    padding: 20px 30px;
    font-size: 1.3em;
    font-weight: bold;
    background: linear-gradient(135deg, #d32f2f 0%, #c31432 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(195, 20, 50, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-btn:hover {
    background: linear-gradient(135deg, #c31432 0%, #b71c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(195, 20, 50, 0.4);
}

.dropdown-btn .arrow {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.dropdown-btn.active .arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #fff;
    border-radius: 0 0 10px 10px;
    margin-top: 10px;
}

.dropdown-content.show {
    max-height: 3000px;
    border: 2px solid #ffd700;
    padding: 20px;
}

.menu-category {
    margin-bottom: 35px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category h3 {
    color: #d32f2f;
    font-size: 1.8em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ffd700;
}

.menu-items {
    display: grid;
    gap: 12px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border-left: 4px solid #ffd700;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.menu-item:hover {
    background: linear-gradient(135deg, #fff3cc 0%, #fff9e6 100%);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-name {
    font-weight: 500;
    color: #333;
    flex: 1;
}

.item-price {
    font-weight: bold;
    color: #c31432;
    font-size: 1.1em;
    margin-left: 20px;
}

.location-list {
    display: grid;
    gap: 25px;
}

.location-group {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ffd700;
}

.location-group h4 {
    color: #c31432;
    font-size: 1.5em;
    margin-bottom: 12px;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 8px;
}

.location-item {
    padding: 10px;
    margin: 8px 0;
    background: white;
    border-radius: 5px;
    font-size: 1.05em;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.location-item:hover {
    background: #fff3cc;
    border-left-color: #d32f2f;
    transform: translateX(5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }

    .tagline {
        font-size: 1.1em;
    }

    .featured-dishes,
    .restaurant-showcase,
    .menu-section,
    .locations-section {
        padding: 25px 20px;
    }

    .featured-dishes h2,
    .restaurant-showcase h2,
    .menu-section h2,
    .locations-section h2 {
        font-size: 2em;
    }

    .dishes-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .dish-card h3 {
        font-size: 1.1em;
    }

    .dish-card p {
        font-size: 1.1em;
    }

    .showcase-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dropdown-btn {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .menu-category h3 {
        font-size: 1.5em;
    }

    .item-name,
    .location-item {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .container {
        padding: 20px 10px;
    }

    .featured-dishes,
    .restaurant-showcase,
    .menu-section,
    .locations-section {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .dishes-gallery {
        grid-template-columns: 1fr;
    }

    .dish-card img {
        height: 180px;
    }

    .showcase-image img {
        height: 250px;
    }
}
