@charset "utf-8";
/* CSS Document */

/* @font-face { font-family: Display; src: url('images/display.ttf'); }  */


body {
	background-image: url(images/bg.jpg);
	background-attachment: fixed;
	background-position: top center; /* Aligns the background to the top center */
	background-repeat: no-repeat;
	background-size: cover; /* Ensures the background covers the entire viewport */
	background-color: #000000;
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-style: normal;
	font-size: 18px; 
	border: 0px;
	margin: 0; /* Removes default body margin that might cause spacing issues */
	padding: 0;
}

img { border: 0px; }


/* TEXT */
.text-white-large-Display {
	color: #ffffff;
	font-family: "Oswald", sans-serif;
	font-size: 50px;
	line-height: 1.2;
}

.text-white-med{
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.text-white-small{
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.2;
}

.text-red-large-Display {
	color: #AB2427;
	font-family: "Oswald", sans-serif;
	font-size: 50px;
	line-height: 1.2;
}

.text-red-med{
	color: #AB2427;
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.text-red-small{
	color: #AB2427;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.2;
}

.text-gray-large-Display {
	color: #939293;
	font-family: "Oswald", sans-serif;
	font-size: 50px;
	line-height: 1.2;
}

.text-gray-med{
	color: #939293;
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.text-gray-small{
	color: #939293;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.2;
}


/* ND */

.znd{
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
    text-transform: uppercase;
	padding: 30px;
	font-weight: 300;
	letter-spacing: 0.1em;
	width: 950px;
	margin-top: 50px;
	border-top: 1px solid white;
}

.znd a{
	color: #ffffff;
	text-decoration: none;
}


/* SUBPAGE HEADERS */

.subpage-headers-bg {
	background-image: url("images/subpage2025_06.jpg");
	width: 514px;
	height: 83px;
	padding-left: 20px;
}

.subpage-headers-bg h1{
	color: #AB2427;
	font-family: "Poppins", sans-serif;
	font-size: 75px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.6;
	margin: 0px;
	padding-top: 10px;
}

.subpage-headers-bg h2{
	color: #AB2427;
	font-family: "Poppins", sans-serif;
	font-size: 60px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.6;
	margin: 0px;
	padding-top: 10px;
}

/* MENU */

.menu-index {
    background-image: url("images/index2025_02.jpg");
    width: 744px;
    height: 84px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    display: flex; /* Ensures links line up horizontally */
    justify-content: space-around; /* Adjust spacing as needed */
    align-items: center; /* Vertically centers links */
	letter-spacing: 0.01em;
	text-transform: uppercase;
	font-weight: normal!important;
	
}

.menu-index a {
    text-decoration: none;
    color: #ffffff;
    padding: 6px 10px;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.menu-index a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #aa2427;
    transform: scaleX(0); /* Initially hidden */
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

.menu-index a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 0%;
    background: #aa2427;
    transform-origin: top;
    transition: height 0.3s ease-in-out;
}

.menu-index a:hover::before {
    transform: scaleX(1); /* Expands the bottom border */
}

.menu-index a:hover::after {
    height: 70%; /* Expands the right side border */
}

.menu-index a:hover {
    color: #959595;
}


.menu-subpage {
    background-image: url("images/subpage2025_02.jpg");
    width: 744px;
    height: 84px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 23px;
    display: flex; /* Ensures links line up horizontally */
    justify-content: space-around; /* Adjust spacing as needed */
    align-items: center; /* Vertically centers links */
	letter-spacing: 0.01em;
	text-transform: uppercase;
	font-weight: normal!important;
	
}

.menu-subpage a {
    text-decoration: none;
    color: #ffffff;
    padding: 6px 10px;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.menu-subpage a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #aa2427;
    transform: scaleX(0); /* Initially hidden */
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

.menu-subpage a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 0%;
    background: #aa2427;
    transform-origin: top;
    transition: height 0.3s ease-in-out;
}

.menu-subpage a:hover::before {
    transform: scaleX(1); /* Expands the bottom border */
}

.menu-subpage a:hover::after {
    height: 70%; /* Expands the right side border */
}

.menu-subpage a:hover {
    color: #959595;
}




/* LINKS AND BORDER */

a {
	color: #939293;
}

.border {
	border: 3px solid #939293;
}
.pageborder {
	box-shadow: 0px 1px 10px 5px rgba(0,0,0,0.85); }



/* CONTACT */

.sub-bg-index-contact {
	background-color: #000000;
	width: 526px;
	height: 141px;
}


.sub-bg-index-contact table {
	color: #ffffff;
}


.sub-bg-index-contact table a{
	color: #ffffff;
	text-decoration: none;
}

.contact-names {
	color: #c52f32;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
}

.contact-email {
	color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
	text-transform: uppercase;
	line-height: 1.2;
}

.contact-address {
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	padding-top: 20px;
}


/* BACKGROUNDS */

.sub-bg {
	background-color: #000000;
	padding: 20px;
}


 