@charset "utf-8";
/* CSS Document */
html{
	height : 100%;
	width : 100%;
    scroll-snap-type: y mandatory;
}
:root{
	--bg: #111111; /* Deep Navy chosen */
	--text: #F5F5F5;
	--primary: #9ADFDC;
	--secondary: #475267;
	--accent: #F34B06;
	--dark: #090E0E;
}
a {
	color: #6be7e1; /* Unvisited link */
}
a:visited {
	color: #6be7e1; /* Visited link */
}
a:hover {
	color: #F5F5F5; /* Hovered link */
}
a:active {
	color: orange; /* Active link */
}


body{
	font-family: Arial, Helvetica, sans-serif;
	background-color: var(--bg);
	color: var(--text);
	margin: 0;
	padding: 0;
	width: 100vw;
}
header {
	font-family: 'Orbitron', sans-serif;
	background: linear-gradient(90deg, rgba(0,0,0,0.3), rgba(9,14,14,0.6));
	color: var(--text);
	padding: 28px 12px;
	text-align: center;
}
footer {
	background-color:black;
	color: rgb(199, 191, 191);
	padding: 15px;
	margin-top: 15px;
	color:whitesmoke;
}
main{
	padding: 18px 20px;
	max-width: 1100px;
	margin: 0 auto;
}

section{
	height: 100vh;
    scroll-snap-align: start;
}







h1{
	text-align: center;
	font-family: 'Orbitron', sans-serif;
	color: var(--text);
	margin: 0.5rem 0;
    font-size: 6.5vw;
}
h2{
	font-family: 'Orbitron', sans-serif;
	margin: 0.6rem 0 0.3rem 0;
	color: var(--text);
	/* Use a responsive size for h2 so it's readable across devices */
	font-size: clamp(1.2rem, 4vw, 1.8rem);
}

h3{
	font-family: 'Orbitron', sans-serif;
	margin: 0.4rem 0 0.2rem 0;
	color: var(--text);
    font-size: 3.5vw;
}
p{
	color: var(--text);
	line-height: 1.5;
    font-size: 1.8vw;
}
.linkmainslide{
	padding-left: 20px;
    font-size: 2vw;
    text-align: center;
    
	color
}





.centered{
    text-align: center;
}


.largedevices{
	display: none;
}
.smalldevices{
	display: none;
}


@media screen and (min-width: 800px){
	.largedevices{
		display: block;
	}
	.smalldevices{
		display: none;
	}
}

@media screen and (max-width: 799px){
	.largedevices{
		display: none;
	}
	.smalldevices{
		display: block;
	}
	h1{
		font-size: 8vw;
	}
	h3{
		font-size: 5vw;
	}
	p{
		font-size: 3.5vw;
	}
	.linkmainslide{
		font-size: 10vw;
	}
}


.indexpage{
	background: url("ASSETS/Background-for-index.jpg");
	background-repeat: no-repeat;
    background-size: 100vh auto;
}



.Updatesection{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 30% auto;
	background-color:#2c3444;
}

.updategrid{
	display: grid;
	width: 95%;
	margin: 0 auto;
	gap: 20px;
	padding: 20px;
	grid-template-columns: repeat(3, 1fr);
}

.updatebox{
	background-color: var(--dark);
	border-radius: 15px;
	padding: 10px;
	color: var(--text);
}

/* Small screens: show 2 update boxes per row */
@media screen and (max-width: 1200px){
	.updategrid{
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Medium screens: show 3 update boxes per row */
@media screen and (min-width: 1200px){
	.updategrid{
		grid-template-columns: repeat(3, 1fr);
	}
}












.DNDsection{
	background: url("ASSETS/Screenshot\ 2025-12-09\ 134246.png");
	background-repeat: no-repeat;
    background-position: center center;
    background-size: 30% auto;
    background-color: black;
}


.container{
	display: flex;
	width: 90vw;
	padding-left: 5%;
	padding-right: 5%;
	align-items: center;
	height: 85vh;
	flex-wrap: nowrap;
	justify-content: center;
}

.panel{
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
	height: 75vh;
	border-radius: 50px;
	color: white;
	cursor: pointer;
	flex: 0.5;
	margin: 10px;
	position: relative;
	transition: all 0.7s ease-in;
	overflow: hidden;
}

.panel.active{
	flex: 5;
}



.textbox{
	background: black;
	color: orange !important; 
	padding-left: 5%;
	align-self: center;
	justify-self: center;
	min-width: none;
	max-width: 90%;
}

.textbox h3{
	position: absolute;
	background: black;
	color: white;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	padding: 5px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	width: 90%;
	max-width: 600px;
	text-align: center;
	font-size: clamp(1rem, 2.5vw, 2.5rem);
}
.textbox p{
	position: absolute;
	background: black;
	color: white;
	top: 60%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	padding: 10px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-height: 35%;
	overflow-y: auto;
	width: 90%;
	max-width: 600px;
}

@media screen and (min-width: 1000px){
	.textbox p{
		font-size: 1.2rem;
	}
}

.panel.active{
	flex: 5;
}

.panel.active .textbox h3{
	opacity: 1;
	transition: opacity 0.3s ease-in 0.4s;
}
.panel.active .textbox p{
	opacity: 1;
	transition: opacity 0.3s ease-in 0.4s;
}











.moviegrid{
	display: grid;
	grid-template-columns: 50% 50%;
	width: 92%;
	gap: 4%;
	padding-right: 2%;
	margin: 0 auto;
}


.moviebox{
	display: grid;
	grid-template-columns: 30% 70%;
	place-items: center;
	background-color: var(--dark);
	width: 100%;
	border-radius: 15px;
	padding: 10px;
	color: var(--text);
}



/* Small screens: show 2 movie boxes per row */
@media screen and (max-width: 1200px){
	.moviegrid{
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Large screens: show 3 columns in 2 rows */
@media screen and (min-width: 1201px){
	.moviegrid{
		grid-template-columns: repeat(3, 1fr);
	}
	.moviebox h3{
		font-size: clamp(1rem, 2vw, 1.5rem);
	}
	.moviebox p{
		font-size: clamp(0.75rem, 1.1vw, 0.95rem);
	}
}