/* Indicatore laterale per le sezioni del menu */
.menu-indicator {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-indicator.visible {
    opacity: 1;
}

/* L'indicatore è controllato da JavaScript per la visibilità */

.menu-indicator-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-indicator-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-indicator-item.active {
    opacity: 1;
}

.menu-indicator-item:hover {
    opacity: 0.8;
}

.indicator-text {
    font-family: 'Gill Sans Thin', 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.indicator-number {
    font-family: 'Gill Sans Thin', 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 0.8rem;
    font-weight: 100;
    color: #ffffff;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.menu-indicator-item.active .indicator-number {
    opacity: 1;
    font-weight: 400;
    color: #FFD700;
}

.menu-indicator-item.active .indicator-text {
    color: #FFD700;
}

/* Linea verticale di collegamento */
.menu-indicator::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

/* Punto indicatore */
.menu-indicator-item::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-indicator-item.active::before {
    background: #FFD700;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Sfondo specifico per la hero section di ristorante */
.ristorante-page .hero {
    background: url('../../img/ristorazione_bkg.png') center center/cover no-repeat;
}

/* Overlay scuro per migliorare la leggibilità del testo */
.ristorante-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.ristorante-page .hero > * {
    position: relative;
    z-index: 2;
}

/* Sezione Menu */
.menu-section {
    padding: 50px 0;
    background: #000000;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 10px;
}

.menu-section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.menu-container {
    max-width: 800px;
    width: 90%;
    text-align: center;
}

.menu-title {
    font-family: 'Gill Sans Thin', 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.menu-subtitle {
    font-family: 'Gill Sans Thin', 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1rem;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-style: italic;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-item {
    padding: 0;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
}

.menu-item h3 {
    font-family: 'Gill Sans Thin', 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.menu-item p {
    font-family: 'Gill Sans Thin', 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1rem;
    font-weight: 100;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
    width: 60%;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .menu-indicator {
        left: 20px;
    }
    
    .indicator-text {
        font-size: 0.8rem;
    }
    
    .indicator-number {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .menu-indicator {
        left: 15px;
    }
    
    .indicator-text {
        display: none;
    }
    
    .indicator-number {
        font-size: 1rem;
        font-weight: 400;
        opacity: 0.6;
    }
    
    .menu-indicator-item.active .indicator-number {
        opacity: 1;
        font-weight: 600;
    }
    
    .menu-indicator-item {
        justify-content: center;
        width: 30px;
        height: 30px;
    }
    
    .menu-indicator-item::before {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 12px;
        height: 12px;
    }
    
    .menu-indicator::before {
        left: 15px;
    }
}

@media (max-width: 480px) {
    .menu-indicator {
        left: 10px;
    }
    
    .indicator-text {
        display: none;
    }
    
    .indicator-number {
        font-size: 0.9rem;
        font-weight: 400;
        opacity: 0.6;
    }
    
    .menu-indicator-item.active .indicator-number {
        opacity: 1;
        font-weight: 600;
    }
    
    .menu-indicator-item {
        justify-content: center;
        width: 25px;
        height: 25px;
    }
    
    .menu-indicator-item::before {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
    }
    
    .menu-indicator::before {
        left: 15px;
    }
}

@media (max-width: 360px) {
    .menu-indicator {
        left: 8px;
    }
    
    .indicator-text {
        display: none;
    }
    
    .indicator-number {
        font-size: 0.8rem;
        font-weight: 400;
        opacity: 0.6;
    }
    
    .menu-indicator-item.active .indicator-number {
        opacity: 1;
        font-weight: 600;
    }
    
    .menu-indicator-item {
        justify-content: center;
        width: 22px;
        height: 22px;
    }
    
    .menu-indicator-item::before {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
    }
    
    .menu-indicator::before {
        left: 12px;
    }
    
    .menu-title {
        font-size: 2rem;
    }
    
    .menu-item {
        padding: 20px;
    }
    
    .menu-item h3 {
        font-size: 1.2rem;
    }
    
    .menu-item p {
        font-size: 0.9rem;
    }
}

/* Sezione Sala */
.sala-section {
    position: relative;
    height: 100vh;
    background: url('../../img/sala-bkg.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 100px;
}

.sala-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.4) 10%, 
        rgba(0, 0, 0, 0.6) 25%, 
        rgba(0, 0, 0, 0.8) 45%, 
        rgba(0, 0, 0, 0.95) 65%, 
        rgba(0, 0, 0, 1) 80%);
    z-index: 1;
    padding-top: 100px;
}

.sala-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 100px;
}

.sala-text-box {
    background: transparent;
    padding: 50px;
    max-width: 500px;
    text-align: left;
}

.sala-text-box h2 {
    font-family: 'Gill Sans Thin', 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sala-text-box p {
    font-family: 'Gill Sans Thin', 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1.1rem;
    font-weight: 100;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.sala-text-box p:last-child {
    margin-bottom: 0;
}

/* Responsive per sala */
@media (max-width: 768px) {
    .sala-content {
        padding: 0 30px;
        justify-content: center;
    }
    
    .sala-text-box {
        padding: 30px;
        max-width: 100%;
    }
    
    .sala-text-box h2 {
        font-size: 2rem;
    }
    
    .sala-text-box p {
        font-size: 1rem;
    }
} 