html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* separation of reset */
*, *::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
}

p, li {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.footer {
    background-color: #000000; 
    color: #F9FAFB;           
}

.footer-content {
    color: #F9FAFB;
}

.footer p,
.footer span,
.footer div,
.footer a {
    color: #F9FAFB;
}

.copyright {
    color: #F9FAFB;
}

.media-link {
    color: #ffffff;
    border-color: #000000; 
}
.media-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.media-link {
    width: 56px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    border-radius: 10px;
    border: 2px solid black;
    transition: transform 0.15s ease;
}

.media-link.youtube {
    background: #ff0000;
}

.media-link.twitch {
    background: #9146ff;
}

.media-link.instagram {
    background: linear-gradient(
        45deg,
        #fdf497,
        #fd5949,
        #d6249f,
        #285aeb
    );
}

.media-link:hover {
    transform: translateY(-2px);
}

.copyright {
    font-size: 14px;
    color: black;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 2px solid #ccc;
    padding: 10px 15px;
}

.left-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img{
    width: 80px;
    height: 60px;
    background-color: #0e5878;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.site-title {
    font-size: 20px;
    line-height: 1.1;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger div {
    width: 28px;
    height: 3px;
    background: black;
    border-radius: 3px;
}

/* Mobile dropdown menu */
#mobileMenu {
    overflow: hidden;
    max-height: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: white;
    border-bottom: 2px solid black;
    transition: max-height 0.35s ease;
}

#mobileMenu a {
    padding: 12px 0;
    font-size: 1.1rem;
    text-align: center;
    color: black;
    border-bottom: 1px solid #ddd;
}

#mobileMenu a:last-child {
    border-bottom: none;
}

#mobileMenu.show {
    max-height: 500px;
}

/* medias */
@media (max-width: 644px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .media-link {
        width: 48px;
        height: 38px;
        font-size: 1.2rem;
    }
}

/* ============================= */
/* UNIVERSAL NAV COLOR THEME     */
/* War Thunder–Inspired & A11Y  */
/* ============================= */

:root {
    --nav-bg: #121212;          /* hangar black */
    --nav-border: #374151;      /* steel divider */
    --nav-text: #F9FAFB;        /* high-contrast text */
    --nav-muted: #CBD5E1;       /* secondary text */
    --nav-accent: #9B1C1C;      /* cherry red */
}

/* NAV BAR */
.navbar {
    background-color: var(--nav-bg);
    border-bottom: 2px solid var(--nav-border);
    color: var(--nav-text);
}

/* LEFT SIDE (LOGO + TITLE) */
.left-nav,
.site-title,
.logo {
    color: var(--nav-text);
}

/* DESKTOP NAV LINKS */
.nav-links a {
    color: var(--nav-text);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 12px;
    transition: color 0.2s ease, border-bottom 0.2s ease;
}

.nav-links a:hover {
    color: var(--nav-accent);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--nav-accent);
    outline-offset: 4px;
}

/* HAMBURGER ICON */
.hamburger div {
    background-color: var(--nav-text);
}

/* MOBILE MENU PANEL */
#mobileMenu {
    background-color: var(--nav-bg);
    border-bottom: 2px solid var(--nav-border);
}

/* MOBILE MENU LINKS */
#mobileMenu a {
    color: var(--nav-text);
    text-decoration: none;
    padding: 14px 20px;
    display: block;
    border-bottom: 1px solid var(--nav-border);
    font-weight: 600;
}

#mobileMenu a:hover {
    background-color: #1F2933;
    color: var(--nav-accent);
}

/* ACTIVE PAGE HIGHLIGHT (optional but recommended) */
.nav-links a.active,
#mobileMenu a.active {
    color: var(--nav-accent);
}

/* ============================= */
/* BASICS PAGE THEME STYLING     */
/* ============================= */

/* Page background */
body {
    background-color: #0f1419;
    color: var(--nav-text);
}

/* Main container */
.basics-container {
    width: 80%;
    margin: auto;
    padding-top: 40px;
    text-align: center;
}

.basics-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: var(--nav-text);
    position: relative;
}


.basics-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--nav-accent);
    margin: 10px auto 0;
}


.basics-content-box {
    width: 70%;
    margin: auto;
    background-color: #1f2933; 
    border: 2px solid var(--nav-border);
    color: #f9fafb;
    height: 35vh;

    display: flex;
    align-items: center;

    font-size: 1.05rem;
    line-height: 1.6;

    margin-bottom: 40px;
    padding: 18px;
    box-sizing: border-box;
    overflow-y: auto;
    text-align: left;

    border-radius: 8px;
}

.basics-content-box::-webkit-scrollbar {
    width: 8px;
}

.basics-content-box::-webkit-scrollbar-thumb {
    background-color: var(--nav-border);
    border-radius: 4px;
}


.basics-footer-space {
    margin-top: 60px;
}


@media (max-width: 768px) {

    .basics-container {
        width: 92%;
    }

    .basics-content-box {
        width: 100%;
        height: auto;
        min-height: 200px;
    }
}

