
/* 🔹 FONT */
@import url('https://fonts.googleapis.com/css2?family=Mystery+Quest&display=swap');

body,
h1, h2, h3, h4, h5, h6,
p, li {
    font-family: 'Mystery Quest', cursive !important;
}

/* 🔹 COLORI GLOBALI */
:root {
    --global--color-primary: #00ffff;
}

/* 🔹 TESTI SPECIFICI */
.menu-blu a,
.site-description {
    color: #00ffff !important;
}

/* 🔹 MENU + TITOLI */
.primary-navigation a,
.site-footer a,
.site-title,
.site-description {
    font-family: 'Mystery Quest', cursive !important;
}

/* 🔹 MENU STILE */
.primary-navigation a,
.site-footer a {
    display: inline-block;
    font-size: 28px !important;
    background-color: #39414d;
    padding: 8px 14px;
    border-radius: 6px;
    color: #00ffff !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

/* 🔹 HOVER */
.primary-navigation a:hover,
.site-footer a:hover {
    transform: translateY(-2px);
    background-color: #2f363f;
}

/* 🔹 SPAZIATURA MENU */
.primary-navigation ul,
.site-footer ul {
    gap: 10px;
}

/* 🔹 HEADER (TITOLO + MOTTO) */
.site-branding {
    display: inline-block;
    background-color: #39414d;
    padding: 10px 16px;
    border-radius: 8px;
}
/* Testo */
body, p, li {
    letter-spacing: 1.5px !important;
}

/* Titoli ovunque */
h1, h2, h3,
.entry-title,
.page-title,
.wp-block-post-title {
    letter-spacing: 3px !important;
}

/* Menu */
.primary-navigation a,
.site-footer a {
    letter-spacing: 1.2px !important;
}
.site-title a {
    letter-spacing: 5px !important;
}
/* 🔹 NASCONDE LO SFONDO DEL TEMA SOLO IN HOMEPAGE MOBILE */
@media (max-width: 768px) {
    body.home {
        background: none !important;
    }

    /* 🔹 CREA SFONDO STABILE */
    body.home::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-image: url('https://azulnorteno.com/wp-content/uploads/2026/02/FCamada30.08.23Foto01.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }
}