@charset "utf-8";
/* CSS Document */
html{
	height : 100%;
	width : 100%;
    background-size: cover;
	background-position: center;
	background-image: url(ASSETS/the_rift_beyond_banner.png);
	background-attachment: fixed;
}


a {
	color: #05d4ca; /* Unvisited link */
}
a:visited {
	color: #ce1010; /* Visited link */
}
a:hover {
	color: #F5F5F5; /* Hovered link */
}
a:active {
	color: orange; /* Active link */
}


body{
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	padding-top: 5px;
	color:#d4d4d4;
}
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;
}

@media screen and (min-width: 1200px){
	main{
		max-width: 90vw;
	}
}

section{
	padding: 18px 0;
	border-bottom: 1px solid rgba(255,255,255,0.04);
}

h1{
	text-align: center;
	font-family: 'Orbitron', sans-serif;
	color: #d4d4d4;
	font-size: clamp(2rem, 6vw, 4rem);
	margin: 0.5rem 0;
}
h2{
	font-family: 'Orbitron', sans-serif;
	margin: 0.6rem 0 0.3rem 0;
	color: #d4d4d4;
	font-size: clamp(1.2rem, 4vw, 1.8rem);
}

h3{
	font-family: 'Orbitron', sans-serif;
	margin: 0.4rem 0 0.2rem 0;
	color: #d4d4d4;
	text-align: center;
}
h4{
	font-family: 'Orbitron', sans-serif;
	color: #d4d4d4;
}
p{
	color: #d4d4d4;
	line-height: 1.5;
	padding-left: 15px;
}

.link{
	padding-left: 20px;
}


body.welcomepage a {
    text-decoration: none;
}
li{
	color: #d4d4d4;
	margin-bottom: 8px;
}

.ununderlined{
	text-decoration: none;
}

.homepagebutton {
	background-color: #9ADFDC; 
	border: none;
	color: black; 
	padding: 10px 20px; 
	text-align: center; 
	text-decoration: underline; 
	display: inline-block; 
	font-size: 2.5vw; 
	margin: 10px 2px; 
	cursor: pointer; 
	border-radius: 30px; 
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
}


.welcomepage {
    min-height: 100vh;
}


.textbox {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    min-height: 400px;
    padding: 20px;
    max-width: 90%;
    margin: auto;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0.5); 
	padding: 20px; 
	border-radius: 10px; 
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
	margin-bottom: 20px; 
}

.textbox img {
	display: flex;
	justify-content: center;
    height: auto;
    margin: auto;
}
.textbox p {
	margin-top: 15px;
	font-size: large;
}
.textbox h1 {
	text-align: center;
	font-size: 10vw;
}
.textbox h2 {
	margin-top: 15px;
	text-align: center;
}
.textbox h3 {
	margin-top: 15px;
	text-align: center;
}
.textbox b {
	font-size: 1.2rem;
}
@media screen and (max-width: 860px) {
    .textbox p, .textbox h1, .textbox h2, .textbox h3, .textbox h4 {
        font-size: 1rem;
    }
}

@media screen and (min-width: 861px) and (max-width: 1400px) {
    .textbox p {
        font-size: 1.2rem;
    }
    .textbox h1 {
        font-size: 3rem;
    }
    .textbox h2 {
        font-size: 1.8rem; 
    }
    .textbox h3 {
        font-size: 1.5rem; 
    }
    .textbox h4 {
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 1401px) {
    .textbox p {
        font-size: 1.5rem;
    }
    .textbox h1 {
        font-size: 2.5rem;
    }
    .textbox h2 {
        font-size: 2.2rem;
    }
    .textbox h3 {
        font-size: 1.8rem;
    }
    .textbox h4 {
        font-size: 1.5rem; 
    }
}




.grid-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
	justify-self: center;
	align-self: center;
    align-items: center; 
    padding: 20px; 
    box-sizing: border-box; 
}

.grid-item {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px; 
    text-align: center; 
	text-decoration: none;
}
@media screen and (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 860px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
.placeholderbox{
	display: none;
}
@media screen and (min-width: 1201px) {
	.placeholderbox{
		display: block;
	}
}

.aboutusgrid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-items: center;
	align-items: center;
	max-width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 1400px) {
	.aboutusgrid {
		grid-template-columns: repeat(2, 1fr);
	}
}


.pastseasonsgrid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.textboxpastseasons {
	width: 80%;
	background-color: rgba(0, 0, 0, 0.7); 
	padding: 20px; 
	border-radius: 10px; 
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
	margin-bottom: 20px; 
	justify-self: center;
	margin-left: 5%;
}
@media screen and (max-width:1400px) {
	.pastseasonsgrid {
		grid-template-columns: repeat(1, 1fr);
	}
	.textboxpastseasons {
		width: 80%;
		margin-left: 10%;
	}
}






