:root {
    --bg-color: #f8f5e6; /* Cream / toasted bread */
    --text-color: #2c2c2c;
    --accent-color: #800020; /* Burgundy */
    --card-bg: #fff;
    --price-color: #a02020;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Header */
.brand-header {
    text-align: center;
    padding: 40px 0 20px;
    border-bottom: 3px solid var(--accent-color);
    margin-bottom: 30px;
}

.logo {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1.1;
}

.tagline {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    font-weight: 500;
}

/* Menu Section */
.menu-section {
    margin-bottom: 40px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.section-title {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    text-align: center;
}

.menu-list {
    list-style: none;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

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

.item-name {
    font-size: 1.1rem;
    font-weight: 500;
}

.item-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--price-color);
    font-weight: 700;
    background: #fdf0f0;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Drink Grid for larger screens */
.drink-grid {
    display: flex;
    flex-direction: column;
}

@media (min-width: 600px) {
    .drink-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .drink-column {
        width: 48%;
    }
}

/* Brand Story */
.brand-story {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 8px;
}

.brand-story .section-title {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.2);
}

.brand-story p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Map Section */
.map-section {
    margin-bottom: 40px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid var(--accent-color);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    background-color: #222;
    color: #aaa;
    margin-top: 40px;
}

.footer-brand {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.site-footer p {
    margin-bottom: 5px;
}

.address-placeholder {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

/* Media Queries */
@media (min-width: 768px) {
    .logo {
        font-size: 4rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .menu-section {
        padding: 30px;
    }
    
    .item-name {
        font-size: 1.2rem;
    }
}
