@charset "UTF-8";
@font-face {
    font-family: 'Ubuntu Mono Local';
    src: url('../fonts/UbuntuMono-Regular.woff2') format('woff2'),
         url('../fonts/UbuntuMono-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
::selection {
  background: #6C5A00;
	color:#FFFFFF
}

/* Body */
body {
	font-family: 'Ubuntu Mono Local';
	background-color: #000000;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-style: normal;
	font-weight: 200;
}
/* Container */
.container {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	height: 1000px;
	background-color: #000000;
}
/* Navigation */
header {
    width: 100%;
    height: 5%;
    position: relative;
}

/* Header Background and Content Wrapper */
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Original color and border applied here */
    background-color: #8E8E00; 
     

    /* Apply the mask */
    mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
}

.header-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%; 
}
.logo {
	color: #fff;
	font-weight: bold;
	text-align: undefined;
	/*width: 20%;*/
	float: left;
	margin-top: 15px;
	margin-left: 105px;
	letter-spacing: 4px;
}
nav {
	float: right;
	width: 50%;
	text-align: right;
	margin-right: 25px;
}
header nav ul {
	list-style: none;
	float: right;
}
nav ul li {
	float: left;
	color: #FFFFFF;
	font-size: 14px;
	text-align: left;
	margin-right: 25px;
	letter-spacing: 2px;
	font-weight: bold;
	transition: all 0.3s linear;
}
ul li a {
	color: #FFFFFF;
	text-decoration: none;
}
ul li:hover a {
	color: #2C9AB7;
}
.hero_header {
	color: #FFFFFF;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 4px;
    z-index: 2; /* Ensure the text is above the iframe */
    position: relative; /* Ensure the text is above the iframe */
}
/* Hero Section */
.hero {
	background-color: #000000;
	padding-top: 150px;
	padding-bottom: 150px;
    /* NEW STYLES FOR IFRAME BACKGROUND */
    position: relative; /* Establish positioning context for the iframe */
}

/* Styles for the Iframe Background */
.hero-background-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Position it below the content (default content z-index is higher) */
    pointer-events: none; /* Make content behind the iframe interactive */
}

.light {
	font-weight: bold;
	color: #717070;
}
.tagline {
	text-align: center;
	color: #FFFFFF;
	margin-top: 4px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
    z-index: 2; /* Ensure the text is above the iframe */
    position: relative; /* Ensure the text is above the iframe */
}
/* About Section */
.text_column {
	text-align: center;
	font-weight: lighter;
	line-height: 25px;
	padding-left: 5%;
	padding-right: 5%;
	color: #A3A3A3;
}
/* Update the existing .about rule */
.about {
	/* REMOVE background-color: #222222; */
	/* REMOVE all mask-image properties */
	/*padding-top: 35px;*/
	
	/* Change back to display: block for easier sizing */
	display: block; 
	margin-top: 0px;
    width: 100%;
    /* ADD: Positioning context for the background element */
    position: relative; 
	float: center;
}

/* NEW RULE: .about-background */
.about-background {
    /* Set the background color here */
    background-color: #101010; 
    
    /* Make it fill the entire .about section */
    position: absolute;
    width: 100%;
    height: 100%;
    
    /* Apply the mask to this layer only */
    mask-image: linear-gradient(to right, 
        transparent 0%, 
        white 10%, 
        white 90%, 
        transparent 100%);
    -webkit-mask-image: linear-gradient(to right, 
        transparent 0%, 
        white 5%, 
        white 95%, 
        transparent 100%);
}

/* NEW RULE: .about-content-wrapper */
.about-content-wrapper {
    /* Ensure content sits above the background */
    position: relative; 
    z-index: 2; /* Place it above the background (which is z-index 1 by default) */
	text-align: center;
    
    /* Replicate the padding removed from .about */
    padding-bottom: 35px; /* The padding the content needs */
	padding-top: 35px;
    
    /* FIX: Clearfix applied to .about section still needed for inner elements */
    width: 100%; 
    display: inline-block;
}
/* Ensure the text columns are inside the new wrapper */
.about .about-content-wrapper::after {
    content: "";
    display: table;
    clear: both;
}


/* Stats Gallery */
.stats {
	color: #A3A3A3;
	margin-bottom: 5px;
}

.gallery {
	clear: both;
	display: block;
	width: 100%;
	top:-35px;
	padding-bottom: 35px;
	padding-top: 0px; 
	/* FIX 1: Remove negative margin that causes overlap/banding */
	margin-top: 0px; 
	margin-bottom: 0px;
    position: relative; 
}

/* FIX: Clearfix applied to .gallery section (this is still needed) */
.gallery::after {
    content: "";
    display: table;
    clear: both;
}

/* In Corax.css, update the .gallery-background rule */
.gallery-background {
    background-color: #101010; 
    position: absolute;
    width: 100%;
    top: 35px;
    left: 0;

    /* FIX 2: Add the 35px padding-bottom to the height of the background */
    height: calc(100% + 35px); 

    /* The mask properties remain the same */
    mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
}

/* NEW RULE: .gallery-content-wrapper */
.gallery-content-wrapper {
    /* Ensure content sits above the background */
    position: relative; 
    z-index: 2; 
    width: 100%; 
    display: block; 
}

/* FIX: Clearfix applied to .gallery section */
.gallery::after {
    content: "";
    display: table;
    clear: both;
}

