/* Global CSS ======================================================================================= */
html {
	scroll-behavior: smooth;
	overflow-y: scroll;
}

body {
	margin: 0 ;
    background-color: black; 
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed; 
}

header {
	z-index: 99;
	position: relative;
	width: 100%;
	height: 100px;
}


/* Text CSS ======================================================================================= */
h1, h2 {
	font-family: 'Courier New', Courier, monospace;
	font-size: 7rem;  
	letter-spacing: 5px;
	font-weight: 900;
	line-height: 0.75;  
	margin: 0;
	text-transform: uppercase;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h3, h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem; 
	font-weight: 600;
	line-height: 1;  
	text-transform: uppercase;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin-bottom: 0;
}

p, nav, form, a, label, input, button {
	font-family: 'Poppins', sans-serif;
	list-style: none;
	line-height: 1.6;
	font-weight: 900;
	font-size: 1.5rem; 
}

.Blue {
	background-color: #2546f0;
	padding: 5px;
}

a, a:visited, a:hover, a:active { 
	text-decoration: none; 
	color: white; 
}

/* Nav CSS ======================================================================================= */

.nav a {
	color: white;
	text-decoration: none;
}

.nav li{
	list-style-type: none;
	color: white;
	text-decoration: none;
	padding: 8px 12px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav{
	text-transform: uppercase; 
	padding: 5px;
	display:flex;
	justify-content: right;
	margin-top: 0;
}

.nav a:focus {
	outline: 2px solid #2546f0;
	outline-offset: 3px;
}

.nav li:hover,
.nav li:focus-within {
	transform: translateY(-2px);
	background-color: rgba(0,0,0,0.2);
}


@media (max-width: 1000px) {   
	.nav {
        flex-direction: column;
		align-items: flex-start;
		padding-left: 50px;
    }
	
	header {
		height: 250px;
	}
	
	h1, h2 {
	font-size: 4rem;  
}
}	

/* Column / Card CSS ============================================================*/

.MainColumnWrap {
	flex-wrap: wrap;
	z-index: 25;
	position: relative;
	margin-top: -25px;
	height: auto;
	display: flex;
}

.MainColumn {
	margin: 5px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	flex:1;
	display: flex;
    flex-direction: column;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.MainColumn:hover {
	transform: scale(1.01) translatey(-15px);
}


@media (max-width: 1000px) { /*ChatGPT Code */
    .MainColumn {
        flex: 0 0 100%; 
        margin: 10px 0;
    }
	
	.InternalGrid {
		display: block;
	}
	
} /*End of ChatGPT Code */


.ImgContainer {
	height: 25vh;
	margin: 15px;
}	

.ImgContainerTall {
	height: 40vh;
	margin: 15px;
}	

.ImgContainer img, .ImgContainerTall img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.TextContainer {
	min-height: 10vh;
	margin: 5px;
	color: white;
	padding: 10px;
	overflow: hidden;
	display: flex;
	flex-grow: 1;
    flex-direction: column; 
	text-align:center;
}	

.TextContainer h3:hover {
	background-color: #2546f0;
}

.TextContainerHero {
	min-height: 10vh;
	margin: 5px;
	color:white;
	padding: 10px;
	overflow: hidden;
	display: flex;
	flex-grow: 1;
    flex-direction: column; 
	text-align:center;
}	

@media (max-width: 768px) {   
	
	.ImgContainer {
		margin: 5px;
		align-content: center;
	}	
	
	.ImgContainerTall {
		height: 25vh;
		margin: 5px;
	}	
}	

.TextContainer h3, 
.TextContainer p {
    margin-top: 0;        
    margin-bottom: 15px;  
}

/* Form CSS ======================================================================================= */

.CheckboxRow {
    display: flex;
    align-items: center; 
    gap: 10px;           
    margin-bottom: 10px; 
}

.CheckboxRow input {
    margin: 0;           
    width: auto;  
}

.CheckboxRow label {
    margin: 0;           
}

label {
	margin-bottom: 2px;
	display: block;
}

.CustomInput:focus {
    outline: none; 
    border: 2px solid #2546f0;
    box-shadow: 0 0 8px rgba(15, 81, 50, 0.2);
    box-sizing: border-box; 
}

@media (max-width: 768px) { 
	.CheckboxRow {
		display: block;
		flex-direction: column;	
		text-align:left !important;
	}
}
/* Title Card ======================================================================================= */

.TitleCard {
	position: relative;
	margin-top: -25px;
	margin-bottom: 25px;
	height: auto;
	padding-top: calc(59.6px + 2vh);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}	

/* Footer CSS ======================================================================================= */


