/* Reset e impostazioni globali */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
}

/* BARRA DI NAVIGAZIONE (NAVBAR) */
.navbar {
    background-color: #2c3e50;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 10px 40px;
}

.logo-box {
    height: 50px;
    position: relative;
}

/* IL SIGILLO DORATO FISSO */
.maxi-logo {
    position: fixed;
    top: 5px;
    left: 20px;
    width: 230px;
    height: 230px;
    object-fit: contain;
    z-index: 99999;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    border-bottom: 2px solid #e67e22;
}

/* SPAZIATORE PER PAGINE SECONDARIE */
.spacer-multipage {
    height: 140px;
    width: 100%;
}

/* SEZIONE HERO (SOLO IN HOME) */
.hero {
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
    padding: 160px 20px 110px 20px;
    width: 100%;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-tagline {
    color: #f39c12;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.hero-sub {
    color: #ecf0f1;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* PULSANTI */
.btn {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.05rem;
    transition: background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn:hover {
    background-color: #d35400;
}

.btn-secondary {
    display: inline-block;
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.btn-secondary:hover {
    color: #d35400;
}

/* BOX CITAZIONI */
.quote-box-main {
    background-color: #2c3e50;
    color: #fff;
    padding: 25px 35px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 25px;
    border-left: 5px solid #e67e22;
    font-size: 1.1rem;
}

.mini-quote {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #e67e22;
    margin-top: 25px;
    font-style: italic;
    border-radius: 0 4px 4px 0;
}

/* SCHEDE CONTENUTI (CARD BIANCHE) */
.card {
    background: #ffffff;
    padding: 45px;
    margin-bottom: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 3px solid #e67e22;
    padding-bottom: 12px;
    font-size: 1.9rem;
}

.card h3 {
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.card p {
    margin-bottom: 15px;
    text-align: justify;
}

/* SERVIZI SPECIFICHE */
.intro-sez {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 25px;
}

.servizio-blocco {
    background-color: #fafbfc;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #eaeded;
}

.servizio-blocco h3 {
    margin-top: 0 !important;
    color: #2c3e50;
    font-size: 1.25rem;
    border-bottom: 1px solid #eaeded;
    padding-bottom: 8px;
}

.servizio-blocco p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.servizio-blocco ul {
    list-style-type: none;
    padding-left: 5px;
}

.servizio-blocco ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.servizio-blocco ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

.nota-servizio {
    background-color: #fef9e7;
    border: 1px solid #f9e79f;
    padding: 15px;
    border-radius: 6px;
    margin-top: 25px;
}

/* CONTATTI GRID */
.intro-contatti {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.contatti-grid {
    margin-bottom: 30px;
}

.contatto-item {
    background: #f8f9fa;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 6px;
    border-left: 4px solid #2c3e50;
}

.contatto-item p {
    margin-bottom: 0;
}

.contatto-item a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

.contatto-item a:hover {
    text-decoration: underline;
}

/* BOX ORARI */
.orari-box {
    background-color: #ebf5fb;
    border: 1px solid #d4e6f1;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.orari-box h3 {
    margin-top: 0 !important;
    color: #2c3e50;
}

.nota-orari {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #555;
}

.preventivo-istruzioni {
    background-color: #eaf2f8;
    padding: 15px 20px;
    border-radius: 6px;
    font-weight: 500;
}

/* UTILITY */
.text-center { text-align: center; }
.margin-top-20 { margin-top: 20px; }

/* FOOTER */
footer {
    text-align: center;
    padding: 35px 0;
    margin-top: 60px;
    background-color: #2c3e50;
    color: #bdc3c7;
    font-size: 0.95rem;
}
