:root {
    --primary-color: #344563;
    --secondary-color: #202337;
    --white-color: #ffffff;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    width: 80px;
    height: auto;
    max-width: 100%;
}

main {
    padding: 2rem 0;
}

/* Menu Container */
.menu-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Category Section */
.category-section {
    margin-bottom: 2rem;
}

.category-header {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
}

.category-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Menu Items */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    background-color: transparent;
}

.menu-item-content {
    position: relative;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    position: relative;
}

.menu-item-header:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    border-bottom: 1px dotted #aaa;
    z-index: 1;
}

.menu-item-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    background-color: #f5f5f5;
    padding-right: 5px;
    z-index: 2;
    position: relative;
}

.menu-item-price {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--secondary-color);
    background-color: #f5f5f5;
    padding-left: 5px;
    z-index: 2;
    position: relative;
}

.menu-item-description {
    color: #555;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0.75rem;
    max-width: 80%;
}

.menu-item-image {
    max-width: 100%;
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.no-products {
    text-align: center;
    font-size: 1.2rem;
    padding: 2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Price Update Date */
.price-update-date {
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    color: #666;
    font-style: italic;
    border-top: 1px solid #eaeaea;
}

.price-update-date p {
    font-size: 0.9rem;
}

footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    
    .header-logo {
        max-height: 70px;
    }
    
    .category-header {
        font-size: 1.5rem;
    }
    
    .menu-item-name,
    .menu-item-price {
        font-size: 1.1rem;
    }
    
    .menu-item-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-logo {
        max-height: 60px;
    }
    
    .category-header {
        font-size: 1.3rem;
    }
    
    .menu-item-name,
    .menu-item-price {
        font-size: 1rem;
    }
} 