:root {
    --brand-color: rgba(254, 152, 0, 1); /* Arancione Figma */
    --bg-main: rgba(64, 64, 64, 1);
    --bg-darker: rgba(24, 24, 24, 1);
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'MADE Outer Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative; 
}

/* HEADER & NAVBAR */
.main-header { 
    background: var(--bg-darker); 
    height: 96px; 
    display: flex; 
    align-items: center; 
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
}

.logo { 
    color: var(--white); 
    font-size: 28px; 
    font-weight: bold;
    text-decoration: none;
}

.nav-menu a { 
    color: var(--white); 
    text-decoration: none; 
    margin-left: 25px; 
    font-size: 14px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--brand-color);
}

/* HERO BANNER */
.hero-banner {
    background-color: var(--brand-color);
    height: 222px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner h1 {
    font-size: clamp(40px, 8vw, 70px);
    color: var(--white);
    margin: 0;
}

/* GRIGLIA GALLERIA */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    width: 100%;
    height: 250px; /* Altezza uniforme per tutte le foto */
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Effetto zoom al passaggio del mouse */
}

/* SEZIONE ORARI (Come nella pagina Servizi) */
.hours-section {
    padding: 60px 0 100px 0;
    text-align: center;
}

.hours-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.hours-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background-color: var(--white);
    margin: 30px auto;
    opacity: 0.5;
}

.hours-text {
    font-size: 18px;
    font-weight: 300;
}

.text-center { text-align: center; }

/* FOOTER */
.main-footer { background: var(--bg-darker); padding: 60px 0 0 0; }
.footer-title { font-size: 32px; margin-bottom: 40px; color: var(--white); }

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    padding-bottom: 50px; 
}

.footer-col h4 { font-size: 18px; margin-bottom: 15px; color: var(--brand-color); }
.footer-col p { font-size: 14px; opacity: 0.8; margin-bottom: 8px; }

.footer-bottom { 
    background: #000; 
    text-align: center; 
    padding: 25px 20px; 
    font-size: 12px; 
}

/* MOBILE */
@media (max-width: 768px) {
    .header-flex { flex-direction: column; padding: 20px 0; }
    .nav-menu { margin-top: 15px; }
    .hero-banner { height: 150px; }
    .gallery-grid { grid-template-columns: 1fr; }
}