/* --- TEMA NATALIZIO ELEGANTE ORO & BIANCO --- */

/* Colore oro elegante */
:root {
    --gold: #cbb27b;
    --gold-light: rgba(203, 178, 123, 0.25);
}

/* Effetto glow leggerissimo sugli angeli (immagini PNG di sfondo) */
.hero-section img,
.header-background img {
    animation: angelGlow 4s ease-in-out infinite alternate;
}

@keyframes angelGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.12); }
}

/* Cornici oro nelle card */
.card, .wp-block-group, .box, .widget {
    border: 1px solid var(--gold-light);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(203, 178, 123, 0.15);
}

/* Titoli con dettagli oro */
h1, h2, h3, .section-title {
    position: relative;
    color: #333;
}

h1::after, h2::after, .section-title::after {
    content: "";
    width: 45px;
    height: 3px;
    background: var(--gold);
    display: block;
    margin-top: 6px;
    border-radius: 3px;
}

/* Banner Avvento OLD */
/*
.avvento-banner {
    background: linear-gradient(90deg, #fff, #faf7f0);
    border-left: 4px solid var(--gold);
    padding: 12px 18px;
    margin: 15px 0;
    font-size: 1.1rem;
    color: #4a4a4a;
    box-shadow: 0 0 12px rgba(203, 178, 123, 0.18);
}
*/

/* Banner Avvento NEW */
.avvento-banner {
    background: linear-gradient(90deg, #fff9f2, #f7efe2);
    border-left: 4px solid #cbb27b;
    padding: 14px 20px;
    margin: 20px 0;
    font-size: 1.15rem;
    color: #5a4735;
    box-shadow: 0 0 14px rgba(203, 178, 123, 0.25);
    border-radius: 6px;
}


/* Posizionamento stella cometa vicino al logo */
.header-logo {
    position: relative;
}
.header-logo::after {
    content: url('/assets/img/stella-cometa.svg');
    position: absolute;
    top: -10px;
    right: -35px;
    width: 40px;
    opacity: 0.9;
}

/* Fiocchi di neve oro soft */
.snowflake {
    position: fixed;
    top: -10px;
    color: var(--gold-light);
    font-size: 18px;
    animation: fall linear infinite;
    pointer-events: none;
    user-select: none;
}

@keyframes fall {
    0% { transform: translateY(-10vh) rotate(0deg); }
    100% { transform: translateY(110vh) rotate(360deg); }
}

/* --- Angoli con rametti di abete minimal --- */

.presepe-corner {
    position: relative;
}

.presepe-corner::before,
.presepe-corner::after {
    content: url('/assets/img/rametto-abete-new2.png'); /* rametto-abete.png */
    position: absolute;
    width: 38px;
    opacity: 0.55;
}

.presepe-corner::before {
    top: -8px;
    left: -8px;
    transform: rotate(-10deg);
}

.presepe-corner::after {
    bottom: -8px;
    right: -8px;
    transform: rotate(12deg);
}
/* step 2 */


h2, .section-title {
    position: relative;
    padding-left: 28px;
}

h2::before, .section-title::before {
    content: url('/assets/img/campanella-gold-new2.png'); /* campanella-gold.png */
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    opacity: 0.85;
}

/* step 3  */



.stella-presepe {
    position: absolute;
    color: #d9c08e;
    font-size: 14px;
    opacity: 0.6;
    animation: stellaBlink 4s ease-in-out infinite alternate;
}

@keyframes stellaBlink {
    from { opacity: 0.35; transform: scale(1); }
    to { opacity: 0.9; transform: scale(1.15); }
}
