/* Palette colori estratta dal logo della Rosa dei Venti */
        :root {
    --blu-profondo: #005b8a;
    --azzurro-mare: #71b3d6;
    --rosa-accento: #eebbb3;
    --bianco-ceramica: #fcfbfa;
    --testo-scuro: #2c3e50;
}

body {
    background-color: var(--bianco-ceramica);
    color: var(--testo-scuro);
    font-family: 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

        /* Stili Hero e Navigazione personalizzati */
        .hero {
            background: linear-gradient(135deg, var(--blu-profondo) 0%, #003a59 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .navbar {
            background-color: white;
            border-bottom: 2px solid var(--azzurro-mare);
        }

        .nav-links a {
            color: var(--blu-profondo);
            font-weight: 600;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--rosa-accento);
        }

        .btn-main {
            background-color: var(--rosa-accento);
            color: var(--blu-profondo);
            font-weight: bold;
            transition: transform 0.2s, background-color 0.2s;
        }

        .btn-main:hover {
            background-color: #e5aaa1;
            transform: scale(1.05);
        }

        .btn-submit-animated {
            background-color: var(--blu-profondo);
            color: white;
            transition: background-color 0.2s;
        }

        .btn-submit-animated:hover {
            background-color: #004569;
        }

        .section-title h2 {
            color: var(--blu-profondo);
            font-family: 'Georgia', serif;
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
        }

        .divider {
            width: 60px;
            height: 3px;
            background-color: var(--rosa-accento);
            margin: 10px auto 30px auto;
        }

        .feature-box {
            background: white;
            border: 1px solid #eef2f5;
            border-top: 4px solid var(--azzurro-mare);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }

        .service-badge {
            background-color: #f0f7fa;
            color: var(--blu-profondo);
            border: 1px solid #d1e7f2;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .booking-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08);
            border: 1px solid #eef2f5;
            padding: 30px;
        }

        /* Effetti Scroll Reveal presi dallo schema del foglio di stile */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
		
		/* Sezione con immagine fissa di sfondo che sparisce al passaggio */
.parallax-divider {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Questo crea l'effetto incastro dietro le scritte */
}

/* Layout a due colonne asimmetriche tipo Screenshot 2026-06-26 001333.png */
.wix-split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
    align-items: stretch;
}

.wix-col-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
}

.wix-col-img {
    flex: 1 1 50%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Variazione cromatica per i blocchi di testo (es. blocco scuro/colorato) */
.bg-brand-blue {
    background-color: var(--blu-profondo);
    color: #ffffff;
}

.bg-brand-blue h2 {
    color: #ffffff !important;
}

/* ==========================================================================
   ELEMENTI GRAFICI & ANIMAZIONI DAI LATI
   ========================================================================== */
.section-title h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    color: var(--blu-profondo);
    margin-bottom: 0.5rem;
}

.wix-divider {
    width: 50px;
    height: 3px;
    background-color: var(--rosa-accento);
    margin: 1.5rem 0;
}

.service-tag {
    background-color: rgba(113, 179, 214, 0.15);
    color: var(--blu-profondo);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Classi specifiche per far apparire gli elementi dai lati al passaggio */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   OTTIMIZZAZIONE REQUISITI MOBILE (SMARTPHONE FIRST)
   ========================================================================== */
@media (max-width: 768px) {
    .wix-split-section {
        flex-direction: column; /* Incolonna gli elementi su mobile */
    }
    
    .wix-col-text {
        padding: 2.5rem 1.5rem;
        order: 2; /* Forza il testo ad andare sotto l'immagine se necessario */
    }
    
    .wix-col-img {
        min-height: 300px;
        order: 1;
    }
    
    .parallax-divider {
        height: 40vh;
        background-attachment: scroll; /* I vecchi browser mobile gestiscono meglio scroll rispetto a fixed */
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Optimization spaces and text sizes */
.wix-col-text {
    padding: 2.5rem 3rem !important; /* Spaziatura interna ridotta in alto/basso per togliere il vuoto */
}

.wix-col-text span.uppercase {
    font-size: 0.95rem !important; /* Titoletto più grande e visibile */
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* Effetto Hover Glow per Digital Studio */
.digital-studio-link {
    color: #ffffff;
    text-shadow: 0 0 0px rgba(113, 179, 214, 0);
    transition: all 0.4s ease-in-out;
    display: inline-block;
}

.digital-studio-link:hover {
    color: var(--azzurro-mare) !important;
    text-shadow: 0 0 12px rgba(113, 179, 214, 0.8), 0 0 20px rgba(113, 179, 214, 0.4);
    transform: translateY(-1px);
}

/* Regolazione Mobile per i titoletti */
@media (max-width: 768px) {
    .wix-col-text {
        padding: 1.8rem 1.5rem !important;
    }
    .wix-col-text span.uppercase {
        font-size: 0.85rem !important;
    }
}

/* Sezione Recensioni & Bottoni Social/Piattaforme */
.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-google {
    background-color: #ffffff;
    color: #4285F4;
    border-color: #4285F4;
}
.btn-google:hover {
    background-color: #4285F4;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-tripadvisor {
    background-color: #ffffff;
    color: #00AFEF;
    border-color: #00AFEF;
}
.btn-tripadvisor:hover {
    background-color: #00AFEF;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 175, 239, 0.3);
}

.review-card {
    background: #ffffff;
    border: 1px solid #f5f5f4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}