/* Global Reset and Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fcfbf7;
    color: #2b2b2b;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Logo styling */
.hero-section {
    background-color: #000000;
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 5px solid #2e7d32;
}

.fallback-logo h1 {
    font-family: 'Oswald', sans-serif;
    color: #4caf50;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fallback-logo .tagline {
    color: #ff9800;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 1rem;
    margin-top: -5px;
}

/* Info Bar */
.info-bar {
    background-color: #1b5e20;
    color: #ffffff;
    padding: 1rem 0;
    font-size: 0.95rem;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

.info-grid div {
    flex: 1;
    min-width: 250px;
}

/* Main Content Typography */
.main-content {
    padding: 3rem 0;
}

.menu-section {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #1b5e20;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.section-subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Combo Meals Grid Layout */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 5px solid #ff9800;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.item-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #2b2b2b;
}

.price {
    font-weight: 600;
    color: #1b5e20;
    font-size: 1.3rem;
}

.addon-note {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-top: 1rem;
    border-top: 1px dashed #eee;
    padding-top: 0.5rem;
}

/* Daily Specials Layout */
.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.day-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 1.25rem;
    transition: transform 0.2s ease;
}

.day-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.day-card h3 {
    color: #1b5e20;
    font-family: 'Oswald', sans-serif;
    border-bottom: 2px solid #ff9800;
    margin-bottom: 0.75rem;
    padding-bottom: 0.25rem;
}

.day-card ul {
    list-style: none;
}

.day-card ul li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: 2px solid #81c784;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
}

/* List Items (Juices & Desserts) */
.list-container {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.list-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dotted #ccc;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item small {
    color: #666;
    display: inline-block;
    margin-left: 0.25rem;
}

.list-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #ff9800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.simple-text {
    font-size: 0.95rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.85rem;
    margin-top: 4rem;
}