      .privatep,
      #privatepp, .privatep {
          fill: var(--pink);
      }


.documents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 700px;
    color: var(--pink);
    width: 90%;
    justify-self: center;
    padding: 30px 0px;
    font-family: monospace;
    font-size: 12px;
    gap: 10px;
}

.doccont {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#saveNickname, .shine-btn {
    color: var(--pink);
    text-decoration: none;
    border: 1px solid;
    padding: 15px 50px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    background: transparent;
    transition: 0.3s;
    box-sizing: border-box;
}

#nickname-list {
    list-style: none;
    padding: 0px;
    justify-items: center;
}



.shine-btn:hover {
    background-color: var(--crema);
    color: var(--darkpurple) !important;
    font-weight: bold;
}

/* Pseudo-elemento per il riflesso */
.shine-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}




#dharsena_logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}



@keyframes shine {
    0% {
        left: -75%;
    }

    20% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

// FINE BOTTONE STILE



@media screen and (max-width: 900px) {
    #prima_foto {
        display: none;
    }
}


#seconda_immagine,
#seconda_immagine img {
    width: 100%;
}

.logoo,
.menu {
    fill: var(--pink);
}


.center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

h2,
p,
span,
h1,
ul {
    margin: 0px;
}

picture,
picture img {
    display: block;
}


#dharsena_logo {
    width: 70%;
    overflow: visible;
    height: auto;
}

:root {
    --header-bg: #3a433a;
    --old-green: #515B51;
    --menu-top: #53A59B;
    --darkpurple: #3F3951;
    --pink: #EDB9DA;
    --azzurro: #53A59B;
    --crema: #FFEEDB;
    --dark: #201e23;
}

body {
    margin: 0;
    font-family: sans-serif;
    background-color: var(--header-bg);
}

header {
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: var(--header-bg);
    padding: 30px;
    position: relative;
    z-index: 2;
}

#menu-panel {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    overflow: hidden;
    background: linear-gradient(to top, var(--header-bg), var(--azzurro));
    transition: height 0.4s ease;
    z-index: 1;
    margin-bottom: -1px;
    justify-content: center;
    display: flex;
    align-items: center;
}


header svg {
    width: 60px;
    cursor: pointer;
    transition: transform 0.4s ease;
    overflow: visible;
}

#long {
    opacity: 1;
    transition: opacity 0.4s ease;
}

#short_l,
#short_r {
    transition: all 0.4s ease;
    transform-origin: 31% 99%;

}



.menu-open header svg {
    transform: rotate(90deg) translatey(15px) translatex(-7px);
}

.menu-open #long {
    opacity: 0;
}

.menu-open #short_l {
    transform: rotate(45deg);
}

.menu-open #short_r {
    transform: rotate(-45deg);
}



.menu-open #menu-panel {
    height: 40vh;
}

#menu-panel ul {
    list-style: none;
    align-items: center;
    padding: 0px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#menu-panel a {
    color:  var(--pink);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    font-family: monospace;
    text-transform: lowercase;
    letter-spacing: 5px;
}


#countdown-section {
    position: relative;
    overflow: hidden;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #333834;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    mix-blend-mode: lighten;
}

#countdown {
    position: relative;
    z-index: 1;
    font-size: 1.5em;
    font-weight: bold;
    font-family: monospace;
    letter-spacing: 3px;
}

.statue {
    z-index: 2;
}

.lago {
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin-bottom: -20%;
    opacity: 0.4;
}


.cover-slider-wrapper {
    overflow-x: scroll;
    display: flex;
    flex-direction: row;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-top: 2rem;
    position: relative;
}

.cover-slide {
    flex: 0 0 100%;
    max-width: 300px;
    margin: 0px -40px;
    scroll-snap-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.3;
    transform: scale(0.7);
    cursor: pointer;
}

.cover-slide.center {
    opacity: 1;
    transform: scale(1);
    z-index: 9;
}

.cover-slide .image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
}

.cover-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cover-slide h2,
.cover-slide p {
    text-align: center;
    margin: 0.2rem 0;
    font-size: 0.9rem;
    color: var(--pink);
}

.cover-slide h2 {
    margin-top: 10px;
}

.cover-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slider-spacer {
    flex: 0 0 50%;
}

