:root{
    --very-yellow: #FBB03B;
    --very-turquoise: #00A99D;
    --very-red: #ED1C24;
    --very-orange: #F15A24;
    --very-white: #F2F2F2;
    --very-beige: #FFF3E3;
    --very-black: #1A1A1A;
}

body, html{
    margin: 0;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: Helvetica, sans-serif;
    scroll-snap-type: y mandatory;
}

html{
    overflow-x: hidden;
    background-color: var(--very-beige);
}


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

.slide{
    width: 92%;
    height: 90%;
    margin: 0vh 10vw 0vh 10vw;
    scroll-snap-align: center;
    background-color: var(--very-beige);
}

.landing{
    background-color: var(--very-beige);
    scroll-snap-align: center !important;
    width: 100vw;
    height: 100vh;
}

.landing h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7vh;
    text-align: center;
    font-family: Helvetica;
    font-weight: 300;
    font-style: italic;
}

.about{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.text{
    width: 40%;
    font-size: 20pt;
    padding-left: 2vw;
    line-height: 30pt;
}

@media only screen and (max-width: 1012px){
    .about{
        flex-direction: column;
        justify-content: center;
    }

    .text{
        width: 100%;
        text-align: center;
        font-size: 18pt;
        max-width: 88vw;
        padding-left: 0;
    }
}

.text p{
    line-height: 20pt;
    letter-spacing: -1pt;
}

.projects{
    background-color: var(--very-white);
    padding-top: 30px;
}

.content{
    background-color: var(--very-white);
    position: relative;
    min-height: 90vh;
    overflow-x: hidden;
}

.content h2{
    font-size: 80pt;
    font-family: Gonzaga-Trial, sans-serif;
    margin-bottom: 0px;
}

.article{
    width: 500px;
    height: 300px;
    background-color: var(--very-orange);
    border-radius: 50px 50px 50px 0px;
    contain: content;
    transition: 0.3s;
    object-position: 100% center;
}

.image-track{
    display: flex;
    flex-direction: row;
    gap: 4vmin;
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translate(0%, -30%); 
    user-select: none;
}

.moretext{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -140%); 
    width: 300px;
    text-align: center;
    justify-items: center;
}

.article-title{
    width: 100%;
    height: 40px;
    background-color: var(--very-yellow);
    padding: 10px 0px 0px 20px;
}

.article:hover{
    scale: 105%;
    transition: 0.3s;
}

.article-thumb{
    background-image: url(resources/design/main.gif);
    width: 100%;
    height: 260px;
    background-size:cover ;
}

.article-end{
    width: 305px;
    height: 305px;
    background-color: var(--very-turquoise);
    border-radius: 50px 50px 50px 50px;
    contain: content;
    transition: 0.3s;
    object-position: 100% center;
}

.article-end:hover{
    scale: 105%;
    transition: 0.3s;
}

.article-end h3{
    padding: 20px 0px 0px 20px;
    font-size: 40pt;
    font-weight: 500;
    line-height: 30pt;
    font-family: Gonzaga-Trial, sans-serif;

}

.also-pages{
    width: 100%;
    height: 150px;
    background: var(--very-orange);
    position: absolute;
    top: 82%;
}

.contact{
    background-color: pink;
    display: flex;
}

.navigation{
    height: 80px;
    width: 97%;
    z-index: 200;
    position: fixed;
    top: 7%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
}

.logo{
    height: 5vh;
    background-color: #FFFFFF;
    padding: 1vh;
    border: 1px solid black;
}

.banner{
    width: 92vw;
    height: 30px;
    background-color: green;
    position: fixed;
    top: -100%;
    left: 4vw;
    z-index: 10000;
    text-align: center;
    font-family: "Gonzaga-Trial";
}

.glass{
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.1px);
    -webkit-backdrop-filter: blur(9.1px);
    border: 0.2px solid rgba(255, 255, 255, 0.58);
}

