/* CALLING DL FONTS */
@font-face {
    font-family: 'GODOFWAR';
    src: url(/assets/fonts/GODOFWAR.TTF);
}

@font-face {
    font-family: 'Black Mustang';
    src: url(/assets/fonts/Black\ Mustang.ttf);
}


/* BROAD EDITING */
*{
    font-family: 'GODOFWAR';
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body{
    background-color: black;
    color: coral;
}

a{
    text-decoration: none;
    color: coral;
}

/* TOP EDITING */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    z-index: 10;
}

nav{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: 50px;
}

/* LOGO EDITING */
.logo{
    display: flex;
    flex-direction: row;
    background-color: goldenrod;
    border: 3px solid olive;
    border-radius: 5px;
    margin: 10px;
    padding: 5px;
}

.logo-image{
    width: 50px;
    height: 50px;
    border: 3px solid olive;
    border-radius: 50%;
    margin-left: 10px;
}

.logo-title{
    margin-top: 22px;
    margin-left: 10px;
    margin-right: 10px;
    color: midnightblue;
}

/*SECTION EDITING*/
section{
    height: 100vh;
    padding-top: 100px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

#home{
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 0;
}


#members{
    position: relative;
    overflow: hidden;
}

#info{
    position: relative;
}

/* HOME SECTION */
.bgvid{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    z-index: -1;
}

.group-name{
    font-size: 75px;
    color: white;
    margin-top: 90px;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.s1{
    color: gold;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

/* COMPANION SECTION */
.bgvid2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    z-index: -1;
}

.s2{
    color: white;
    margin: 20px;
    font-size: 40px;
    z-index: 1;
}

.cont{
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: aqua;
    z-index: 1;
    margin-left: 30px;
    margin-right: 30px;
    justify-content: center;
}

.box1{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid goldenrod;
    min-height: 300px;
    max-width: 150px;
    padding: 10px;
}

.box1 img{
    border: 5px solid aqua;
    border-radius: 5px;
    margin-top: 20px;
    width: 120px;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    margin-bottom: 50px;
}

.box1:hover{
    border: 3px solid goldenrod;
    filter: grayscale(0%);
    transform: scale(1.2);
}

.box1 img:hover{
    filter: grayscale(0%);
}

/* INFORMATION SECTION */
.s3vid{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    z-index: -2;
}

.s3{
    color: white;
    margin: 20px;
    font-size: 40px;
    z-index: 1;
}


.member{
    min-height: 50vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 20px;
    border: 10px solid goldenrod;
    
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;

}

.member img{
    height: 350px;
    width: 350px;
    object-fit: cover;
    border: 5px solid goldenrod;
}

.member-info h2{
    color: aqua;
    margin-bottom: 5px;
    font-size: 24px;
}

.role{
    font-style: italic;
    color: grey;
    margin-bottom: 10px;
    
}

.contact{
    border: 3px solid goldenrod;
    color: aqua;
    padding: 5px;
}

footer{
    text-align: center;
    padding-bottom: 30px;
}
