@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&family=Rajdhani:wght@300;400;500;600&display=swap'); .right-column {
    border: 0px solid red;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 0px;
}

/* Base Styles */
body {
    margin: 0;
    pad  ding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    min-height: 60vh;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

/* Menu Container */
.menu {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    width: 90%;
    margin: 0rem auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.53);
    zoom:.8}

.menu::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    pointer-events: none;
}

/* Header Styles */
.menu-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: rgb(205 230 51 / 95%);
    margin: 0;
    letter-spacing: 0.2em;
    font-weight: 300;
}

.menu-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Section Styles */
.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: rgb(242 3 3 / 95%);
    margin: 2.5rem 0 1.5rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.subsection-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 2rem 0 1rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dish Styles */
.beverage-item, .dish {
    margin: 1.5rem 0;
    padding: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.dish:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dish-name {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    letter-spacing: 0.05em;
    color: #efe489!important
}

.dish-price {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Rajdhani', sans-serif;
}

.dish-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 0.25rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    max-width: 80%;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.3;
}

.beverage-details img, .dish-description img {
    max-width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.53);
}

/* Special Elements */
.signature-note {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: .6em!important;
    font-style: italic;
    font-weight: bold;
    max-width: 80%;
    margin: 0 auto;
    text-align: justify;
}

.dietary-legend {
    text-align: center;
    margin: 1rem 0;
    padding: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Beverage-Specific Styles */
.wine-program {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    font-size: .71em;
    ;max-width: 80%;
    margin: 0 auto;
    text-align: justify;
}

.sake-note {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    max-width: 80%;
    margin: 0 auto;
    text-align: justify;
}

.award-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 3px;
    font-size: 0.8rem;
    color: rgba(218, 165, 32, 0.8);
    margin-top: 0.5rem;
}

/* Placard Styles */
.placard {
    padding: 2rem;
    width: 400px;
    margin: 2rem auto;
}

.heritage-label {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.border-accent {
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem auto;
}

/* Footer */
.menu-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.beverage-item {
    margin: 1.5rem 0;
    padding: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.beverage-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.beverage-name {
    font-size: 1em!important;
    font-weight: 500;
    color: rgb(240 242 145 / 95%);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    letter-spacing: 0.05em;
}

.beverage-price {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Rajdhani', sans-serif;
}

.beverage-details {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 0.25rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.wine-category {
    margin: 2.5rem 0;
}
.spirit-category,
.category-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: rgb(215 227 150 / 90%);
    margin: 1.5rem 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.wine-item {
    margin: 1.5rem 0;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.wine-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 4px;
}

.wine-name {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.1rem;
}

.wine-details {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    font-style: italic;
}

.spirits-notice {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.featured-spirits {
    margin: 1.5rem 0;
    padding: 0 1rem;
}
.spirit-category {
    margin: 1.5rem 0;
}

.spirit-category h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

.spirit-category p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sake-note {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    max-width: 80%;
    margin: 0 auto;
    text-align: justify;
}

.menu-note, .special-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    ;font-size: .75em;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    max-width: 80%;
    margin: 0 auto;
    text-align: justify;
}

.menu-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 900px) {
    .menu {
        width: calc(100% - 1rem);
        margin: 1rem;
        padding: 1.5rem;
    }

    .placard {
        width: calc(100% - 1rem);
        margin: 1rem;
        padding: 1.5rem;
    }

    .right-column {
        display: grid;
        grid-template-columns: auto;
        width: 100%
    }

    .left-column {
        display: none
    }

    @media (max-width: 600px) {
        * {
            text-align:left!important;
            font-size: 90%
        }

        body {
            padding: 1rem;
            font-family: arial!important
        }

        .menu-title {
            font-size: 3rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .dish-name {
            flex-direction: column;
            text-align: center;
        }

        .dish-price {
            margin-top: 0.5rem;
        }

        .dietary-legend {
            flex-direction: column;
            gap: 0.5rem;
        }

        .right-column {
            display: grid;
            grid-template-columns: auto;
        }

        .left-column {
            display: none
        }

        .menu {
            width: 92%;
            zoom:1 }
    }
