/* Mobile First Approach */
.altemur-menu {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    color: #ffffff; /* Changed to white for dark backgrounds */
    line-height: 1.5;
    padding: 0 15px;
    box-sizing: border-box;
}

.altemur-menu h1 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
}

.altemur-menu h2 {
    text-align: center;
    font-size: 1.2rem;
    margin: 30px 0 15px;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
}

.altemur-menu .menu-section {
    margin-bottom: 40px;
}

.altemur-menu .menu-item {
    text-align: center;
    margin-bottom: 20px;
}

.altemur-menu .item-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 1rem;
}

.altemur-menu .item-price {
    font-weight: 400;
    color: #e0e0e0; /* Slightly dimmer white for prices */
}

.altemur-menu .item-description {
    font-size: 0.85rem;
    font-style: italic;
    color: #cccccc; /* Light grey for descriptions */
    margin-top: 4px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Tasting Menu */
.tasting-menu .tasting-item {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

.tasting-footer {
    text-align: center;
    margin-top: 25px;
}

.tasting-separator {
    font-size: 1rem;
    margin-bottom: 8px;
    position: relative;
    padding-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tasting-separator::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #ffffff;
}

.tasting-price {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Wine & Drinks Grid (Mobile: Stacked or Scrollable) */
.wine-grid-header {
    display: none; /* Hide headers on small mobile */
}

.wine-item-grid {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    text-align: center;
}

.wine-item-grid .item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.wine-item-grid .item-price {
    font-size: 0.9rem;
}

/* Tablet (Min-width: 600px) */
@media (min-width: 600px) {
    .altemur-menu {
        padding: 0 30px;
        margin: 30px auto;
    }

    .altemur-menu h1 { font-size: 2.2rem; }
    .altemur-menu h2 { font-size: 1.3rem; }

    .altemur-menu .item-main {
        flex-direction: row;
        gap: 12px;
        font-size: 1.1rem;
    }

    .wine-grid-header {
        display: flex;
        justify-content: space-between;
        font-weight: bold;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 15px;
        padding-bottom: 8px;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .wine-item-grid {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: baseline;
    }

    .wine-item-grid .item-name {
        flex: 2;
        margin-bottom: 0;
    }

    .price-col, .wine-item-grid .item-price {
        flex: 1;
        text-align: right;
        min-width: 70px;
    }

    .name-col { flex: 2; }
}

/* Desktop (Min-width: 1024px) */
@media (min-width: 1024px) {
    .altemur-menu {
        max-width: 900px;
        margin: 50px auto;
    }

    .altemur-menu h1 { font-size: 2.8rem; margin-bottom: 50px; }
    .altemur-menu h2 { font-size: 1.5rem; margin-top: 50px; }
    
    .altemur-menu .item-description {
        font-size: 0.95rem;
    }
}