.button{
    font-size: 20pt;
    line-height: 20pt;
    padding-top: 10px;
    padding-left: 13px;
}

summary {
    background-color: #FFFFFF;
    color: var(--very-black);
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 20px 0px 20px 20px;
    transition: 0.3s;
    border: 1px solid black;
}

.menu p {
    background-color: #FFFFFF;
    border-radius: 20px 20px 20px 20px;
    color: var(--very-black);
    margin: 0;
    padding: 1rem;
    width: 150px;
    font-size: 18pt;
    transition: 0.3s;
    overflow: hidden;
    border: 1px solid black;
}

.menu a{
    text-decoration: none;
    color:var(--very-black);
    transition: 0.3s;
}

.menu a:hover{
    color:var(--very-orange);
    font-size: 19pt;
    transition: 0.3s;
}

.menu{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
}

summary:hover{
    padding: 11px;
    transition: 0.3s;
}

.text a{
    color:var(--very-black);
    background-color: var(--very-orange);
    padding: 15px;
    text-decoration: none;
    font-size: 16pt;
    letter-spacing: -1pt;
    border-radius: 30px;
    transition: 0.3s;
}

.text a:hover{
    padding: 20px;
    transition: 0.3s;
    color: white;
}

.gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.video-gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    z-index: 2;
}

#ig-gallery{
    background-image: url(/design/social4@2x.webp);
    width: 92%;
    height: 90%;
    background-size: cover;
}

.video-item{
    height: 700px;
    width: 400px;
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: center;
    transition: 0.3s;
    z-index: 100;
    margin: 20px;
    border-radius: 30px;
    border: 1px solid black;
    background-position: center;
    object-fit: cover;
    overflow: hidden;
    position: relative;
}

.video-item video{
    z-index: 1;
    object-fit: cover;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 400px;
    position: absolute;
}

.item{
    height: 400px;
    width: 400px;
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: center;
    transition: 0.3s;
    z-index: 100;
    margin: 20px;
    border-radius: 30px;
    border: 1px solid black;
    background-position: center;
    object-fit: cover;
    overflow: hidden;
    position: relative;
}

.item video{
    z-index: 1;
    object-fit: cover;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 400px;
    position: absolute;
}

.overlay{
    width: 100%;
    height: 100%;
    background-color: #1A1A1A;
    position: absolute;
}

.item a{
    width: 100%;
    height:100%;
    background-color: #1A1A1A;
    opacity: 0%;
    z-index: 999;
    object-fit: cover;
    overflow: hidden;
    transition: 0.3s;
}

.item a:hover{
    opacity: 30%;
    transition: 0.3s;
}

.item:nth-child(2){
    height: 400px;
    width: 550px;
}

.item:nth-child(3){
    height: 400px;
    width: 550px;
}

.item:nth-child(3){
    height: 400px;
    width: 550px;
}

.item:nth-child(4){
    height: 400px;
    width: 770px;
}

.item:nth-child(5){
    height: 400px;
    width: 770px;

}

.button{
    padding: 5px 15px 10px 15px;
    height: 20px;
    width: 160px;
    text-decoration: none;
    color: black;
    font-size: 16pt;
    font-style: italic;
    border-radius: 30px;
    transition: 0.6s;
    overflow: hidden;
    z-index: 2;
}


.item:hover .button{
    transition: 0.3s;
}

.item span{
    opacity: 0;
    transition: 2s;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -1pt;
}

.item:hover span{
    opacity: 1;
    transition: 2s;
}

.bigasstext{
    align-self: flex-end;
    width: auto;
}

.bigasstext h1{
    font-size: 20vw;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -2vw;
    line-height: 11vw;
    z-index: 300;

}

.contact-card{
    width: 50vw;
    height: 100%;
    background-color: var(--very-red);
}

.anim-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.animation{
    width: 400px;
    height: 400px;
    object-fit: cover;
    overflow: hidden;
}

.animation img{
    width: auto;
    height: auto;
}

