/* ===== RESET DI BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    color: #000;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HERO (VIDEO 90% ALTEZZA, CENTRATO) ===== */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;          /* video al 90% dell'altezza: sotto si intravede la sezione successiva */
    overflow: hidden;
    background: #000;       /* sfondo nero: si fonde con lo sfondo nero del video */
}

/* Video centrato a piena altezza; ai lati resta lo sfondo nero */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;          /* riempie l'altezza della sezione (90vh) */
    width: auto;           /* larghezza automatica: mantiene le proporzioni */
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 0;
}

/* Watermark sopra il video */
.video-watermark {
    position: absolute;
    bottom: 20px;
    right: 25px;
    z-index: 2;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    user-select: none;
}

/* ===== BARRA SUPERIORE ===== */
.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
}

.logo img {
    height: 18px;
    width: auto;
    display: block;
}

/* Bottone Contact Us */
.btn-contact {
    display: inline-block;
    padding: 7px 26px;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    background: transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #ec7d1a; /* arancione */
    border-color: #ec7d1a;
    color: #fff;              /* la scritta resta bianca */
}

/* ===== CONTENUTO CENTRALE ===== */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon {
    color: #fff;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 12px;
    text-align: center;
}

/* ===== SEZIONE CONTATTI ===== */
.contact-section {
    background: #fff;
    padding: 90px 50px 40px;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

/* Info azienda */
.company-info {
    flex: 1;
    min-width: 280px;
}

.company-info h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 60px;
}

.company-info .email {
    margin-bottom: 40px;
    font-size: 1rem;
}

.company-info address {
    font-style: normal;
    line-height: 1.7;
    font-size: 1rem;
    color: #333;
}

/* Form */
.contact-form {
    flex: 1;
    min-width: 320px;
}

.contact-form h2 {
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 35px;
}

.form-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 140px;
}

.form-group {
    margin-bottom: 35px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    padding: 6px 0;
    font-size: 1rem;
    font-family: inherit;
    color: #000;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom: 1px solid #ec7d1a;
}

/* Bottone Send */
.btn-send {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-send:hover {
    background: #ec7d1a;
}

/* ===== FOOTER ===== */
.footer {
    max-width: 1400px;
    margin: 80px auto 0;
    font-size: 0.9rem;
    color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .topbar {
        padding: 20px 25px;
    }

    .coming-soon {
        font-size: 2.2rem;
        letter-spacing: 6px;
    }

    .contact-section {
        padding: 60px 25px 30px;
    }

    .contact-wrapper {
        gap: 50px;
    }
}