
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

@font-face {
    font-family: 'Daggersquare';
    src: url(WRLA/Assets/WRLAfonts/DAGGERSQUARE.otf);
}

@font-face {
    font-family: 'RussoOne';
    src: url(Assets/Russo_One.ttf);
}

body{
    background-image: url(Assets/WebsiteBG.png);
    padding: 0;
	margin:auto;
	font-size: 24px;
}


/* General ^^^^^, Navbar vvvv */

header{
    height:90px;
    position: fixed;
    top:0; left:0; right:0;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 8px 15px #FF0000;
    display:flex;
    align-items:center;
    justify-content: space-between;
    z-index: 1000;
    font-family: 'RussoOne', sans-serif;
}

nav {
	position: fixed;
	z-index: 10;
	left: 0;
	right: 0;
	top: 0;
	padding: 0 1%;
	height: 100px;
	background-color: #000000;
}

nav .logo {
	float: left;
	width: 25%;
	height: 100%;
	display: flex;
	align-items: center;
	color: #fff;
}

nav .links {
	float: right;
	padding: 0;
	margin: 0;
	width: 75%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.on{
	color:#FF0000;
}

.off{
	color:white;
}

nav .links li {
	list-style: none;
}
nav .links a {
	display: block;
	padding: 1.03em;
	font-size: 30px;
	text-decoration: none;
}

nav .links a:hover{
    color:#FF0000;
    background-color: #141414;
}


#nav-toggle {
	position: absolute;
	top: -100px;
}
nav .icon-burger {
	display: none;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}
nav .icon-burger .line {
	width: 30px;
	height: 5px;
	background-color: #fff;
	margin: 5px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}
@media screen and (max-width: 970px) {
	nav .logo {
		float: none;
		width: auto;
		justify-content: center;
	}
	nav .links {
		float: none;
		position: fixed;
		z-index: 9;
		left: 0;
		right: 0;
		top: 100px;
		bottom: 100%;
		width: auto;
		height: auto;
		flex-direction: column;
		justify-content: space-evenly;
		background-color: rgb(0, 0, 0);
		overflow: hidden;
		box-sizing: border-box;
		transition: all .5s ease-in-out;
	}
	nav .links a {
		font-size: 20px;
	}
	nav .links a:hover{
		color:#FF0000;;
		background-color: #14141400;
	}
	nav :checked ~ .links {
		bottom: 0;
	}
	nav .icon-burger {
		display: block;
	}
	nav :checked ~ .icon-burger .line:nth-child(1) {
		transform: translateY(10px) rotate(225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(3) {
		transform: translateY(-10px) rotate(-225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(2) {
		opacity: 0;
	}
	
}


.Cover{
    background-color: rgb(95, 95, 95);
    top:0px;
    left:0px;
    right:0px;
    height:92px;
}

a{
	text-decoration: none;
}


/* Nav bar ^^^^^,  image slider vvvvv* */


.pic{
    position:relative;
}


.thumbnail{
    width:100%;
    border-radius: 13px;
	border:2px solid #FF0000;
	transition: 250ms;
    cursor: pointer;
}

.thumbnail2{
    width:100%;
	transition: 250ms;
}

.block1{
    margin-top: 6vh;
    width: 80vw;
    height:45vw;
    background-image: url(Assets/DP/DPDesc1.png);
    background-color: #a0a0a000;
    background-size: contain;
    background-repeat: no-repeat;
	transition: 250ms;
    margin-left: auto;
    margin-right: auto;
    border-radius: 13px;
	border:2px solid #ffffff;
    cursor: pointer;
}

.block1:hover{
    background-image: url(Assets/DP/DPDesc2.png);
    border-radius: 13px;
	border:2px solid #FF0000;
}

.Bio1{
    color:#FF0000;
    font-family:'RussoOne', sans-serif;
    font-size: 40px;
    text-align: center;
}


.PicGrid {
    display: grid;
    grid-template-columns: 1fr; 
    justify-content: center; 
    margin: 0 auto; 
    width: 70vw; 
}

.pic{
    position:relative;
    width:70vw;
}





/*  Grid style (genral styles) ^^^^^^, Card style (unit styles) vvvvvvvv */



.box .popup{
    position:fixed;
    top:0; left:0;
    background:rgba(0, 0, 0, 0.9);
    height: 100%;
    width:100%;
    z-index: 102;
    display:none;
}

.box .popup span{
    position:absolute;
    top:100px; right:10px;
    font-size:60px;
    font-weight: bolder;
    color:#fff;
    cursor:pointer;
    z-index: inherit;
}

.box .popup span:hover{
    color:#FF0000;
	transform: scale(1.01);
    
}

.box .popup img{
position: absolute;
Top:50%; Left:50%;
transform: translate(-50%, -50%);
border:3px solid  #FF0000;
border-radius: 5px;
width:700px;
object-fit:cover;
}

@media (max-width:820px){
    .box .popup img{
        width:87%;
    }
}

.thumbnail:hover{
	box-shadow: 0 0 15px #FF0000;
	transform: scale(1.01);
}

.deck{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    margin:auto;
	column-gap: 2vw;
	row-gap: 2vw;
	width:60vw;
	margin-bottom: 0px;
    background-color: #1D1D1D;
    padding: 3vw 5vw 6vw 5vw;
}


.card{
    display:flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
	align-items: center;
    background-color: #141414;
    font-size: 3vw;
    color: white;
    box-shadow: #ffb500 0px 0.15rem 0.5rem,rgba(0, 225, 255, 0.1) 0px 0.175rem 0.75rem;
    height:13vw;
    width:100%;
    border-radius: 14px;
    transition: all 200ms;
    overflow:hidden;
    background-size: cover;
    background-position: center;
    background-repeat: none;
	font-family: 'Daggersquare', sans-serif;
	cursor: pointer;
}

.card:hover{
    box-shadow: #ffb500 0px 0.35rem 1.175rem,rgba(0, 225, 255, 0.2) 0px 0.175rem 0.5rem;
    transform:translate(-1px) scale(1.07);
    color:#ffffff;
    background-color: #ffb500;
}


.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}



/* Video Grid */
.VidGrid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 3vw;
    row-gap: 3vw;
    width: 61%;
    margin:auto ;
	padding: 3vw 5vw 4vw 5vw;
	background-color: #1D1D1D;
}

.Prev {
    cursor: pointer;
}

.vid {
    position: relative;
    border: 4px solid #ffffff;
}

.vid:hover {
    border-color: #FFB500;
    box-shadow: 0px 0px 5px 2px #FFB500;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */

/* Mobile Adjustments */
@media screen and (max-width: 1100px) {
    .VidGrid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {


    .Videos, .Pics {
        height: 35px;
    }

    .VideosImg, .PicsImg {
        height: 30px;
    }

    .VidGrid {
        column-gap: 2vw;
        row-gap: 2vw;
        width: 61%;
    margin:auto ;
	padding: 3vw 5vw 6vw 5vw;
	background-color: #1D1D1D;
    }

}

@media screen and (max-width: 480px) {

    .Videos, .Pics {
        height: 30px;
    }

    .VideosImg, .PicsImg {
        height: 25px;
    }

    .VidGrid {
        column-gap: 1vw;
        row-gap: 1vw;
        width: 61%;
    margin:auto ;
	padding: 3vw 5vw 6vw 5vw;
	background-color: #1D1D1D;
    }
}