/* Sezioni eleganti già coerenti */
.section-elegante {
    max-width: 1100px;
    margin: 110px auto;
    background: #fff;
    padding: 45px 55px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* Titolo evento */
.section-elegante h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    border-left: 6px solid #000;
    padding-left: 12px;
}

/* Descrizione evento */
.evento-desc {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* ====== GALLERY ELEGANTE ====== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.gallery img {
    width: 100%;
    height: 430px;        /* altezza uniforme */
    object-fit: cover;    /* ritaglia in modo elegante */
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: transform .25s ease;
}
.gallerya img {
    width: 100%;
    height: 100%;        /* altezza uniforme */
    object-fit: cover;    /* ritaglia in modo elegante */
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: transform .25s ease;
}
/* Effetto hover elegante */
.gallery img:hover {
    transform: scale(1.04);
}
.section-elegante h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;

    /* Effetto oro */
    background: linear-gradient(90deg, 
        #b3914e 0%, 
        #e6c57b 25%, 
        #fff1c1 50%, 
        #e6c57b 75%, 
        #b3914e 100%
    );
    -webkit-background-clip: text;
    color: transparent;
    
    letter-spacing: 1px;

    border-left: none; /* eliminiamo la barra nera */
    padding-left: 0;
}
