@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: end;
    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{
    display: none;
}

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;
}

.main{
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
    gap: 5dvh;
    margin-left: 10dvw;
    margin-right: 10dvw;
    opacity: 0;
    transform: translateY(-30px);
    animation: apparition 0.8s 0.2s ease-out forwards;
}

.sitation{
    font-size: 6dvh;
    font-family: 'Lucida Sans';
}

.text{
    font-size: 4dvh;
}


@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.logos{
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    white-space: nowrap;
    padding-bottom: 2dvh;
    opacity: 0;
    transform: translateY(-30px);
    animation: apparition 0.8s 1s ease-out forwards;
}

.logo_slide{
    display: inline-block;
    animation: 5s slide  infinite linear;
}

.logo_slide img{
    height: 8dvh;
    margin-left: 5dvw;
}



.footer{
    background-color: rgba(128,128,128,0.2);
    margin-right: 1dvw;
    margin-left: 1dvw;
    border-radius: 25px;

}

.flex1-1{
    display: flex;
    justify-content: space-evenly;
}

.footer_link{
    display: flex;
    flex-direction: column;
    padding-top: 5dvh;
    gap: 2dvh;
    
}

.footer_style{
    text-decoration: none;
}

.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){
    .main{
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
    gap: 5dvh;
    padding-top: 10dvh;
    padding-bottom: 5dvh;
    margin-left: 20dvw;
    margin-right: 20dvw;

}

    .sitation{
    font-size: 6dvh;
}

    .text{
    font-size: 4dvh;
    max-height: 4dvh;
    
}



@keyframes apparition {
    100%{
        opacity: 1;
        transform: none;
    }    
}

    @keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

    .logos{
    margin-bottom: 4dvh;
    padding-top: 4dvh;
    border-radius: 5px;
    overflow: hidden;
    white-space: nowrap;
    background-color: rgba(128,128,128,0.1);
}

    .logo_slide{
    display: inline-block;
    animation: 5s slide  infinite linear;
}

    .logo_slide img{
    height: 16dvh;
    margin-left: 5dvw;
}
}