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

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1a2e 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.store-name {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.95;
}

/* Navigation */
nav {
    background-color: #006847;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffd700;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Special Wednesday Banner */
.wednesday-special {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: 4px solid #c41e3a;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.wednesday-special h2 {
    color: #c41e3a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.wednesday-special p {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

/* Departments Section */
.departments {
    margin: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 2rem;
    text-transform: uppercase;
    border-bottom: 3px solid #006847;
    padding-bottom: 1rem;
}

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

.department-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #006847;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.department-card h3 {
    color: #c41e3a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.department-card p {
    color: #666;
    font-size: 1.1rem;
}

/* Restaurant Feature */
.restaurant-feature {
    background: linear-gradient(135deg, #006847 0%, #004d35 100%);
    color: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.restaurant-feature h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.restaurant-feature p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: #c41e3a;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #a01828;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Restaurant Page Styles */
.restaurant-hero {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1a2e 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.restaurant-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.restaurant-hero p {
    font-size: 1.4rem;
    font-style: italic;
}

/* Menu Styles */
.menu-section {
    margin: 3rem 0;
}

.menu-category {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-left: 6px solid #006847;
}

.menu-category h3 {
    color: #c41e3a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    border-bottom: 1px dashed #ddd;
    transition: background-color 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: #f8f5f0;
    border-radius: 5px;
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.3rem;
}

.item-description {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #006847;
    margin-left: 1rem;
}

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

footer p {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .store-name {
        font-size: 2rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .wednesday-special h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .restaurant-feature h2 {
        font-size: 2rem;
    }
    
    .restaurant-hero h1 {
        font-size: 2.5rem;
    }
}