/* Palette Luxury */
:root {
    --gold: #C5A059;
    --gold-dark: #b08d4b;
    --dark: #1F1A12;
    --text-soft: #555;
    --bg-cream: #FAF9F6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- SEZIONE HERO (INGRANDITA PER PC) --- */
#hero {
    /* Ridotto ulteriormente il padding superiore per dare spazio agli elementi grandi */
    padding: 60px 40px 30px;
    min-height: calc(100vh - 70px); 
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.hero-container {
    /* Aumentata la larghezza massima del contenitore */
    width: min(1400px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px; 
}

/* Header Titles - Impatto maggiore */
.hero-header {
    text-align: center;
}

.eyebrow {
    font-family: 'Ysabeau SC', sans-serif;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem; /* Più visibile */
}

.hero-header h1 {
    font-family: 'Ysabeau SC', sans-serif;
    /* Titolo molto più grande */
    font-size: clamp(3.5rem, 9vw, 5.5rem); 
    margin: 0;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
}

.hero-header h2 {
    /* Sottotitolo più arioso */
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 300;
    color: var(--text-soft);
    margin-top: 15px;
    letter-spacing: 2px;
}

/* Layout Affiancato */
.hero-middle {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 60px; /* Più spazio tra video e testo */
    align-items: center;
}

/* Video Card - Più grande e d'impatto */
.video-card {
    border-radius: 30px; /* Angoli più morbidi e moderni */
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    /* Aumentata l'altezza massima concessa al video */
    max-height: 55vh; 
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-sfondo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testo e Bottoni */
.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testo-card {
    /* Font del testo aumentato per una lettura premium */
    font-size: 1.15rem; 
    line-height: 1.8;
    color: var(--text-soft);
}

.testo-card p {
    margin-bottom: 20px;
}

.testo-card strong {
    color: var(--gold);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Pulsanti più grandi */
.btn-more {
    flex: 1;
    padding: 18px 32px; /* Più "importanti" al clic */
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.btn-booking {
    background: var(--gold);
    color: white;
    box-shadow: 0 12px 25px rgba(197, 160, 89, 0.25);
}

.btn-booking:hover {
    background: var(--gold-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.35);
}

.btn-learn {
    background: white;
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-learn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* --- RESPONSIVE (Smartphone) --- */
@media (max-width: 992px) {
    #hero {
        padding: 100px 24px 60px;
        min-height: auto; 
        display: block;
    }

    .hero-middle {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .video-card {
        max-height: none; 
    }

    .hero-actions {
        justify-content: center;
    }
    
    .testo-card {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    #hero {
        padding: 92px 16px 42px;
    }

    .hero-container {
        gap: 28px;
    }

    .eyebrow {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .hero-header h1 {
        font-size: clamp(2.4rem, 13vw, 3rem);
        letter-spacing: 1px;
    }

    .hero-header h2 {
        font-size: 1rem;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .hero-middle {
        gap: 28px;
    }

    .video-card {
        border-radius: 18px;
    }

    .testo-card {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-more {
        width: 100%;
        padding: 15px 20px;
    }
}
