﻿.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #444;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    display: none;
    font-size: 14px;
}

.cookie-text a {
    color: #4da3ff;
    text-decoration: underline;
}

.cookie-options {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .cookie-options label {
        cursor: pointer;
        font-size: 13px;
    }

    .cookie-options input {
        margin-right: 5px;
    }

.cookie-buttons {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}
.menu-lines {
    flex: 1;
    margin-right: 20px;
    position: relative;
    height: 40px;
    margin-top:15px
}

    .menu-lines::before,
    .menu-lines::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 17px;
    }

    .menu-lines::before {
        top: 0;
        background: #02698F;
    }

    .menu-lines::after {
        bottom: 0;
        background: #B54F26;
    }
.btn-primary {
    background: #02698F;
    border: none;
    padding: 8px 16px;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.btn-secondary {
    background: #444;
    border: none;
    padding: 8px 16px;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-footer-link {
 
    cursor: pointer;
}

    .cookie-footer-link:hover {
        color: #4da3ff;
    }
.quanto-hero2-section {
    position: relative; /* necessario per posizionare overlay */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* nero semi-trasparente, 0.4 = 40% */
    z-index: 1;
}
/* Contenuto sopra l’overlay */
.quanto-hero2-section .hero2-content {
    position: relative;
    z-index: 2;
}
/* Contenitore messaggio */
#formMessage {
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
    display: none; /* nascosto di default */
    transition: all 0.3s ease;
}

    /* Messaggio successo */
    #formMessage.success {
        background-color: rgba(40, 167, 69, 0.9); /* verde scuro trasparente */
        color: #fff;
        border: 1px solid #28a745;
    }

    /* Messaggio errore */
    #formMessage.error {
        background-color: rgba(220, 53, 69, 0.9); /* rosso scuro trasparente */
        color: #fff;
        border: 1px solid #dc3545;
    }
