﻿/* ==========================================================================
   1. DESIGN SYSTEM VARIABLES & GLOBAL RESETS
   ========================================================================== */
:root {
    --yellow: #FFCC00;
    --dark: #141414;
    --darker: #0d0d0d;
    --card-bg: #1c1c1c;
    --blue-light: #c2d6fb;
    --blue-dark: #8c9bb8;
    --gray: #d6d6d6;
    --dark-gray: #252422;
    --nav-height: 64px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Readex Pro', sans-serif;
    color: #222;
    line-height: 1.6;
}

/* Typography Hierarchy */
h1, h2, h3, .nav-title {
    font-family: 'Jaro', sans-serif;
    letter-spacing: 1px;
}

h5 {
    font-family: 'Readex Pro', sans-serif;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

ul, ol {
    padding-left: 1.5rem;
    list-style-position: inside;
}

main img {
    cursor: pointer;
}

main iframe {
    max-width: 100%;
}


/* ==========================================================================
   2. SITE ARCHITECTURE: NAVIGATION (NAVBAR)
   ========================================================================== */
.navbar-container {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);
}

.navbar-main {
    background: var(--yellow);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 4px solid #000000;
    padding-right: 1.5rem;
}

.nav-branding {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    color: #000000;
}

.logo-box {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 1.2rem;
    border-right: 4px solid #000000;
}

.logo-pixel {
    width: 40px;
    height: 40px;
    object-fit: contain;
    image-rendering: pixelated;
}

.nav-title {
    font-size: 2.2rem;
    padding-left: 1rem;
    line-height: 1;
}

.nav-links-desktop {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-dropdown-wrapper {
    position: relative;
    height: 100%;
}

.nav-item {
    font-family: 'Jaro', sans-serif;
    font-size: 1.2rem;
    color: #000000;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    border-right: 2px dashed rgba(0, 0, 0, 0.2);
    gap: 6px;
    transition: background 0.1s ease;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

.nav-item.active {
    background: #000000;
    color: var(--yellow);
    border-right: 4px solid #000000;
    border-left: 4px solid #000000;
    margin-left: -4px;
}

.dropdown-arrow {
    font-size: 0.75rem;
    vertical-align: middle;
}

.arcade-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -4px;
    background: var(--dark);
    border: 4px solid #000000;
    min-width: 220px;
    padding: 0.5rem 0;
}

.nav-dropdown-wrapper:hover .arcade-dropdown {
    display: block;
}

.dropdown-sub-item {
    display: block;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff;
    background: var(--dark-gray);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    transition: all 0.1s ease;
}

.dropdown-sub-item:hover {
    background: var(--yellow);
    color: #000000;
}

.menu-toggle-btn {
    display: none;
    background: #000000;
    border: 2px solid var(--yellow);
    padding: 6px 12px;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    box-shadow: 3px 3px 0px #000000;
}

.btn-label {
    font-family: 'Jaro', sans-serif;
    color: var(--yellow);
    font-size: 1.1rem;
}

.burger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.burger-icon span {
    width: 18px;
    height: 3px;
    background: var(--yellow);
    display: block;
}


/* ==========================================================================
   3. LANDING PAGE LAYOUT MODULES (HERO, ABOUT, COMMUNITY)
   ========================================================================== */
.hero {
    position: relative;
    text-align: center;
    padding: 6rem 1rem 5rem;
    background-color: var(--darker);
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(13, 13, 13, 0.85),
            rgba(20, 20, 20, 0.6) 30%,
            rgba(20, 20, 20, 0.6) 70%,
            rgba(13, 13, 13, 0.85)
    );
    z-index: 2;
}

.hero-video-overlay::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.35) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.04));
    background-size: 100% 4px, 6px 100%;
    z-index: 3;
    opacity: 0.8;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
}

.hero-logo {
    height: 200px;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
}

