
@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');

body{
    background-image: url(Assets/WebsiteBG.png);
    padding: 0;
	margin-left: 2em;
	margin-right: 2em;
	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: 'Russo One', 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;
	margin-bottom: 50px;
}


/* Nav bar ^^^^^,  image slider vvvvv* */

.PicGrid{
    display: grid;
    grid-template-columns: 1fr 1fr ;
    column-gap: 30px;
    row-gap: 30px;
	margin-top:10px;
}

@media (max-width:800px) {
    .PicGrid{
        grid-template-columns: 1fr;
    }
}

@media (min-width:1400px) {
    .PicGrid{
        grid-template-columns: 1fr 1fr;
    }
}

.pic{
    position:relative;
}


.thumbnail{
    width:80%;
	margin-left:10%;
    border-radius: 13px;
	border:2px solid #FF0000;
	transition: 250ms;
}

.thumbnail2{
    width:80%;
	margin-left:5%;
	transition: 250ms;
}

.thumbnail3{
	transition: 250ms;
}



/*  Grid style (genral styles) ^^^^^^, Card style (unit styles) vvvvvvvv */



.socials{
	width:80%;
	background-color: #00000000;
	margin:auto;
	margin-top: 20px;
}

.socials img{
	width:10%;
}

.socials img:hover{
	cursor: pointer;
	transform: scale(105%);
}











/* styling for form */

.CM{
	color:#ff0000;
	font-family: 'Russo One', sans-serif;
	text-align: center;
	margin:auto;
	font-size: 6vw;
}
.contact-form {
	width:50%;
	margin:auto;
	display: flex;
	flex-direction: column;
}
.contact-form label {
	margin: 10px 0 5px;
	color:#ff0000;
	font-family: 'Russo One', sans-serif;
	font-size: 2.5vw;
}
.contact-form input, .contact-form select, .contact-form textarea {
	padding: 8px;
	margin-bottom: 10px;
	border: 1px solid #ff0000;
	border-radius: 4px;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: #000000; /* Blue border when active (change to any color) */
    outline: none; /* Remove default browser outline */
    box-shadow: 0 0 10px rgb(255, 0, 0); /* Optional: Add a subtle glow */
}

.contact-form button {
	padding: 10px;
	background-color: #ff0000;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: 250ms;
	font-family: 'Russo One', sans-serif;
}
.contact-form button:hover {
	background-color: #000000;
	transform: scale(1.02);
}