.thumbnail {
	width: 25%;
	text-align: center;
	float: left;
	margin-top: 35px;
}
.gallery .thumbnail h4 {
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #FFFF00;
}
.gallery .thumbnail p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #A3A3A3;
}
/* Parallax Section */
/* Parallax Section */
/* Update .banner */
.banner {
	/* REMOVED background-color, background-image, background-attachment, etc. */
    height: 400px; 
    position: relative; 
}
/* NEW .banner-background */
.banner-background {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Moved background properties here */
	background-color: #101010;
	background-image: url(../img/parallax.png);
	background-attachment: static;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;

    /* Apply the mask */
    mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
}
/* NEW .banner-content-wrapper */
.banner-content-wrapper {
    position: relative; 
    z-index: 2; 
    height: 400px;
}
/* The text content needs the height and alignment of the wrapper */
.parallax {
	color: #FFFFFF;
	text-align: center;
	padding-right: 00px;
	padding-top: 5%; /* Kept the vertical padding */
	letter-spacing: 2px;
	margin-top: 0px;
    position: relative; /* Ensure it stays above the mask */
    z-index: 3;
}
.parallax_description {
    /* ... existing styles ... */
    position: relative; /* Ensure it stays above the mask */
    z-index: 3;
}

/* More info (Footer) */
/* Update footer */
footer {
	/* REMOVED background-color */
	top: 35px;
	padding-bottom: 35px;
    display: block; 
    position: relative;
}
footer::after {
    content: "";
    display: table;
    clear: both;
}
/* NEW .footer-background */
.footer-background {
    position: absolute;
	border-top: 5px solid #343400;
    top: 0;
    left: 0;
    width: 100%;
    /* Need to account for padding-bottom: 35px */
    height: calc(100%); 
    
    /* Set background to white */
	background-color: #101010;
    
    /* Apply the mask */
    mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
}
/* NEW .footer-content-wrapper */
.footer-content-wrapper {
    position: relative; 
    z-index: 2; 
    /* Move the original padding-top here */
    padding-top: 30px; 
}

/* Update children of footer */
.footer_column {
	width: 50%;
	text-align: center;
	/* REMOVED padding-top: 30px; */
	float: left;
}
/* The content inside the footer must not have its own white background */
footer .footer_column p {
	color: #A3A3A3;
}
footer .footer_column h3 {
	color: #FFFF00
}

.cards {
	width: 100%;
	height: auto;
	max-width: 400px;
	max-height: 200px;
}
footer .footer_column p {
	padding-left: 30px;
	padding-right: 30px;
	text-align: center;
	line-height: 25px;
	font-weight: lighter;
	margin-left: 20px;
	margin-right: 20px;
}
.button {
	width: 200px;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #FFFF00;
	color: #FFFF00;
	transition: all 0.3s linear;
	
}
a {
	text-decoration: none;
}
.button:hover {
	background-color: #FFFF00;
	border: 3px solid #FFFF00;
	color: #000000;
	cursor: pointer;
}
/* Footer Banner Section */
.footer_banner {
	/* Removed original background styles */
	margin-bottom: 0px;
    position: relative;
}

.footer_banner-background {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    /* Covers the 60px top + 60px bottom padding */
    height: calc(100% + 120px); 
    
    /* Original background properties */
	background-color: #101010; 
	background-repeat: repeat;
    
    /* Apply the mask */
    mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
}

.footer_banner-content-wrapper {
    position: relative; 
    z-index: 2; 
    /* Moved the original padding here */
	padding-top: 60px;
	padding-bottom: 60PX;
}


/* Copyright Section */
.copyright {
	/* Removed original padding and background color */
    position: relative;
	text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
	top: 90px;
}

.copyright-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Covers the 20px top + 20px bottom padding */
    height: calc(100% + 40px); 
	border-top: 5px solid #343400;
    
    /* Original background color: dark olive/yellow */
	background-color: #848400; 

    /* Apply the mask */
    mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, white 5%, white 95%, transparent 100%);
}

.copyright-content-wrapper {
    position: relative; 
    z-index: 2; 
    /* Moved the original padding here */
	padding-top: 20px;
	padding-bottom: 20px;
	top: 20px;
}
footer {
	/*display: inline-block;*//*DONT DO THIS! LOOKS BAD ON ZOOMED OUT DPIS!*/
}
.hidden {
	display: none;
}


.custom-tooltip {
    display: none; /*Hide by default*/
    position: fixed; 
    z-index: 9999; /*Renders on top of everything*/
    white-space: pre; /*Preserves the line breaks*/
    background-color: #101010;
    color: #FFFF00;
    padding: 10px 15px;
    border-radius: 4px;
	border: 1px solid #FFFF00;
    font-size: 14px;
    line-height: 1.4;
    pointer-events: none; /*Prevent mouse event interception*/
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
    font-family: 'Ubuntu Mono Local';
}

/* Style for when the tooltip is active (JS will add this class) */
.custom-tooltip.visible {
    opacity: 1;
    display: block; /* Make sure it's visible when opacity is 1 */
}

/* Mobile */
@media (max-width: 480px) {
.logo {
	width: 100%;
	text-align: center;
	margin-top: 13px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.container header nav {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	display: none;
}
header nav ul {
}
nav ul li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	text-align: center;
}
.text_column {
	width: 100%;
	text-align: justify;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0%;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	font-size: 18px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 90%;
	margin-top: 25px;
	margin-right: 0px;
}