@import url('https://fonts.googleapis.com/css2?family=Pirata+One&family=Story+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');


body{
    margin: 0;    
    background-image: url(b9d1eeca-24e8-494c-bd3f-fba59170272f.png);
    background-size: cover;
}



.flex1-1{
    display: flex;
    justify-content: space-evenly;
}


.menu-container, .ham{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 15px;
    padding: 5px;
    
}
.ham{
    justify-content: center;
    padding-right: 3dvw;
    display: flex;
}

.menu-items{
    list-style: none;
    display: none;
    font-size: 6dvh;
   font-family: "DM Serif Text", serif;
}

.menu-link{
    font-size: clamp(1.5dvh, 0.5em, 1em);
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.logo{
    max-height: 5dvh;
}

label{
    color: white;
}

#menu-toggle {
    display: none;
}

.label-toggle {
    padding-top: 5dvh;
    width: 35px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.label-toggle span {
    display: block;
    height: 4px;
    background: white;
    border-radius: 3px;
    transition: 0.4s;
}



nav:has(#menu-toggle:checked) .menu-items{
    display: flex;
}



















.footer{
    background-color: rgba(128,128,128,0.2);
    margin-right: 1dvw;
    margin-left: 1dvw;
    border-radius: 25px;
    max-width: 100%;

}

.flex1-1{
    display: flex;
    justify-content: space-evenly;
}

.footer_link{
    display: flex;
    flex-direction: column;
    padding-top: 5dvh;
    gap: 2dvh;
    
}

.f_text{
    display: none;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.footer_style{
    text-decoration: none;
    font-size: clamp(1em, 1dvh, 3em);
    text-align: center;
}

.big_logo{
    max-height: 15dvh;
    padding-top: 5dvh;
}

.name{
    margin: 0;
}

.name_style{
    margin: 0;
    text-align: center;
    color: white;
    padding: 1dvh;
    padding-bottom: 2dvh;
}

.gold {
  font-weight: bold;
  background: linear-gradient(45deg, #d4af37, #f7e98e, #b8860b, #f7e98e, #d4af37);
  -webkit-background-clip: text;
  color: transparent;
}


@media (min-width: 786px){

    nav{
        background-color: rgba(52, 52, 52, 0.2);
        margin-right:30dvw;
        margin-left:30dvw;
        margin-top: 2dvh;
        margin-bottom: 2dvh;
        border-radius: 45px;
        z-index: 1000;
        opacity: 0;
        transform: translateY(-30px);
        animation: apparition 0.8s 1.2s ease-out forwards;
    }
    .menu-container{
        flex-direction: row;
        font-size: 2em;
        justify-content: space-evenly;
        max-height: 1dvh;
        padding: 25px;
    }

    .menu-items{
        display: flex;
        
    }

    .menu-link:hover{
         
         background-color: rgba(128, 128, 128, 0.5);
         padding: 1dvh;
         border-radius: 25px;
    }

    .logo{
        display: flex;
        max-width: 5dvh;
    }

    .ham{
        display: none;
    }



















    .flex1-1{
        display: flex;
        justify-content: space-evenly;
}

    .footer_link{
        display: flex;
        flex-direction: row;
        padding-top: 5dvh;
        gap: 10dvh;
        
}

    .footer_link div{
        display: flex;
        flex-direction: column;
    }

    .f_text{
        padding-top: 3dvh;
        justify-content: center;
        text-decoration: none;
        color: white;
        display: flex;
    }

    .f_text:hover{
        color: gray;
    }

    .footer_style{
        text-decoration: none;
        font-size: 2dvw
}

    .big_logo{
        max-height: clamp(15dvh, 30dvh, 40dvh);
        width: 100%;
        height: 100%;
        
}

    .name{
        margin: 0;
}

    .name_style{
        margin: 0;
        text-align: center;
        color: white;
        padding: 1dvh;
        padding-bottom: 2dvh;
}





    
}
@keyframes apparition {
    100%{
        opacity: 1;
        transform: none;
    }    
}