@font-face {
    font-family: 'Polentical Neon';
    src: url('fonts/Polentical Neon Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Polentical Neon';
    src: url('fonts/Polentical Neon Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --neon-pink: #ff00ff;
    --neon-purple: #bc13fe;
    --bg-color: #111;
    --text-color: #fff;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Polentical Neon', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    color: var(--neon-purple);
    font-size: 2.5rem;
    text-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple);
}

h1 {
    font-size: 3.5rem;
    /* Increased from 3rem */
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-pink),
        0 0 30px var(--neon-pink),
        0 0 40px var(--neon-pink);
    margin: 0 20px;
}

/* Menu Grid */
.menu-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    /* Increased gap */
    width: 100%;
    max-width: 1800px;
    /* Increased max-width */
    flex-grow: 1;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* Reduced from 35px */
}

.divider {
    width: 4px;
    background-color: #fff;
    box-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink);
    border-radius: 2px;
    height: 90%;
    align-self: center;
}

/* Category */
.category {
    margin-bottom: 10px;
    /* Reduced from 25px */
}

.category-title {
    color: #fff;
    font-size: 2.8rem;
    /* Increased from 2.2rem */
    text-transform: lowercase;
    margin-bottom: 25px;
    /* Increased from 20px */
    letter-spacing: 2px;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-pink),
        0 0 30px var(--neon-pink);
}

/* Drink Item */
.drink-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 2rem;
    /* Increased from 1.8rem */
    margin-bottom: 15px;
    /* Increased from 12px */
    letter-spacing: 1px;
}

.drink-name {
    text-transform: lowercase;
}

.drink-price {
    color: var(--neon-pink);
    margin-left: 20px;
    white-space: nowrap;
}

/* Unavailable State */
.unavailable .drink-name,
.unavailable .drink-price {
    text-decoration: line-through;
    font-style: italic;
    color: #666;
    /* Gray color */
    text-shadow: none;
    /* Remove neon glow */
    opacity: 0.5;
    /* Lower opacity */
}

/* Specific tweaks to match image layout */
.column-left {
    padding-right: 20px;
}

.column-right {
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .menu-container {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .divider {
        display: none;
    }

    body {
        overflow: auto;
        height: auto;
    }
}