/* ==========================================================================
   TOMSLOUNGE MENU STYLESHEET — recovered Dec 22, 2024 design set
   Source: gdrive:AI-IGNORE/OLD/000_SITES/T O M S L O U N G E/MENUS/12-22-2024/
   Consolidated from 9 HTML files (dark-theme-menus, complete-beverage-dark-full,
   food-menu-collection, luxury-wine-beer, premium-american-ipas, left-column.food,
   american-craft-ipas, complete-food-collection, global-beverage-collection).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&family=Rajdhani:wght@300;400;500;600&display=swap');

.menu {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    width: 800px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.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;
}

.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: rgba(255, 255, 255, 0.95);
    margin: 0;
    letter-spacing: 0.2em;
    font-weight: 300;
}

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

.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.8);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 1rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.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-weight: 500;
    color: rgba(255, 255, 255, 0.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;
}

.sake-note {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.origin-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.special-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.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.5);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.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);
    border-radius: 3px;
}

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

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

.dish-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.legend {
    text-align: center;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.legend span {
    margin: 0 0.5rem;
}

.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-weight: 300;
    letter-spacing: 0.05em;
}

.menu-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 1rem 0;
    font-weight: 300;
}

.placard {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    width: 400px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
}

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

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

.wine-category-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.1em;
}

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

.wine-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.wine-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    grid-column: 1 / -1;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-top: 0.25rem;
}

.house-brewery {
    text-align: center;
    padding: 1.5rem;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.availability {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.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;
}

.wine-name {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    letter-spacing: 0.05em;
}

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

.beer-origin {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-style: italic;
}

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

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

/* ==========================================================================
   IMAGE CONTAINMENT — menu/dish/placard images must not overflow cards
   ========================================================================== */

.menu .dish-description img,
.menu .dish img,
.menu img,
.placard img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0.75rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* Allow the overall menu container to shrink on mobile */
.menu { max-width: 100%; box-sizing: border-box; }
.placard { max-width: 100%; box-sizing: border-box; }

@media (max-width: 900px) {
    .menu { width: auto; padding: 1.5rem; }
    .placard { width: auto; padding: 1.25rem; }
}
