* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #e8d4a8 0%, #d4b896 100%);
    color: #3d2817;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: #e8d4a8;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 4px solid #3d2817;
    box-shadow: 0 10px 40px rgba(61, 40, 23, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.logo {
    max-width: 300px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(61, 40, 23, 0.3));
}

h1 {
    font-size: 3.5em;
    color: #a85532;
    text-shadow: 2px 2px 4px rgba(61, 40, 23, 0.5);
    margin-bottom: 10px;
    font-family: 'Brush Script MT', cursive;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.3em;
    color: #3d2817;
    font-style: italic;
    font-weight: 300;
}

.category {
    margin-bottom: 20px;
}

.category-title {
    font-size: 1.4em;
    color: #6d4428;
    text-align: center;
    margin-bottom: 25px;
    padding: 10px 20px;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #d4b896;
    text-shadow: none;
    box-shadow: none;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.drinks-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.drink-card {
    background: linear-gradient(145deg, #f5e6d3, #e8d4a8);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(61, 40, 23, 0.25);
    border: 3px solid #8b5a3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 15px;
    align-items: center;
}

.drink-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 50, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drink-card:hover::before {
    opacity: 1;
}

.drink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(61, 40, 23, 0.35);
}

.drink-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, #f5e6d3, #e8d4a8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    box-shadow: inset 0 2px 4px rgba(61, 40, 23, 0.2), 0 2px 8px rgba(61, 40, 23, 0.15);
    border: 2px solid #8b5a3c;
    padding: 4px;
}

.drink-image svg {
    width: 100%;
    height: 100%;
}

.drink-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drink-name {
    font-size: 1.4em;
    color: #a85532;
    margin-bottom: 4px;
    text-align: left;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.drink-description {
    font-size: 0.95em;
    color: #3d2817;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 6px;
}

.drink-ingredients {
    font-size: 0.85em;
    color: #6d4428;
    font-style: italic;
    text-align: left;
}

.bamboo-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #8b5a3c 20%, #8b5a3c 80%, transparent);
    margin: 50px auto;
    max-width: 60%;
    position: relative;
}

.bamboo-divider::before {
    content: '✦';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #e8d4a8 0%, #d4b896 100%);
    color: #8b5a3c;
    font-size: 1.2em;
    padding: 8px 12px;
    border-radius: 50%;
}

footer {
    text-align: center;
    padding: 40px;
    color: #6d4428;
    font-style: italic;
    margin-top: 50px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    .category-title {
        font-size: 1.2em;
    }

    .drink-card {
        padding: 15px;
    }

    .drink-image {
        width: 90px;
        height: 90px;
        min-width: 90px;
        font-size: 2em;
        padding: 4px;
    }

    .drink-name {
        font-size: 1.2em;
    }

    .drink-description {
        font-size: 0.9em;
    }
}
