/* RESET E CARATTERI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #0D0D0D; /* Rich Black */
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* 1. HERO SECTION (STILE COMPLICI) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    /* Immagine di sfondo elegante (sfondo scuro astratto o texture) */
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1920') center/cover no-repeat;
}

/* Overlay scuro per rendere il testo leggibilissimo e dare atmosfera */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.8), #0D0D0D);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.gold-badge {
    color: #D4AF37; /* Metallic Gold */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: 'Cinzel', serif; /* Font lussuoso stile Vogue/Prada */
    font-size: 5rem;
    letter-spacing: 12px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #D4AF37;
    margin-bottom: 2rem;
}

.gold-line {
    width: 60px;
    height: 2px;
    background-color: #D4AF37;
    margin: 0 auto 2rem auto;
}

.hero-description {
    font-size: 1.1rem;
    color: #CCCCCC;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BOTTONE ORO ELEGANTE */
.btn-gold {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    background: transparent;
}

.btn-gold:hover {
    background-color: #D4AF37;
    color: #0D0D0D;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* 2. SEZIONE LISTINO SERVIZI */
.services-section {
    background-color: #0D0D0D;
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-box {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
}

.gold-line-small {
    width: 40px;
    height: 1px;
    background-color: #D4AF37;
    margin: 1.5rem auto 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: #1A1A1A; /* Jet Black per contrasto */
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: center;
    transition: border 0.3s ease;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card .price {
    font-size: 1.5rem;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-card .service-desc {
    color: #CCCCCC;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

/* 3. SEZIONE PRENOTAZIONE (PRENOTA) */
.booking-section {
    background-color: #1A1A1A; /* Inversione sfondo */
    padding: 8rem 2rem;
}

.booking-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.booking-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.booking-info p {
    color: #CCCCCC;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #D4AF37;
    font-weight: 600;
}

/* FORM DI PRENOTAZIONE SIMULATO */
.booking-form {
    background-color: #0D0D0D;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.5);
}

.booking-form h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

.select-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #CCCCCC;
}

.option:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background-color: rgba(212, 175, 55, 0.02);
}

/* Stato selezionato del servizio */
.option.active {
    border-color: #D4AF37;
    color: #0D0D0D;
    background-color: #D4AF37;
    font-weight: 600;
}

.total-box {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.total-price {
    color: #D4AF37;
    font-weight: 600;
}

.btn-gold-full {
    width: 100%;
    background-color: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold-full:hover {
    background-color: #D4AF37;
    color: #0D0D0D;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   VERSIONE MOBILE ULTRA-OTTIMIZZATA (Per smartphone e tablet)
   ========================================================================== */
@media (max-width: 768px) {
    
    /* 1. HERO REVISIONATA */
    .hero {
        padding: 6rem 1rem 3rem 1rem; /* Più spazio in alto per non finire sotto eventuali menu */
        min-height: auto; /* Evita strani allungamenti su mobile */
    }

    .hero h1 { 
        font-size: 2.6rem; /* Scritta più piccola così non si spezza male sui telefoni stretti */
        letter-spacing: 4px; /* Riduciamo la spaziatura delle lettere o esce dallo schermo */
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 4px;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    /* 2. GRIGLIA SERVIZI */
    .services-section {
        padding: 4rem 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* Una sola colonna pulita su mobile */
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem; /* Meno vuoti inutili sui lati */
    }

    /* 3. MODULO PRENOTAZIONE (IL CORRETTORE) */
    .booking-section {
        padding: 4rem 1.2rem;
    }

    .booking-container {
        grid-template-columns: 1fr; /* Colonna singola: prima i testi, sotto il modulo */
        gap: 2.5rem;
        text-align: center;
    }

    .booking-info h2 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 1.5rem; /* Riduciamo il padding interno per non stringere troppo il form */
        width: 100%;
        max-width: 100%; /* Impedisce al box di uscire dai bordi del telefono */
    }

    /* FIX TASTI E OPZIONI SU MOBILE */
    .option {
        padding: 1.2rem 1rem; /* Più alto così è più facile da tappare con il pollice */
        font-size: 0.9rem;
        /* Rimuove il fastidioso flash blu/grigio che i telefoni fanno quando tappi */
        -webkit-tap-highlight-color: transparent; 
    }

    .btn-gold, .btn-gold-full {
        padding: 1.2rem 2rem; /* Bottoni più spessi, a prova di dita grandi */
        font-size: 0.9rem;
        display: block; /* Occupa tutta la larghezza disponibile */
        width: 100%;
        text-align: center;
        -webkit-tap-highlight-color: transparent;
    }
}