.hero h1 {
    font-size: 4rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    text-shadow: 4px 4px 0px #000000, 8px 8px 0px rgba(255, 255, 255, 0.1);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    margin-top: 2rem;
    font-family: 'Jaro', sans-serif;
    font-size: 1.5rem;
    padding: 0.75rem 2rem;
    background: var(--yellow);
    color: #000;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000000, 8px 8px 0px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.1s ease;
}

.hero-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #000000, 8px 8px 0px rgba(255, 255, 255, 0.1);
}

.hero-cta:active {
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px #000000;
}

.page-banner {
    text-align: center;
    padding: 3.5rem 1rem 3rem;
    background-color: var(--darker);
    color: #fff;
    border-bottom: 4px solid #000000;
    position: relative;
    /* Default fallback pattern */
    background-image:
            linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    background-repeat: repeat;
}


.page-banner.has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.page-banner.has-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.75);
    z-index: 1;
}

/* Ensure content stays above the overlay */
.page-banner.has-image > * {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 3.2rem;
    color: var(--yellow);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px #000, 5px 5px 0px rgba(255, 204, 0, 0.2);
}

.inner-page-container {
    background-color: #fdfdfb;
    padding: 3rem 1rem;
    min-height: calc(100vh - var(--nav-height) - 200px);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.primary-content {
    flex: 2 1 550px;
    color: #222;
}

.primary-content h2 {
    font-size: 2rem;
    margin: 1.8rem 0 0.8rem 0;
    border-bottom: 2px solid var(--dark);
    padding-bottom: 0.3rem;
}

.primary-content h2:first-of-type {
    margin-top: 0;
}

.primary-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.retro-box-callout {
    background: var(--blue-light);
    border: 3px solid #000000;
    box-shadow: 4px 4px 0px #111;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.retro-box-callout h3 {
    font-family: 'Readex Pro', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #000;
}

/* Sidebar Layout Engine */
.sidebar-content {
    flex: 1 1 280px;
}

.sidebar-card {
    background: var(--dark);
    color: #fff;
    border: 3px solid #000000;
    box-shadow: 6px 6px 0px #000000;
    padding: 1.5rem;
    border-radius: 4px;
}

.sidebar-card h3 {
    color: var(--yellow);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    padding-bottom: 0.4rem;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 0.8rem;
}

.sidebar-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.1s;
}

.sidebar-links a:hover {
    text-decoration: underline;
}


.primary-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
    box-shadow: none;
    border-radius: 4px;
}

.about {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
    gap: 1.5rem;
    align-items: stretch;
}

.about-image {
    flex: 1 1 480px;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    border: 3px solid #000;
    box-shadow: 6px 6px 0px #000;
    border-radius: 4px;
}

.about-text {
    flex: 1 1 300px;
    background: var(--dark);
    border: 3px solid #000;
    box-shadow: 6px 6px 0px #000;
    border-radius: 4px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.7;
}

.about-text::before {
    content: "// ABOUT GDK";
    font-family: 'Jaro', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--yellow);
    opacity: 0.7;
}

.events-col h2 {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
}

.events-col {
    flex: 2 1 380px;
    text-align: left;
}

/* Universal Accordions */
.universal-accordion-group {
    margin-bottom: 1.5rem;
}

.universal-accordion-node {
    border-bottom: 2px solid var(--dark);
    margin-bottom: 0.5rem;
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.accordion-trigger h5 {
    margin: 0;
    color: inherit;
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--dark);
}

.universal-accordion-node.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
}

.accordion-panel-content {
    padding-bottom: 1.2rem;
}

/* ==========================================================================
   INVOLVEMENT HUB & PAYMENT NODES
   ========================================================================== */
.volunteer-staff-section {
    margin-top: 3.5rem;
    border-top: 4px dashed var(--dark);
    padding-top: 2.5rem;
}

.volunteer-callout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.v-callout-card {
    background: #fdfdfb;
    border: 2px solid var(--dark);
    padding: 1.25rem;
    border-radius: 4px;
    box-shadow: 4px 4px 0px var(--dark);
}

