:root {
    --black: #000000;
    --white: #ffffff;
    --font-primary: 'Arial Black', Gadget, sans-serif;
}



html {
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary) !important;
}

/* Core Layout */
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--black);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-x: none;
    --banner-height: 235px;
}



/* --- BANNER HEADER STYLES --- */

/* MAIN HEADER */
.zl-banner {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border-bottom: none;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 10000;
    min-height: 60px;
    min-width: 100px;
}

.zl-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-bottom: 5px solid #000000;
    z-index: 5;
    pointer-events: none;
}



.banner-logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 5px 0 5px 5px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.banner-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.banner-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 5px 5px 0;
    position: relative;
}

.banner-btn {
    background: transparent;
    color: #000000;
    border: 5px solid transparent;
    padding: 8px 25px;
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: color 0.2s ease, opacity 0.2s ease;
    position: relative;
    z-index: 10;
}

.banner-btn:hover,
.banner-btn.active-nav {
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
}


.about-btn {
    background: #000000 !important;
    color: #ffffff !important;
    border: 5px solid #000000 !important;
    opacity: 1 !important;
}

.about-btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border: 5px solid #000000 !important;
    opacity: 1 !important;
}

/* --- DROPDOWN MENU --- */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-30px);
    background: #ffffff;
    border: 5px solid #000000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    padding: 15px 25px;
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 5px solid #000000;
    background: #ffffff;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #000000;
    color: #ffffff;
}

.page-container {
    width: 100%;
    position: relative;
    flex-grow: 1;
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    /* Changed to auto for natural growth */
    background: #000;
    min-height: 500px;
}

.page-section {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
}

.page-section.active {
    display: flex !important;
    z-index: 100;
    background-color: #ffffff;
}


/* --- RESOURCE MODAL --- */

.resource-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* --- FOOTER --- */
.footer-section {
    width: 100%;
    border-top: none;
    padding: 10px 20px;
    margin-top: 0;
    margin-bottom: 0;
    pointer-events: auto;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
    position: relative;
    z-index: 200;
    box-shadow: 0 100px 0 #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    color: #fff;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: bold;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}