/* Bar Theme Styles */
:root {
    --bg-color: #000;
    --text-color: #fff;
    --accent-color: #551a8b;
    /* Deep Purple */
    --gold-color: #d4af37;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    text-align: center;
    overflow-x: hidden;
}

/* Border Frame Effect */
.border-frame {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 100;
}

header {
    padding: 3rem;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    color: var(--gold-color);
    position: relative;
    z-index: 1002;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 1002;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--gold-color);
    margin: 3px 0;
    transition: 0.4s;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

a {
    text-decoration: none;
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    transition: color 0.3s;
}

a:hover,
.back-link:hover {
    color: var(--gold-color);
}

.back-link {
    border-bottom: 1px solid #888;
}

#hero {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}

section {
    padding: 6rem 1rem;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.content-wrapper p {
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 2;
}

.content-wrapper img {
    max-width: 80%;
    border: 1px solid #333;
    filter: brightness(0.8);
}

.drink-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.drink-img img {
    height: 400px;
    border-radius: 500px 500px 0 0;
    /* Arch shape */
    border: 1px solid var(--gold-color);
    padding: 10px;
}

.drink-desc {
    text-align: left;
}

.drink-desc h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.drink-desc .price {
    display: block;
    margin-top: 2rem;
    font-size: 1.5rem;
    color: var(--gold-color);
    font-family: var(--font-heading);
}

footer {
    padding: 3rem;
    font-size: 0.8rem;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        text-align: left;
        padding: 2rem;
    }

    /* Mobile Nav */
    .menu-toggle {
        display: flex;
        top: 2.5rem;
        right: 2rem;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Layout Fixes */
    #hero h1 {
        font-size: 2.5rem;
    }

    .drink-showcase {
        flex-direction: column;
        gap: 2rem;
    }

    .drink-img img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .border-frame {
        display: none;
        /* Hide on small screens for more space */
    }
}