@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

@font-face {
    font-family: 'Norms';
url("/font/TT-Norms-Pro.ttf") format('truetype'),

}
.roboto {
    font-family: 'Roboto',sans-serif;
}


.soligant {
    font-family: "Norms", serif;
    font-weight: 300;
}


.source {
    font-family: "Source Serif 4", serif;
    font-weight: 300;
}
body{
    --l-space : 40px;
    font-family: 'Roboto',sans-serif;
    font-weight:400;
    height: 100dvh;
    height: 100vh;

    width: 100%;
    overflow: hidden;
}
.blacker {
    font-family: "Blacker", serif;
}

*{
    padding: 0;
    margin: 0;
}
.actions{
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
}
.nav{
    position:relative;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--l-space);
    z-index: 5;


}
.left{

}
.right{
    display:flex;
    gap:40px;
    justify-content: space-between;

}

.right img{
    padding-right:15px;
    padding-bottom: 5px;
    align-items: center;
    object-fit: cover;
}
a {
    color: white;
    text-decoration: none;
    font-weight:400;
    font-size:17px;
    line-height:20px;
    transition: all 0.4s ease-in-out;

}
a:hover{
    color: #8F4F35;
}
.main-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:white;
    text-align: center;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;

    .contact{
        display: flex;

        justify-content: center;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    .text-area{

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        max-width: 500px;
        padding: 20px;
        margin: 0 auto;
    }
}
h1{


    font-size: clamp(30px,5vw,70px);
    font-weight:400;
    line-height:clamp(35px,5.2vw,75px);

}
.reveal{
    animation: reveal 2s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}
p{

    font-size: clamp(16px,1.2vw,20px);
    font-weight:100;
    line-height: clamp(20px,1.3vw,25px);
    color:white;
}
a.button{
    all: unset;
    font-weight:300;
    background-color: #000000;
    color: white;
    border:none;
    padding: 13px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size:17px;
    line-height: 18px;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}
a.button:hover{
    background-color: #8F4F35;
    color: #fff;
}
.social-header{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.social-header img{
    position:relative;

}
h3{
    color: #fff;
    padding-bottom: 5px;

}

.footer{
    bottom:0;
    left:0;
    right: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
    z-index: 5;

}
.footer a{
    font-weight: 500;

}
.footer p{
    color:white;
    font-size:14px;

}
.insta-icon{
    display: flex;
    align-items: center;
    gap: 5px;

}
.insta-icon:hover{
    color: white;
    filter: invert(1);
}
.simpleslide100 {
    position: absolute;
    z-index: 0;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
}

.simpleslide100-item {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    filter:brightness(0.85);
    left: 0;
}
.bg0 {background-color: #fff;}

.bg-img1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    body{
        --l-space : 20px;
    }
}


@keyframes reveal {
    0% {
        top:0;
        opacity:0%;
        transform: translate(0,100%);
    }
    100% {
        transform: translate(0,0);
        opacity:100%;
    }
}


@media (max-width:1025px){


}