/* Master default Jan 28, 2026*/
/* Variable Declarations */
:root {
	--blue: 	#1e90ff;
	--white: 	#ffffff;
	--VRed: 	#E31E23;
	--HOrange: 	#F37021;
	--BGreen:   #08591C;
}

html,body {
		background-color: black;
		color: white;
		font-family:Garamond;;
		text-align: left;
		margin: 0;
		padding: 0;
		width: 100vw;
		height: 100vh;
		overflow: hidden;
	    overflow-x: hidden;
		background: black; /* Example background color */
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1em;
	}

.TF1 {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #F37021;
}
.TF2 {
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: #08591C;
}
.TF3 {
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
	color: #E31E23;
}
.TF4 {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif"
}

.TF5 {
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif"
}

html{
	box-sizing:border-box}*,*:before,*:after{box-sizing:inherit
}
html{
	-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%
}
hr {
	color: #E31E23;
	font-weight: bold;
}
iframe {
	width: 100vw;height: 100vh;opacity: 1.0
}

a:link, a:visited {
	color: (internal value);
	text-decoration: none;
	cursor: auto;
}
	
a:link:active, a:visited:active {
	color: (internal value);
}
	
.container {
	position: relative;
}
.topright {
	position: absolute;
	top: 10px;
	right: 8px;
	font-size: 20px;
}
.topleft {
	position: absolute;
	top: 10px;
	left: 12px;
	font-size: 20px;
}
.topcenter {
	position: absolute;
	top: 22px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 28px;
	color: #E31E23;
}
.bottomleft {
	position: absolute;
	bottom: 8px;
	left: 12px;
	font-size: 20px;
}
.bottomright {
	position: absolute;
	bottom: 8px;
	right: 12px;
	font-size: 20px;
}
.bottomcenter {
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
}
.center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
}
.BM {
	width: 30px;
	height: 30px;
}
.HOSD {
	width: 80px;
	height: auto;
}
.ICC {
	width: 200px;
	height: auto;
}

.tHead {
	color: red;
}

/* Hamburger Menu */
.hamburger {
	font-size: 1em;
	padding: 15px;
	cursor: pointer;
	background: transparent;
	border: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay:not(.hidden) {
    opacity: 1;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 450px;
    height: 100%;
    background: #444;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1002;
}

.menu.fade-in {
    transform: translateX(0);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    position: relative;
}

nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

nav a:hover {
    background: #F37021;
}

.submenu {
    background: #444;
    margin-left: 20px;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

.hidden {
    display: none;
}

/* Smooth expand/collapse */
.submenu {
    max-height: 0;
}

.submenu:not(.hidden) {
    display: block;
    max-height: 500px;
}

/* SVG Arrow rotation */
.arrow {
    transition: transform 0.3s ease;
    transform-origin: center;
}

.arrow.rotate {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        width: 80%;
    }
}
