* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);

}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Particelle di sfondo con oro più realistico */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(180, 141, 87, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(170, 140, 46, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

/* LOGO PRINCIPALE */
.logo {
    margin-bottom: 40px;
}

/* ✅ Logo immagine più piccolo e con tono oro brunito */
.logo-image {
    max-width: 45%;
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
    filter: brightness(1) contrast(1.2) saturate(0.85) sepia(0.4) hue-rotate(10deg);
}


.logo h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    /* Oro MOLTO più scuro e brunito - zero giallo */
    background: linear-gradient(180deg, 
        #D4AF37 0%,      /* Oro medio in alto */
        #C9A961 20%,     /* Oro caldo */
        #B8860B 40%,     /* Oro brunito (colore dominante) */
        #A67C00 60%,     /* Oro scuro */
        #8B6F1F 80%,     /* Bronzo scuro */
        #6B5416 100%     /* Ombra marrone profonda */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 200%;
    /* Bagliore MOLTO ridotto e caldo */
    filter: drop-shadow(0 2px 4px rgba(139, 111, 31, 0.6)) 
            drop-shadow(0 0 8px rgba(166, 124, 0, 0.3));
    animation: goldShimmer 4s ease-in-out infinite alternate;
    margin-bottom: 15px;
}

@keyframes goldShimmer {
    0% { 
        background-position: 0% 0%;
        filter: drop-shadow(0 3px 6px rgba(166, 124, 0, 0.5)) 
                drop-shadow(0 0 12px rgba(184, 134, 11, 0.4));
    }
    100% { 
        background-position: 0% 100%;
        filter: drop-shadow(0 3px 8px rgba(166, 124, 0, 0.6)) 
                drop-shadow(0 0 16px rgba(184, 134, 11, 0.5));
    }
}

@keyframes subtleGlow {
    from { filter: brightness(1); }
    to   { filter: brightness(1.1); }
}

.logo h2 {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #c9c9c9;
    margin-bottom: 30px;
}

/* MESSAGGIO PRINCIPALE */
.main-message {
    margin-bottom: 50px;
}

.main-message h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    background: linear-gradient(39deg, #8B6F1F 0%, #A67C00 20%, #ceccc7 40%, #f5e1a1 50%, #C9A961 60%, #B8860B 80%, #8B6F1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(166, 124, 0, 0.4));
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.main-message p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* HIGHLIGHT con effetto metallico */
.highlight {
    font-weight: 500;
    position: relative;
    background: linear-gradient(120deg, 
        #AA8C2E, 
        #C9A961, 
        #E6D5A8, 
        #D4AF37, 
        #AA8C2E
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldFlow 3s linear infinite;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(120deg, 
        transparent, 
        rgba(230, 213, 168, 0.4), 
        transparent
    );
    animation: shimmer 2.5s infinite;
}

@keyframes goldFlow {
    to { background-position: 200% center; }
}

/* SEZIONE INFORMAZIONI */
.info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
    animation: fadeInUp 1s ease-out 1s both;
}

.info-card {
    border: none;
}

.info-card:hover {
  
}

/* STILE PER IMMAGINI CIRCOLARI */

.info-image-wrapper {
    width: 220px; 
    height: 220px; 
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px auto;
    border: 0px;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5), inset 0 0 10px rgba(184, 134, 11, 0.3);
    transition: transform 0.3s ease;
}

.info-card:hover .info-image-wrapper {
    transform: scale(1.05); 
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7), inset 0 0 10px rgba(184, 134, 11, 0.5); 
}

.info-image {
    /* Assicura che l'immagine copra interamente il contenitore circolare */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ritaglia l'immagine per riempire il cerchio senza distorcerla */
    display: block;
}

/* Aggiorna lo stile del titolo h4 per centrarlo dopo l'immagine */
.info-card h4 {
    margin-bottom: 10px; /* Ridotto il margine per avvicinare il titolo alla descrizione */
    /* Assicurati che il .info-card h4 abbia text-align: center se non lo ha già, ma dovrebbe ereditarlo */
}

/* Modifica la sezione responsive per le dimensioni delle immagini */
@media (max-width: 480px) {
    .info-image-wrapper {
        width: 180px; 
        height: 180px; 
    }
}

.info-card h4 {
    font-size: 1.2rem;
    /*background: linear-gradient(39deg, #8B6F1F 0%, #A67C00 20%, #ceccc7 40%, #f5e1a1 50%, #C9A961 60%, #B8860B 80%, #8B6F1F 100%);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 2px rgba(170, 140, 46, 0.3));
    /*margin-bottom: 15px;*/
    font-weight: 500;
}

.info-card p {
    color: #c9c9c9;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* PROGRESS BAR con oro stratificato */
.progress-section {
    margin: 60px 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.progress-title {
    font-size: 1.1rem;
    background: linear-gradient(39deg, #8B6F1F 0%, #A67C00 20%, #ceccc7 40%, #f5e1a1 50%, #C9A961 60%, #B8860B 80%, #8B6F1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #9B7E3F 0%, 
        #B8860B 20%, 
        #D4AF37 40%, 
        #E6D5A8 50%, 
        #D4AF37 60%, 
        #C9A961 80%, 
        #AA8C2E 100%
    );
    border-radius: 10px;
    animation: progressAnimation 3s ease-out 1.5s both;
    position: relative;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4),
                inset 0 1px 1px rgba(230, 213, 168, 0.5),
                inset 0 -1px 1px rgba(155, 126, 63, 0.5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes progressAnimation {
    from { width: 0%; }
    to   { width: 85%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* CONTACT INFO */
.contact-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(180, 141, 87, 0.3);
    animation: fadeInUp 1s ease-out 1.4s both;
}

.contact-info h4 {
    background: linear-gradient(39deg, #8B6F1F 0%, #A67C00 20%, #ceccc7 40%, #f5e1a1 50%, #C9A961 60%, #B8860B 80%, #8B6F1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9c9c9;
    font-size: 0.95rem;
}

.contact-item i {
    background: linear-gradient(135deg, #C9A961, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
}

/* SOCIAL ICONS con bordo oro realistico */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(180, 141, 87, 0.4);
    border-radius: 50%;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #9B7E3F, #D4AF37, #E6D5A8, #C9A961, #AA8C2E);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #D4AF37, #E6D5A8, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

/* ANIMAZIONI */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container { padding: 20px 15px; }
    /* RIMOSSA la sovrascrittura, ma il layout a 3 colonne è ora forzato sopra. */
    /* .info-section { grid-template-columns: 1fr; gap: 20px; } */ 
    .contact-details { flex-direction: column; align-items: center; gap: 15px; }
    .social-links { gap: 15px; }
    .social-links a { width: 45px; height: 45px; font-size: 1.1rem; }
}

/* FOOTER */
.footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(201, 201, 201, 0.6);
    font-size: 0.8rem;
    text-align: center;
}
```