@import url('https://fonts.googleapis.com/css2?family=Helvetica:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* Palette di colori - solo bianco e nero */
:root {
    --black: #000000;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #cccccc;
    --white: #ffffff;
    --onlyfans-blue: #00AFF0;
    --telegram-blue: #0088cc;
    --highlight-pink: #FF69B4;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
    transition: background-color 0.5s ease;
    background: url('../images/background1.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100%;
}

/* Sovrapposizione sfocata */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9998;
    display: block;
    transition: opacity 0.5s ease;
}

/* Stile del popup */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--black);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: block;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Contenuto del popup */
.popup-content {
    text-align: center;
}

.popup-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Stile del pulsante nel popup */
.popup-content button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Stile del pulsante al passaggio del mouse */
.popup-content button:hover {
    background-color: var(--medium-gray);
}

/* Stile dell'intestazione */
header {
    position: fixed;
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

/* Barra di navigazione */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Testo nel menu di navigazione */
.text {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    font-family: 'Great Vibes', cursive;
}

/* Link di navigazione */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
}

/* Stile dei link al passaggio del mouse */
.nav-links li a:hover {
    color: var(--black);
    background-color: var(--white);
}

/* Stile dell'icona burger per i dispositivi mobili */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: transform 0.3s ease;
}

/* Contenitore dell'immagine principale */
.image-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Stile dell'immagine principale */
.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.menu-overlay {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    z-index: 2;
    width: 100%;
}

/* Singolo elemento del menu */
.menu-item {
    width: 90%;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 30px 50px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.menu-item a {
    text-decoration: none;
    color: var(--white);
    font-weight: bold;
    font-size: 2.5rem;
}

/* Effetto al passaggio del mouse su ogni menu */
.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background-color: var(--dark-gray);
}

/* Stile del footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--black);
    color: var(--white);
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Stile per dispositivi mobili */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        background-color: var(--black);
        position: absolute;
        top: 80px;
        left: -100%;
        transition: transform 0.5s ease-in;
    }

    .nav-links.active {
        transform: translateX(0);
        left: 0;
    }

    .nav-links li {
        text-align: center;
        padding: 1rem 0;
    }

    .burger {
        display: block;
    }

    .main-image {
        width: 100%;
        max-width: none;
    }

    .menu-item a {
        font-size: 2rem;
    }

    .menu-overlay {
        gap: 20px;
    }

    .menu-item {
        width: 95%;
        padding: 30px 40px;
    }
}

/* Effetto di dissolvenza */
.fade-out {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.5s ease;
    pointer-events: none;
}