body {
    background-color: #0a0a0a;
    color: white;
    margin: 0;
}
    
/* HEADER CON NAVBAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #222;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.nomepg {
    margin: 0;
    font-size: 62px;
    letter-spacing: 4px;
    font-family: 'Cinzel', serif;
}

.navbar {
    display: flex;
    gap: 25px;
    font-family: 'Montserrat', sans-serif;
}

.navbar a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
}

.navbar a:hover {
    color: white;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 1px;
    background: white;
    transition: 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

/* STRUTTURA CENTRALE */
.main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 60px;
    box-sizing: border-box;
}

.testo-introduzione {
    flex: 1.2;
}

.testo-p {
    color: #bbb;
    line-height: 1.8;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.lista {
    color: #bbb;
    line-height: 2;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    padding-left: 20px;
    margin-bottom: 30px;
}

.lista li {
    margin-bottom: 10px;
}

.payoff {
    font-family: 'Cinzel', serif;
    color: white;
    margin-top: 30px;
}

/* FOTO */
.foto-vetrina {
    flex: 0.8;
    max-width: 400px;
    border: 1px solid #1c1c1c;
    overflow: hidden;
}

.foto-vetrina img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(85%) contrast(105%);
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    color: #aaa;
    text-align: center;
    padding: 35px 20px;
    margin-top: 150px;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid #222;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-logo img {
    width: 90px;
    height: auto;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        gap: 12px;
        padding: 15px 20px;
        text-align: center;
    }

    .nomepg {
        font-size: 34px;
        letter-spacing: 3px;
    }

    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .navbar a {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .main-container {
        flex-direction: column;
        gap: 40px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .testo-p, .lista {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }

    .lista {
        padding-left: 20px;
    }

    .foto-vetrina {
        max-width: 100%;
        order: -1;
    }

    .footer {
        padding: 25px 15px;
        margin-top: 80px;
    }

    .footer-logo img {
        width: 70px;
    }
}