.v-callout-card h4 {
    font-family: 'Jaro', sans-serif;
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.v-card-icon {
    color: var(--yellow);
    text-shadow: 1px 1px 0px #000;
}

.staffing-highlight {
    background: var(--yellow) !important;
    box-shadow: 6px 6px 0px var(--dark) !important;
}

/* Get Involved Page Variations */
.volunteer-staff-card {
    background: #141414 !important;
    color: var(--gray);
}

.staff-accent-text {
    color: var(--blue-light) !important;
}


.staff-btn-color {
    background: var(--blue-light);
    color: var(--darker);
}
.staff-btn-color:hover {
    background: #ffffff;
}

.involvement-hub {
    background-color: #fdfdfb;
    padding: 4rem 1rem;
}

.hub-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hub-card {
    display: flex;
    gap: 2rem;
    background: #ffffff;
    border: 3px solid #000000;
    box-shadow: 6px 6px 0px #000000;
    padding: 2rem;
    border-radius: 4px;
}

.premium-card {
    background: var(--dark);
    color: #ffffff;
}

.step-number {
    font-family: 'Jaro', sans-serif;
    font-size: 3rem;
    color: var(--dark-gray);
    line-height: 1;
}

.premium-text {
    color: var(--yellow) !important;
}

.hub-content {
    flex: 1;
}

.hub-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.hub-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.premium-card p {
    color: var(--gray);
}

.hub-btn {
    display: inline-block;
    font-family: 'Jaro', sans-serif;
    font-size: 1.1rem;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border: 2px solid #000000;
    box-shadow: 3px 3px 0px #000000;
    transition: all 0.1s ease;
}

.discord-color { background: #5865F2; color: #ffffff; }
.default-color { background: var(--yellow); color: #000000; }

.hub-btn:hover {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #000000;
}

.hub-divider {
    border: none;
    border-top: 4px dashed var(--dark);
    margin: 1rem 0;
}

/* Tier Processing Grid Matrix */
.payment-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.payment-node {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--dark-gray);
    border: 3px solid #000000;
    padding: 1.5rem 1rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.1s ease;
}

.node-label {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.node-cost {
    font-family: 'Jaro', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 1rem;
}

.node-cta {
    width: 100%;
    text-align: center;
    font-family: 'Jaro', sans-serif;
    font-size: 1.1rem;
    padding: 0.5rem;
    background: var(--yellow);
    color: #000000;
    border: 2px solid #000000;
    box-shadow: 2px 2px 0px #000000;
    border-radius: 2px;
    transition: all 0.1s ease;
}
.event-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-node {
    border-color: var(--yellow);
}

.popular-node .node-cost {
    color: var(--yellow);
}

.payment-node:hover {
    border-color: #ffffff !important;
}

/* Tier Feature Matrix Component */
.tier-comparison-box {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem 0;
    flex-wrap: wrap;
}

.tier-column {
    flex: 1 1 280px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    padding: 1.25rem;
    border-radius: 4px;
}

.tier-column.paid-highlight {
    background: rgba(255, 204, 0, 0.05);
    border: 2px solid var(--yellow);
}

.tier-title {
    font-family: 'Jaro', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.free-title { color: var(--gray); }
.paid-title { color: var(--yellow); }

.tier-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.tier-features li::before {
    margin-right: 0.5rem;
    font-weight: bold;
}

.feature-included::before {
    content: "-";
    color: #4CAF50;
}

.feature-premium::before {
    content: "-";
    color: var(--yellow);
}


/* ==========================================================================
   PROGRAMS MODULES
   ========================================================================== */
.programs {
    background-color: var(--dark-gray);
    background-image: radial-gradient(#141414 20%, transparent 20%);
    background-size: 12px 12px;
    padding: 0 0 2.5rem 0;
}

.programs h2 {
    text-align: center;
    background: #000000;
    color: var(--yellow);
    font-size: 2.6rem;
    padding: .5rem 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.program-card {
    background: var(--dark);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    border-radius: 4px;
    padding: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    border: 3px solid #000000;
    box-shadow: 10px 10px 0px #000000;
}

.program-text {
    flex: 2 1 350px;
    color: #ccc;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.95rem;
}

.program-text h3 {
    color: var(--yellow);
    font-size: 1.4rem;
}

.learn-more {
    align-self: flex-end;
    margin-top: auto;
    background: var(--yellow);
    color: #1a1a1a;
    border: none;
    font-family: 'Jaro', sans-serif;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 1px;
}

.learn-more:hover {
    opacity: 0.75;
}


/* ==========================================================================
   REUSABLE UI COMPONENTS (CAROUSELS)
   ========================================================================== */
.universal-carousel {
    position: relative;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.4s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    min-height: 340px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: contain;  
    background-color: #000;  
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.55);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
}

.carousel-dots .dot.active {
    background: #fff;
}


/* ==========================================================================
   6. THIRD-PARTY UCF WIDGET STYLING
   ========================================================================== */
.events-embed {
    background: var(--dark);
    text-align: left;
    padding: 1rem;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
    border-radius: 4px;
}

.events-embed .events h4 {
    display: none !important;
}

.events-embed .events {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 1.3rem !important;
    color: var(--gray) !important;
}

.events-embed .events table {
    width: 100%;
    border-collapse: collapse;
}

.events-embed .events tr,
.events-embed .events tr.alt {
    background: transparent !important;
}

.events-embed .events th:first-child,
.events-embed .events td:first-child {
    width: 210px !important;
}

.events-embed .events th:nth-child(2),
.events-embed .events td:nth-child(2) {
    width: auto !important;
}

.events-embed .events th {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: var(--yellow) !important;
    background: transparent !important;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.2) !important;
    padding: 0 0 0.4rem 0 !important;
}

.events-embed .events td {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0.35rem 0.25rem !important;
    vertical-align: middle !important;
}

.events-embed .events abbr {
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.3rem !important;
    color: #000 !important;
    background: var(--blue-light);
    padding: 2px 6px;
    border-radius: 2px;
    text-decoration: none !important;
    white-space: nowrap;
}

.events-embed .events a.url {
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
}

.events-embed .events a.url:hover {
    color: var(--yellow) !important;
    text-decoration: underline !important;
}

.events-embed .events .location a {
    font-family: 'Readex Pro', sans-serif !important;
    color: var(--gray) !important;
    font-size: 1.2rem !important;
    margin-top: 1px;
    display: block;
}

.events-embed .events a.more {
    display: block !important;
    text-align: center;
    font-family: 'Jaro', sans-serif !important;
    font-size: 1.1rem !important;
    color: #000000 !important;
    background: var(--yellow) !important;
    border: 2px solid #000 !important;
    box-shadow: 2px 2px 0px #000;
    padding: 0.4rem 1rem !important;
    margin-top: 0.8rem !important;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    transition: all 0.1s ease;
}

.events-embed .events a.more:hover {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #000;
    opacity: 70% !important;
}

.events-embed .events .feeds {
    display: none !important;
}

.no-events-message {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--gray);
    font-size: 1.15rem;
}

.no-events-message p {
    margin-bottom: 1rem;
}

.no-events-link {
    display: inline-block;
    font-family: 'Jaro', sans-serif;
    font-size: 1.1rem;
    color: #000000 !important;
    background: var(--yellow);
    border: 2px solid #000;
    box-shadow: 2px 2px 0px #000;
    padding: 0.5rem 1.2rem;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    transition: all 0.1s ease;
}

.no-events-link:hover {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #000;
    opacity: 70%;
}


/* ==========================================================================
   7. FOOTER CONTAINER
   ========================================================================== */
.footer {
    background: var(--darker);
    color: #ccc;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.8rem 3rem;
    border-top: 1px solid #2a2a2a;
    font-size: 0.9rem;
}

.footer-left h2 {
    font-size: 1.6rem;
    color: var(--yellow);
    margin-bottom: 0.4rem;
}

.footer-right {
    text-align: right;
}

.footer-right h3 {
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.footer-right ul {
    list-style: none;
}

.footer-right a {
    color: #ccc;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------------*/



/* ==========================================================================
   8. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 960px) {
    .menu-toggle-btn {
        display: flex;
    }

    .navbar-container.open .nav-links-desktop {
        display: flex;
    }

    .nav-links-desktop {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--dark);
        border-bottom: 4px solid #000000;
        flex-direction: column;
        height: auto;
        align-items: stretch;
    }

    .nav-item {
        color: #ffffff;
        padding: 1rem 1.5rem;
        height: auto;
        border-right: none;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    }

    .nav-item.active {
        background: var(--dark-gray);
        color: var(--yellow);
        border-left: none;
        border-right: none;
        margin-left: 0;
    }

    .nav-dropdown-wrapper {
        height: auto;
    }

    .nav-dropdown-wrapper:hover .arcade-dropdown {
        display: none;
    }

    .nav-dropdown-wrapper .arcade-dropdown {
        display: block;
        position: static;
        border: none;
        background: #1a1a1a;
        box-shadow: none;
        padding: 0 0 0 1rem;
    }

    .dropdown-sub-item {
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid #252422;
    }
}

@media (max-width: 700px) {
    .nav-title {
        font-size: 1.7rem;
    }
    .hero {
        padding: 4rem 1rem 3rem;
        min-height: 420px;
    }
    .hero-logo {
        height: 120px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .hero-cta {
        font-size: 1.2rem;
        padding: 0.65rem 1.5rem;
    }
    .page-banner {
        padding: 2.5rem 1rem 2rem;
    }
    .page-banner h1 {
        font-size: 2.1rem;
    }
    .inner-page-container {
        padding: 2rem 1rem;
    }
    .content-wrapper {
        gap: 1.5rem;
    }
    .about {
        margin: 2rem auto;
        gap: 1rem;
    }
    .about-image {
        min-height: 260px;
        flex-basis: 100%;
    }
    .carousel-slide,
    .carousel-slide img {
        min-height: 260px;
    }
    .about-text {
        padding: 1.5rem 1.25rem;
    }
    .primary-content h2 {
        font-size: 1.5rem;
    }
    main iframe {
        width: 100%;
        max-width: 100%;
        height: 480px;
    }
    .program-card {
        flex-direction: column;
        padding: 1.4rem;
    }
    .learn-more {
        align-self: flex-start;
    }
    .programs h2 {
        font-size: 1.9rem;
    }
    .hub-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    .step-number {
        font-size: 2.2rem;
    }
    .footer {
        flex-direction: column;
        text-align: left;
        padding: 1.8rem 1.5rem;
    }
    .footer-right {
        text-align: left;
    }
    .events-embed .events th:first-child,
    .events-embed .events td:first-child {
        width: auto !important;
    }
    .events-embed .events table,
    .events-embed .events tbody,
    .events-embed .events tr {
        display: block;
        width: 100%;
    }
    .events-embed .events td {
        display: block;
        padding: 0.2rem 0 !important;
    }
    .events-embed .events th {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .navbar-main {
        padding-right: 0.75rem;
    }
    .logo-box {
        padding: 0 0.8rem;
    }
    .logo-pixel {
        width: 32px;
        height: 32px;
    }
    .nav-title {
        font-size: 1.4rem;
        padding-left: 0.6rem;
    }
    .btn-label {
        display: none;
    }
    .menu-toggle-btn {
        padding: 8px 10px;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero-logo {
        height: 90px;
    }
    .hero-cta {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    main iframe {
        height: 420px;
    }
    .programs h2 {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    .program-text h3 {
        font-size: 1.2rem;
    }
    .footer-left h2 {
        font-size: 1.3rem;
    }
    .payment-node,
    .tier-column {
        flex-basis: 100%;
    }
}