/* ============================= */
/* HOME PAGE THEME STYLING       */
/* ============================= */

/* Page background */
body {
    background-color: #0f1419; 
    color: var(--nav-text);
}

.content-wrapper {
    width: 90%;
    margin: auto;
    text-align: center;
}


.content-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 40px;
    color: var(--nav-text);
    position: relative;
}


.content-wrapper h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--nav-accent);
    margin: 10px auto 0;
}



.two-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}


.image-box img {
    width: 100%;
    border: 2px solid var(--nav-border);
    border-radius: 6px;
}


.text-box {
    border: 2px solid var(--nav-border);
    background-color: #1f2933; 
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    border-radius: 8px;
}

.text-box p {
    max-width: 55ch;
    margin: 0;
    color: #f9fafb;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.6;
}



.link-row {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 60px);
}

.small-link {
    flex: 1;
    max-width: 220px;
    padding: clamp(12px, 1.2vw, 20px) 0;
    border: 2px solid var(--nav-border);
    background-color: var(--nav-accent); 
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.small-link:hover {
    background-color: #b1123a; 
    transform: translateY(-2px);
}


.maps-box iframe {
    width: 100%;
    border: 2px solid var(--nav-border);
    margin-top: 30px;
    border-radius: 8px;
}



@media (max-width: 644px) {

    .two-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .text-box {
        order: 1;
        text-align: center;
    }

    .image-box {
        order: 2;
    }

    .link-row {
        gap: 15px;
    }

    .maps-box iframe {
        height: 250px;
    }
}

/* ============================= */
/* MANEUVERS PAGE THEME          */
/* ============================= */

body {
    background-color: #0f1419; 
    color: var(--nav-text);
}

.maneuvers-wrapper {
    width: 80%;
    margin: auto;
    padding-top: 40px;
    text-align: center;
}

#maneuvers-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--nav-text);
    position: relative;
}


#maneuvers-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--nav-accent); 
    margin: 10px auto 0;
}

.maneuver-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}


.maneuver-box {
    border: 2px solid var(--nav-border);
    background-color: #1f2933; 
    color: #f9fafb;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    padding: 10%;
    border-radius: 10px;
    box-sizing: border-box;
}



.maneuver-image {
    border: 2px solid var(--nav-border);
    background-color: #1f2933;
    width: 30vh;
    height: auto;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.maneuver-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 8px;
}



@media (max-width: 644px) {

    .maneuver-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .maneuver-box {
        height: auto;
        font-size: 1.05rem;
        padding: 8%;
    }

    .maneuver-image {
        width: 95%;
        height: 220px;
    }
}

/* ============================= */
/* TERMINOLOGY PAGE THEME        */
/* ============================= */

body {
    background-color: #0f1419; 
    color: var(--nav-text);
}

.terms-wrapper {
    width: 80%;
    margin: auto;
    padding-top: 40px;
}

.terms-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    justify-content: center;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #1f2933; 
    color: #f9fafb;
    font-size: 1.15rem;
    text-align: left;
    margin: 0 auto;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--nav-border);
    box-sizing: border-box;
}


.terms-list strong {
    color: #f9fafb;                 /* same off-white as text */
    font-size: 1.1em;              /* larger than body text */
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-color: var(--nav-accent); /* cherry red */
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}



.terms-images {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.terms-img-box {
    border: 2px solid var(--nav-border);
    background-color: #1f2933;
    width: 30vw;
    max-width: 360px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px;
    box-sizing: border-box;
}

.terms-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.terms-footer-space {
    margin-top: 50px;
}


@media (max-width: 644px) {

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .terms-list {
        width: 90%;
        margin: 0 auto;
        padding: 24px;
        font-size: 1.05rem;
    }

    .terms-images {
        margin-top: 40px;
    }

    .terms-img-box {
        width: 85%;
    }
}



body {
    background-color: #0f1419;
    color: var(--nav-text);
}

/* Contact container */
.contact-container {
    background-color: #1f2933;
    border: 2px solid var(--nav-border) !important;
    border-radius: 12px !important;
}

/* Title */
.contact-container h2 {
    color: #f9fafb;
}


.contact-container input,
.contact-container textarea {
    background-color: #0f1419;
    color: #f9fafb;
    border: 2px solid var(--nav-border);
}

.contact-container input::placeholder,
.contact-container textarea::placeholder {
    color: #9ca3af;
}




.contact-container button {
    background-color: #0f1419;   
    color: #0f1419;              
    border: 2px solid var(--nav-border);
}

/* Hover state */
.contact-container button:hover {
    color: crimson;
}



@media (max-width: 644px) {

    /* Make entire form full width */
    .contact-container {
        width: 90% !important;
        padding: 30px !important;
    }

    /* Stack First + Last name */
    .contact-container > div:first-of-type {
        flex-direction: column;
    }

    /* Equal width inputs */
    .contact-container input,
    .contact-container textarea {
        width: 100% !important;
    }

    /* Slight spacing polish */
    .contact-container textarea {
        margin-top: 20px;
    }
}
