
    @font-face {
        font-family: 'OldLondon';
        src: url('./font/OldLondon.ttf') format('truetype');
    }
    :root {
        --color-primary: #A88F5B; /* Muted Gold for headings and main accents */
        --color-secondary: #6F5B3E; /* Rich Brown/Dark Gold for secondary accents and buttons */
        --color-background: #FDF8F0; /* Light Cream/Beige */
        --color-text-dark: #4A4A4A; /* Softer Dark Grey for main text */
        --color-text-light: #7A7A7A; /* Softer Medium Grey */
        --header-bg: #FFFFFF; /* White background for header */
        --header-text: #3D3D3D; /* Dark text for header */
    }

    html, body {
         scroll-behavior: smooth;
         overflow-x: hidden;
    }

    body {
        font-family: 'Montserrat', sans-serif; /* Elegant sans-serif for body */
        color: var(--color-text-dark);
        background-color: var(--color-background);
    }



    /* Stile per bloccare lo scorrimento agendo su HTML */
    html.scroll-locked {
        overflow: hidden;
    }
 
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Playfair Display', serif; /* Elegant serif for headings */
        color: var(--color-primary);
    }
    
    .hero-section {
        height: 100vh;
        background-color: #FFFFFF;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--color-text-dark);
        position: relative;
        padding: 2rem;
    }

    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: 1.5rem; /* Ridotto da 2.5rem */
        padding-bottom: 0.5rem;
    }
    .section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px; 
        height: 2px;
        background-color: var(--color-primary);
    }
    
    .star-rating {
        color: #FFD700;
    }
    
    .map-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        border-radius: 1rem;
    }
    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    .whatsapp-fixed-button {
        background-color: rgba(111, 91, 62, 0.9);
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 9999px;
        font-weight: 600;
        transition: background-color 0.3s ease;
        position: fixed;
        bottom: 1.5rem;
        left: 1.5rem;
        z-index: 1000;
        display: none; /* Nascondi di default */
        align-items: center;
        gap: 0.5rem;
    }
    .whatsapp-fixed-button:hover {
        background-color: var(--color-primary);
    }
    
    .card-button {
        display: inline-block;
        background-color: var(--color-secondary);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 9999px;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: background-color 0.3s ease;
        margin-top: 1.5rem;
    }
    .card-button:hover {
        background-color: var(--color-primary);
    }
    
    .form-input, .form-select, .form-textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #D1D5DB;
        border-radius: 0.5rem;
        font-size: 1rem;
        color: var(--color-text-dark);
        background-color: #F9FAFB;
        transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px rgba(168, 143, 91, 0.2);
    }
    .form-label {
        display: block;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--color-text-dark);
        margin-bottom: 0.5rem;
    }
    .form-group {
        margin-bottom: 1.5rem;
    }

    /* SOLUZIONE PER FLASH ANIMAZIONI (FOUC) */
    [data-aos] {
        visibility: hidden;
    }
    .aos-init[data-aos] {
        visibility: visible;
    }
    
    @media (min-width: 768px) {
        .whatsapp-fixed-button {
            display: none;
        }
    }

    @media (max-width: 767px) {
        .section-title {
            font-size: 1.5rem; 
            line-height: 2rem;
        }
        .hero-section {
            margin-top: -70px;
        }
    }
