*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f0eb;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #4b2e1a;
    color: white;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    margin: 0;
    font-size: 22px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

nav a:hover,
nav a.active {
    opacity: 1;
    text-decoration: underline;
}

main {
    padding: 36px 30px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
}

.page-title {
    color: #4b2e1a;
    border-bottom: 2px solid #4b2e1a;
    padding-bottom: 8px;
    margin-bottom: 28px;
}

.hero {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 28px;
}

.hero h2 {
    color: #4b2e1a;
    font-size: 30px;
    margin-top: 0;
}

.hero p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 22px;
}

.button {
    display: inline-block;
    background-color: #4b2e1a;
    color: white;
    padding: 11px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #6b3f22;
}

.features {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.feature {
    background-color: white;
    border-radius: 10px;
    padding: 22px 18px;
    flex: 1;
    transition: box-shadow 0.2s;
}

.feature:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #4b2e1a;
    margin-top: 0;
    font-size: 16px;
}

.feature p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.reviews {
    margin-top: 10px;
}

.reviews h2 {
    color: #4b2e1a;
    font-size: 22px;
    margin-bottom: 16px;
}

.review-list {
    display: flex;
    gap: 18px;
}

.review {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
}

.review p {
    margin: 0 0 12px;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

.review-author {
    font-size: 13px;
    font-weight: 600;
    color: #4b2e1a;
}

.review-stars {
    color: #c8912a;
    font-size: 13px;
    margin-bottom: 6px;
}

.menu-section {
    margin-bottom: 32px;
}

.menu-section h3 {
    color: #4b2e1a;
    font-size: 20px;
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

th {
    background-color: #4b2e1a;
    color: white;
    padding: 11px 14px;
    text-align: left;
    font-size: 14px;
}

td {
    padding: 11px 14px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

td:last-child {
    font-weight: 600;
    color: #4b2e1a;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: #fdf5ec;
}

.contact-info {
    background-color: white;
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 28px;
    line-height: 2;
    font-size: 15px;
}

.contact-info ul {
    margin: 4px 0 0;
    padding-left: 20px;
}

footer {
    background-color: #4b2e1a;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 16px;
    font-size: 14px;
    margin-top: auto;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #fdf5ec;
    border-radius: 8px;
    font-size: 15px;
}

.live-time {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: #4b2e1a;
}

.live-badge {
    font-size: 13px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
}

.live-badge.open {
    background: #d4edda;
    color: #1e7e34;
}

.live-badge.closed {
    background: #f8d7da;
    color: #a71d2a;
}

.drink-of-day {
    background: linear-gradient(135deg, #4b2e1a, #7a4a2a);
    color: white;
    border-radius: 10px;
    padding: 22px 24px;
    margin-bottom: 28px;
}

.drink-of-day h3 {
    margin: 0 0 6px;
    font-size: 14px;
    opacity: 0.85;
    font-weight: 400;
}

.drink-of-day strong {
    font-size: 20px;
}

.drink-of-day p {
    margin: 6px 0 0;
    opacity: 0.8;
    font-size: 14px;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 600px) {
    header {
        flex-wrap: wrap;
    }

    .burger {
        display: flex;
    }

    nav {
        display: none;
        width: 100%;
        padding-top: 12px;
    }

    nav.open {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        margin-left: 0;
        font-size: 16px;
    }

    .features,
    .review-list {
        flex-direction: column;
    }
}