/* ================================ */
/*         IMPOSTAZIONI GLOBALI     */
/* ================================ */

/* Definiamo i colori principali per poterli cambiare facilmente */
:root {
    --dark-bg: #1a1a1a; /* Sfondo scuro, quasi nero */
    --primary-red: #a31f24; /* Rosso scuro, ispirato alle tue grafiche */
    --neon-pink: #ff005d;   /* Il rosa/rosso neon per i dettagli d'impatto */
    --text-color: #f1f1f1;  /* Testo quasi bianco, ma non abbagliante */
    --card-bg: #2c2c2c;   /* Sfondo per le card delle pizze */
}

/* Reset base e font globali */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Abilita lo scorrimento morbido tra le sezioni */
}

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

h2.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 50px;
    position: relative;
}

/* Linea decorativa sotto i titoli di sezione */
h2.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--neon-pink);
    margin: 10px auto 0;
}

/* ================================ */
/*         NAVIGAZIONE              */
/* ================================ */

.navbar {
    background-color: rgba(26, 26, 26, 0.9); /* Sfondo semi-trasparente */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px); /* Effetto vetro smerigliato */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
}

.brand-logo img {
    height: 50px; /* Imposta un'altezza massima per il logo */
    width: auto; /* Mantiene le proporzioni */
}

.whatsapp-btn {
    background-color: #25D366; /* Colore verde WhatsApp */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1DA851;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* ================================ */
/*         SEZIONE HERO             */
/* ================================ */

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    /* --- IMMAGINE DI SFONDO --- */
    /* Sostituisci 'hero-bg.jpg' con il nome di una tua foto d'impatto */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/daumberto-pizzeria_0002_DaUmbertoFerrarelle-23.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effetto parallasse */
}

.hero-title {
    font-family: 'Tilt Neon', sans-serif;
    font-size: 6rem; /* Aumentato per renderlo più grande */
    color: #fff;
    text-shadow: 0 0 15px var(--neon-pink), 0 0 20px var(--neon-pink);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: var(--neon-pink);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #ff3385;
    transform: translateY(-3px);
}

/* ================================ */
/*         SEZIONI GENERICHE        */
/* ================================ */

.content-section {
    padding: 80px 0;
}

#lapizza {
    background-color: var(--primary-red);
    overflow: hidden; /* Nasconde il testo che esce dal contenitore */
    white-space: nowrap; /* Impedisce al testo di andare a capo */
    position: relative;
    height: 200px; /* Altezza della sezione per contenere il testo scorrevole */
    display: flex;
    align-items: center;
}

.scrolling-text-container {
    width: 100%;
    overflow: hidden;
}

.scrolling-text {
    font-family: 'Oswald', sans-serif; /* Font dei titoli */
    font-size: 8rem; /* Molto grande */
    color: white;
    text-transform: uppercase;
    display: inline-block;
    animation: scroll-text 60s linear infinite; /* Animazione di scorrimento */
}

@keyframes scroll-text {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%); /* Scorre del 50% per un effetto continuo con testo duplicato */
    }
}

.menu-section {
    padding: 80px 0;
    background-color: #222;
}

/* ================================ */
/*         SEZIONE FILOSOFIA        */
/* ================================ */

.filosofia-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.filosofia-image {
    flex: 1;
    position: relative;
    margin-bottom: -120px; /* Sposta l'immagine verso il basso */
}

.filosofia-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.filosofia-text {
    flex: 1.5;
}

.filosofia-text h2 {
    font-size: 2.2rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
}

/* ================================ */
/*         SEZIONE MENU             */
/* ================================ */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-item h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
    color: var(--neon-pink);
}

.menu-item p {
    padding: 0 20px;
    font-size: 0.9rem;
}

/* ================================ */
/*         SEZIONE GALLERIA         */
/* ================================ */

.gallery-section {
    padding: 0; /* Rimuove il padding per l'effetto a tutta larghezza */
}

.gallery-scroll-container {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.gallery-grid {
    display: flex;
    width: 200%; /* Larghezza doppia per contenere le immagini duplicate */
    cursor: grab;
}

.gallery-grid.is-dragging {
    cursor: grabbing;
}

.gallery-grid img {
    height: 350px; /* Altezza fissa per le immagini */
    max-width: none;
    width: auto;
    margin: 0; /* Rimuove lo spazio tra le immagini */
    border-radius: 0; /* Rimuove gli angoli stondati */
}

/* ================================ */
/*         FOOTER E CONTATTI        */
/* ================================ */

.footer-section {
    background-color: #111;
    padding: 60px 0;
}

.contatti-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.contatti-wrapper h3 {
    font-size: 1.5rem;
    color: var(--neon-pink);
    margin-bottom: 15px;
}

.contatti-wrapper a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contatti-wrapper a:hover {
    color: var(--neon-pink);
}

.contatti-social a {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid var(--neon-pink);
    padding: 8px 15px;
    border-radius: 5px;
}
.contatti-social a:hover {
    background-color: var(--neon-pink);
    color: #fff;
}


footer {
    background-color: #000;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

footer a {
    color: var(--neon-pink);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* ================================ */
/*        RESPONSIVE DESIGN         */
/* ================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 4.5rem; /* Increased font size for mobile */
        line-height: 1; /* Reduced line height */
    }

    .hero {
        background-position: center center; /* Adjust background position for mobile */
        background-attachment: scroll; /* Ensure image scales correctly on mobile */
    }

    .nav-links {
        display: none; /* Semplificazione per mobile, in futuro si può fare un menu burger */
    }

    .filosofia-content {
        flex-direction: column;
        text-align: center;
    }

    .filosofia-text {
        order: 1; /* Text before image */
    }

    .filosofia-image {
        order: 2; /* Image after text */
        margin-bottom: -100px; /* Adjusted negative margin for mobile overlap */
        margin-top: 30px; /* Add some space between text and image */
    }

    h2.section-title {
        font-size: 2rem;
    }
}
/* ================================ */
/*     STILI PER ANIMAZIONI JS      */
/* ================================ */

/* Stile della navbar quando si scorre */
.navbar.scrolled {
    background-color: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Stato iniziale degli elementi da animare: nascosti e leggermente spostati in basso */
.content-section, .menu-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Stato finale quando l'elemento diventa visibile: appare e torna al suo posto */
.is-visible {
    opacity: 1;
    transform: translateY(0);
}