:root {
    --brand-color: rgba(254, 152, 0, 1); 
    --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; 
}

/* 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;
    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; }

/* SEZIONE CONTATTI */
.contact-details { padding: 80px 0 50px 0; }

.contact-wrapper { max-width: 800px; margin: 0 auto; }

.contact-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-icon img { width: 60px; height: auto; }

.contact-info p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* MAPPA GOOGLE */
.map-section { padding-bottom: 80px; }

.map-container {
    width: 100%;
    border: 2px solid var(--brand-color);
    /* MODIFICA: Smussatura angoli ridotta */
    border-radius: 5px; /* Era 15px */
    overflow: hidden;
    line-height: 0;
}

.map-container iframe { width: 100%; height: 450px; }

/* SEZIONE ORARI */
.hours-section { padding-bottom: 80px; 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; }
    .contact-row { flex-direction: column; text-align: center; gap: 20px; }
    .map-container iframe { height: 300px; }
}