/* === FONT E COLORI GLOBALI === */
/* === FONT E COLORI GLOBALI === */
@font-face {
    font-family: 'OldLondon';
    /* CORREZIONE: Usiamo un percorso assoluto partendo dalla radice del sito ('/')
      invece di un percorso relativo ('./'). Questo garantisce che il font
      venga trovato ovunque si trovi il file CSS.
    */
    src: url('./font/OldLondon.ttf') format('truetype');
}

/* ... il resto del tuo codice CSS rimane invariato ... */

:root {
    --color-primary: #A88F5B;
    --color-secondary: #6F5B3E;
    --color-background: #FDF8F0;
    --color-text-dark: #4A4A4A;
    --color-text-light: #7A7A7A;
    --header-bg: #FFFFFF;
    --header-text: #3D3D3D;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
}

/* === COMPONENTI COMUNI === */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.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);
}

/* === STILI FORM === */
.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;
}

/* === STILI LIGHTBOX (GALLERIA) === */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    transition: opacity 0.2s ease-in-out;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1002;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 1001;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(0,0,0,0.8);
}

.gallery-image {
    cursor: pointer;
}