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

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

.container {
    min-height: 100vh;
}

/* Header */
.header {
    background-color: #006ad1;
    color: white;
    padding: 1.0rem;
}

.header h1 {
    font-size: 2.0rem;
    font-weight: bold;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .carousel {
        height: 400px;
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
}

.indicator.active {
    background-color: #E91E63;
}

/* Menu Section */
.menu-section {
    padding: 1.5rem;
}

.menu-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-card {
    display: block;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.menu-card:hover {
    transform: scale(1.05);
}

.menu-card.blue {
    background-color: #E3F2FD;
}

.menu-card.orange {
    background-color: #FFF3E0;
}

.menu-card.pink {
    background-color: #FCE4EC;
}

.menu-card.green {
    background-color: #e4fce8;
}

.menu-card.purple {
    background-color: #e8e4fc;
}

.icon {
    margin-bottom: 1rem;
}

.menu-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.menu-card p {
    color: #666;
}

