html {
    scroll-behavior: smooth;
}

video {
    aspect-ratio: 16/9;
    /* Adatta in base al tuo video */
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}



/* Contact Section Styling */
.contact.section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact .section-heading {
    margin-bottom: 40px;
}

.contact .section-heading h6 {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2em;
}

.contact .section-heading h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

/* Contact Content */
.contact-content {
    padding: 50px 0;
}

#map iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

/* Contact Info Items */
.contact-content .item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-content .item img {
    max-width: 52px;
    margin-right: 15px;
}

.contact-content .item h6 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.contact-content .item h6 span {
    font-size: 14px;
    color: #777;
}

/* Contact Form */
#contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

#contact-form fieldset {
    border: none;
    margin-bottom: 20px;
}

#contact-form label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

#contact-form textarea {
    height: 120px;
    resize: none;
}

#contact-form .orange-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

#contact-form .orange-button:hover {
    background: #333;
}


.hero-area {
    position: relative;
    /* Necessario per posizionare il video in modo assoluto */
    width: 100%;
    height: 100vh;
    /* Altezza desiderata, ad esempio 100vh per l'altezza piena dello schermo */
    overflow: hidden;
    /* Nasconde le parti del video che escono dai bordi */
    z-index: 1;
    /* Crea un contesto di stacking per visualizzare il video sopra lo sfondo */
}

/* Video di sfondo */
.hero-area video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Il video copre interamente il contenitore mantenendo le proporzioni */
    transform: translate(-50%, -50%);
    z-index: -1;
    /* Assicura che il video sia dietro al contenuto */
}