/**
 * W5OBM Amateur Radio Club - Comprehensive Website CSS System
 * File: /css/w5obm.css
 * Version: 3.0 - Modern Theme-Ready Architecture
 * 
 * This file consolidates all W5OBM CSS into a single, modern, maintainable system
 * Features: CSS Custom Properties, Theme Support, Component Architecture
 * Replaces: w5obm.css, w5obm_enhanced.css, w5obm_enhanced_consolidated.css, w5obm_enhanced_part2.css
 */

/* ================================================================ */
/* CSS CUSTOM PROPERTIES - W5OBM DESIGN SYSTEM */
/* ================================================================ */

:root {
    /* ============================================== */
    /* CORE W5OBM BRAND COLORS */
    /* ============================================== */

    /* Primary Brand Colors */
    --w5obm-primary-blue: #031A54;
    --w5obm-secondary-blue: #145EFF;
    --w5obm-accent-gold: #FFD700;

    /* Extended Brand Palette */
    --w5obm-dark-blue: #001133;
    --w5obm-light-blue: #4A90E2;
    --w5obm-navy: #36486b;
    --w5obm-ocean: #034f84;
    --w5obm-teal: #006666;
    --w5obm-royal: #4040a1;
    --w5obm-electric: #025ce3;

    /* ============================================== */
    /* THEME SYSTEM - GREEN ACCENT VARIANT */
    /* ============================================== */

    /* Green Theme Colors */
    --w5obm-accent-green: #28a745;
    --w5obm-medium-green: #2d8670;
    --w5obm-dark-green: #1a5d47;
    --w5obm-light-green: #4ade80;
    --w5obm-forest-green: #16a34a;

    /* ============================================== */
    /* SEMANTIC COLOR SYSTEM */
    /* ============================================== */

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;

    /* Status Colors */
    --color-success: #28a745;
    --color-info: #17a2b8;
    --color-warning: #ffc107;
    --color-danger: #dc3545;

    /* ============================================== */
    /* SHADOW SYSTEM */
    /* ============================================== */

    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    /* Colored Shadows */
    --shadow-gold: 0 5px 15px rgba(255, 215, 0, 0.3);
    --shadow-green: 0 5px 15px rgba(40, 167, 69, 0.3);
    --shadow-blue: 0 5px 15px rgba(20, 94, 255, 0.3);

    /* ============================================== */
    /* TYPOGRAPHY SYSTEM */
    /* ============================================== */

    /* Font Families */
    --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-family-serif: Georgia, Cambria, "Times New Roman", Times, serif;
    --font-family-mono: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --font-family-headings: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;

    /* Font Sizes */
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */
    --font-size-4xl: 2.25rem;
    /* 36px */
    --font-size-5xl: 3rem;
    /* 48px */
    --font-size-6xl: 3.75rem;
    /* 60px */
    --font-size-7xl: 4.5rem;
    /* 72px */

    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;

    /* ============================================== */
    /* SPACING SYSTEM */
    /* ============================================== */

    --spacing-px: 1px;
    --spacing-0: 0;
    --spacing-1: 0.25rem;
    /* 4px */
    --spacing-2: 0.5rem;
    /* 8px */
    --spacing-3: 0.75rem;
    /* 12px */
    --spacing-4: 1rem;
    /* 16px */
    --spacing-5: 1.25rem;
    /* 20px */
    --spacing-6: 1.5rem;
    /* 24px */
    --spacing-8: 2rem;
    /* 32px */
    --spacing-10: 2.5rem;
    /* 40px */
    --spacing-12: 3rem;
    /* 48px */
    --spacing-16: 4rem;
    /* 64px */
    --spacing-20: 5rem;
    /* 80px */
    --spacing-24: 6rem;
    /* 96px */
    --spacing-32: 8rem;
    /* 128px */

    /* ============================================== */
    /* BORDER RADIUS SYSTEM */
    /* ============================================== */

    --radius-none: 0;
    --radius-sm: 0.125rem;
    /* 2px */
    --radius-base: 0.25rem;
    /* 4px */
    --radius-md: 0.375rem;
    /* 6px */
    --radius-lg: 0.5rem;
    /* 8px */
    --radius-xl: 0.75rem;
    /* 12px */
    --radius-2xl: 1rem;
    /* 16px */
    --radius-3xl: 1.5rem;
    /* 24px */
    --radius-full: 9999px;
    /* Full border radius */

    /* ============================================== */
    /* TRANSITION SYSTEM */
    /* ============================================== */

    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-all: all 300ms ease;

    /* ============================================== */
    /* Z-INDEX SYSTEM */
    /* ============================================== */

    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ================================================================ */
/* THEME VARIANTS */
/* ================================================================ */

/* Default Theme (Blue & Gold) */
:root,
[data-theme="default"] {
    --theme-primary: var(--w5obm-primary-blue);
    --theme-secondary: var(--w5obm-secondary-blue);
    --theme-accent: var(--w5obm-accent-gold);
    --theme-success: var(--color-success);
    --theme-shadow-accent: var(--shadow-gold);
}

/* Green Theme Variant */
[data-theme="green"] {
    --theme-primary: var(--w5obm-dark-green);
    --theme-secondary: var(--w5obm-medium-green);
    --theme-accent: var(--w5obm-accent-green);
    --theme-success: var(--w5obm-light-green);
    --theme-shadow-accent: var(--shadow-green);
}

/* Navy Theme Variant */
[data-theme="navy"] {
    --theme-primary: var(--w5obm-navy);
    --theme-secondary: var(--w5obm-ocean);
    --theme-accent: var(--w5obm-teal);
    --theme-success: var(--color-info);
    --theme-shadow-accent: var(--shadow-blue);
}

/* ================================================================ */
/* GLOBAL RESETS & BASE STYLES */
/* ================================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: var(--line-height-normal);
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
}

body {
    margin: 0;
    font-family: var(--font-family-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-gray-900);
    background-color: var(--color-gray-100);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================================================ */
/* LAYOUT CONTAINERS */
/* ================================================================ */

.master-container {
    margin: var(--spacing-5) auto;
    max-width: 80%;
    background-color: var(--color-white);
    padding: var(--spacing-5);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

.carousel-container {
    margin-top: calc(var(--spacing-1) * -1);
    margin: var(--spacing-4) auto;
    max-width: 90%;
    background-color: var(--color-white);
    padding: var(--spacing-3);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

.container {
    max-width: 80%;
    margin: 0 auto;
    padding: var(--spacing-4);
    box-shadow: var(--shadow-md);
}

.header-container {
    text-align: center;
    margin: var(--spacing-4) var(--spacing-3);
    color: var(--theme-primary);
}

.header-container img {
    width: 150px;
    height: 150px;
}

/* ================================================================ */
/* CLUB LOGO SIZING STANDARDS */
/* ================================================================ */

/* Header logo sizing standards - DEFAULT */
.header-logo {
    width: 150px !important;
    height: 150px !important;
    max-width: 200px !important;
    max-height: 200px !important;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.header-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--theme-shadow-accent);
}

/* ================================================================ */
/* TYPOGRAPHY */
/* ================================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--theme-primary);
    margin-top: 0;
    margin-bottom: var(--spacing-4);
}

h1 {
    font-size: var(--font-size-4xl);
    color: var(--theme-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: var(--font-size-3xl);
    color: var(--theme-secondary);
}

h3 {
    font-size: var(--font-size-2xl);
    color: var(--theme-secondary);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

p {
    margin-top: 0;
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-relaxed);
}

/* ================================================================ */
/* BUTTONS */
/* ================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3) var(--spacing-6);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-all);
    user-select: none;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 94, 255, 0.25);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Button Variants */
.btn-primary {
    color: var(--color-white);
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--theme-secondary);
    border-color: var(--theme-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    color: var(--theme-primary);
    background-color: transparent;
    border-color: var(--theme-primary);
}

.btn-secondary:hover:not(:disabled) {
    color: var(--color-white);
    background-color: var(--theme-primary);
}

.btn-accent {
    color: var(--color-black);
    background-color: var(--theme-accent);
    border-color: var(--theme-accent);
}

.btn-accent:hover:not(:disabled) {
    background-color: var(--w5obm-accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--theme-shadow-accent);
}

.btn-success {
    color: var(--color-white);
    background-color: var(--color-success);
    border-color: var(--color-success);
}

.btn-danger {
    color: var(--color-white);
    background-color: var(--color-danger);
    border-color: var(--color-danger);
}

.btn-warning {
    color: var(--color-black);
    background-color: var(--color-warning);
    border-color: var(--color-warning);
}

.btn-info {
    color: var(--color-white);
    background-color: var(--color-info);
    border-color: var(--color-info);
}

/* Button Sizes */
.btn-sm {
    padding: var(--spacing-2) var(--spacing-4);
    font-size: var(--font-size-xs);
}

.btn-lg {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-lg);
}

/* ================================================================ */
/* CARDS */
/* ================================================================ */

.card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    padding: var(--spacing-4) var(--spacing-6);
    background-color: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
    font-weight: var(--font-weight-semibold);
}

.card-header.text-white,
.card-header.text-white * {
    color: #ffffff !important;
}

.card-header.text-white .badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.card-header.text-white .btn {
    color: #ffffff !important;
}

.card-body {
    padding: var(--spacing-6);
}

.card-footer {
    padding: var(--spacing-4) var(--spacing-6);
    background-color: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
}

.card-title {
    margin-bottom: var(--spacing-2);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--theme-primary);
}

.card-text {
    margin-bottom: 0;
    color: var(--color-gray-600);
}

/* ================================================================ */
/* IMAGE SIZING UTILITIES */
/* ================================================================ */

.img-header-200,
.img-header-lg,
.img_header-200,
.img_header-lg {
    width: 200px !important;
    height: 200px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px auto;
}


.img-card-175,
.img_card-175 {
    width: 175px !important;
    height: 175px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px auto;
}


.img-card-150,
.img_card-150 {
    width: 150px !important;
    height: 150px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px auto;
}


.img-icon-64,
.img_icon-64 {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain;
}


/* ================================================================ */
/* TABLES */
/* ================================================================ */

.table {
    width: 100%;
    margin-bottom: var(--spacing-4);
    color: var(--color-gray-900);
    background-color: var(--color-white);
    border-collapse: collapse;
}

.table th,
.table td {
    padding: var(--spacing-3) var(--spacing-4);
    vertical-align: top;
    border-top: 1px solid var(--color-gray-200);
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid var(--color-gray-200);
    background-color: var(--theme-primary);
    color: var(--color-white);
    font-weight: var(--font-weight-semibold);
}

.table tbody tr:nth-child(even) {
    background-color: var(--color-gray-50);
}

.table tbody tr:hover {
    background-color: var(--color-gray-100);
    transition: var(--transition-fast);
}

/* ================================================================ */
/* NAVIGATION MENU STYLES */
/* ================================================================ */

.navbar {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
    padding: var(--spacing-4) 0;
    box-shadow: var(--shadow-lg);
}

/* Navbar Brand and Logo */
.navbar-brand-container {
    display: flex;
    align-items: center;
}

.modern-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
}

.brand-logo {
    margin-right: var(--spacing-3);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
}

.logo-img:hover {
    border-color: var(--theme-accent);
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.brand-sub {
    font-size: 0.8rem;
    color: var(--theme-accent);
    opacity: 0.9;
}

/* Mobile Navigation */
.mobile-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: var(--spacing-2);
}

.modern-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.toggler-line {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    margin: 2px 0;
    transition: var(--transition-fast);
    border-radius: var(--radius-full);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile User Indicator */
.mobile-user-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    color: var(--theme-accent);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: var(--spacing-3) var(--spacing-4);
    color: var(--color-white);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--theme-accent);
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: var(--z-dropdown);
    display: none;
    min-width: 10rem;
    padding: var(--spacing-2) 0;
    margin: 0;
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

/* Bootstrap dropdown show state */
.dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Enhanced hover support for desktop */
@media (hover: hover) and (pointer: fine) {
    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Keep dropdown visible during transition to submenu */
    .dropdown-menu:hover {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--spacing-2) var(--spacing-4);
    clear: both;
    font-weight: var(--font-weight-normal);
    color: var(--color-gray-700);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    color: var(--color-white);
    background-color: var(--theme-primary);
}

/* ================================================================ */
/* FORMS */
/* ================================================================ */

.form-group {
    margin-bottom: var(--spacing-4);
}

.form-label {
    display: inline-block;
    margin-bottom: var(--spacing-2);
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-700);
}

.form-control {
    display: block;
    width: 100%;
    padding: var(--spacing-3);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-gray-700);
    background-color: var(--color-white);
    background-image: none;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--theme-secondary);
    box-shadow: 0 0 0 3px rgba(20, 94, 255, 0.25);
}

.form-control:invalid {
    border-color: var(--color-danger);
}

/* ================================================================ */
/* NET LOGGING SPECIFIC STYLES */
/* ================================================================ */

.net-logging-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-5);
}

.net-header {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: var(--color-white);
    padding: var(--spacing-5);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-5);
    box-shadow: var(--shadow-lg);
}

.net-header h1 {
    color: var(--color-white);
    margin-bottom: var(--spacing-2);
}

.net-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-4);
    margin-top: var(--spacing-4);
}

.net-info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-3);
    border-radius: var(--radius-md);
}

.checkin-table {
    width: 100%;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow-x: auto;
    margin-bottom: var(--spacing-6);
}

.checkin-table table {
    width: 100%;
    border-collapse: collapse;
}

.checkin-table th {
    background: var(--theme-primary);
    color: var(--color-white);
    padding: var(--spacing-4);
    text-align: left;
    font-weight: var(--font-weight-semibold);
}

.checkin-table td {
    padding: var(--spacing-3) var(--spacing-4);
    border-bottom: 1px solid var(--color-gray-200);
    vertical-align: middle;
}

.checkin-table tbody tr:hover {
    background-color: var(--color-gray-50);
}

/* ================================================================ */
/* NET SCHEDULE STYLES */
/* ================================================================ */

.schedule-container {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-6);
}

.schedule-header {
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-accent));
    color: var(--color-white);
    padding: var(--spacing-4);
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: var(--color-gray-200);
}

.schedule-day {
    background: var(--color-white);
    padding: var(--spacing-4);
    min-height: 120px;
    position: relative;
}

.schedule-day.today {
    background: var(--color-gray-100);
    border: 2px solid var(--theme-accent);
}

.schedule-event {
    background: var(--theme-primary);
    color: var(--color-white);
    padding: var(--spacing-2);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-1);
}

/* ================================================================ */
/* DATATABLES ENHANCEMENTS */
/* ================================================================ */

.dataTables_wrapper {
    margin: var(--spacing-6) 0;
}

.dataTables_filter {
    margin-bottom: var(--spacing-4);
}

.dataTables_filter input {
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    padding: var(--spacing-3);
    transition: var(--transition-normal);
    margin-left: var(--spacing-2);
}

.dataTables_filter input:focus {
    border-color: var(--theme-secondary);
    box-shadow: 0 0 0 3px rgba(20, 94, 255, 0.25);
}

.dataTables_length select {
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    padding: var(--spacing-2);
    margin: 0 var(--spacing-2);
}

.dataTables_paginate .paginate_button {
    padding: var(--spacing-2) var(--spacing-3);
    margin: 0 var(--spacing-1);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--theme-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dataTables_paginate .paginate_button:hover {
    background: var(--theme-primary);
    color: var(--color-white);
    border-color: var(--theme-primary);
}

.dataTables_paginate .paginate_button.current {
    background: var(--theme-primary);
    color: var(--color-white);
    border-color: var(--theme-primary);
}

/* ================================================================ */
/* CONTACT FORM STYLES */
/* ================================================================ */

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-10);
    box-shadow: var(--shadow-2xl);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: var(--spacing-8);
    color: var(--theme-primary);
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
}

/* ================================================================ */
/* UTILITY CLASSES */
/* ================================================================ */

/* Display */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-flex {
    display: flex !important;
}

.d-grid {
    display: grid !important;
}

/* Flexbox utilities */
.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-end {
    align-items: flex-end !important;
}

/* Text alignment */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

/* Colors */
.text-primary {
    color: var(--theme-primary) !important;
}

.text-secondary {
    color: var(--theme-secondary) !important;
}

.text-accent {
    color: var(--theme-accent) !important;
}

.text-success {
    color: var(--color-success) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

.text-warning {
    color: var(--color-warning) !important;
}

.text-info {
    color: var(--color-info) !important;
}

.text-muted {
    color: var(--color-gray-600) !important;
}

/* Background colors */
.bg-primary {
    background-color: var(--theme-primary) !important;
}

.bg-secondary {
    background-color: var(--theme-secondary) !important;
}

.bg-accent {
    background-color: var(--theme-accent) !important;
}

.bg-light {
    background-color: var(--color-gray-100) !important;
}

.bg-dark {
    background-color: var(--color-gray-800) !important;
}

/* Margins */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: var(--spacing-1) !important;
}

.m-2 {
    margin: var(--spacing-2) !important;
}

.m-3 {
    margin: var(--spacing-3) !important;
}

.m-4 {
    margin: var(--spacing-4) !important;
}

.m-5 {
    margin: var(--spacing-5) !important;
}

.m-auto {
    margin: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: var(--spacing-1) !important;
}

.mt-2 {
    margin-top: var(--spacing-2) !important;
}

.mt-3 {
    margin-top: var(--spacing-3) !important;
}

.mt-4 {
    margin-top: var(--spacing-4) !important;
}

.mt-5 {
    margin-top: var(--spacing-5) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: var(--spacing-1) !important;
}

.mb-2 {
    margin-bottom: var(--spacing-2) !important;
}

.mb-3 {
    margin-bottom: var(--spacing-3) !important;
}

.mb-4 {
    margin-bottom: var(--spacing-4) !important;
}

.mb-5 {
    margin-bottom: var(--spacing-5) !important;
}

/* Paddings */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: var(--spacing-1) !important;
}

.p-2 {
    padding: var(--spacing-2) !important;
}

.p-3 {
    padding: var(--spacing-3) !important;
}

.p-4 {
    padding: var(--spacing-4) !important;
}

.p-5 {
    padding: var(--spacing-5) !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: var(--spacing-1) !important;
}

.pt-2 {
    padding-top: var(--spacing-2) !important;
}

.pt-3 {
    padding-top: var(--spacing-3) !important;
}

.pt-4 {
    padding-top: var(--spacing-4) !important;
}

.pt-5 {
    padding-top: var(--spacing-5) !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: var(--spacing-1) !important;
}

.pb-2 {
    padding-bottom: var(--spacing-2) !important;
}

.pb-3 {
    padding-bottom: var(--spacing-3) !important;
}

.pb-4 {
    padding-bottom: var(--spacing-4) !important;
}

.pb-5 {
    padding-bottom: var(--spacing-5) !important;
}

/* ================================================================ */
/* RESPONSIVE DESIGN */
/* ================================================================ */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .master-container {
        max-width: 85%;
    }

    .container {
        max-width: 85%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .master-container {
        max-width: 90%;
    }

    .container {
        max-width: 90%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .master-container {
        max-width: 80%;
    }

    .container {
        max-width: 80%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .master-container {
        max-width: 1140px;
    }

    .container {
        max-width: 1140px;
    }
}

/* Mobile-first responsive adjustments */
@media (max-width: 767px) {
    .header-logo {
        width: 80px !important;
        height: 80px !important;
    }

    h1 {
        font-size: var(--font-size-2xl);
    }

    h2 {
        font-size: var(--font-size-xl);
    }

    h3 {
        font-size: var(--font-size-lg);
    }

    .master-container {
        max-width: 95%;
        padding: var(--spacing-3);
        margin: var(--spacing-2) auto;
    }

    .carousel-container {
        max-width: 95%;
        padding: var(--spacing-2);
    }

    .net-logging-container {
        padding: var(--spacing-3);
    }

    .net-header {
        padding: var(--spacing-3);
    }

    .contact-form {
        padding: var(--spacing-6);
        margin: var(--spacing-4);
    }

    .checkin-table {
        font-size: var(--font-size-sm);
    }

    .checkin-table th,
    .checkin-table td {
        padding: var(--spacing-2);
    }
}

/* ================================================================ */
/* PRINT STYLES */
/* ================================================================ */

@media print {

    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
    }

    .master-container,
    .container {
        max-width: 100% !important;
        box-shadow: none !important;
    }

    .navbar,
    .btn,
    .dropdown-menu {
        display: none !important;
    }
}

/* ================================================================ */
/* ACCESSIBILITY ENHANCEMENTS */
/* ================================================================ */

/* Focus indicators for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--theme-secondary);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-gray-100: #f0f0f0;
        --color-gray-900: #000000;
    }

    .card {
        border-width: 2px;
    }

    .btn {
        border-width: 2px;
    }
}

/* ================================================================ */
/* HERO SECTION AND SITE BANNER STYLES */
/* ================================================================ */

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    /* Flush with navbar */
    border-bottom: 4px solid var(--w5obm-accent-gold);
    /* Accent-gold bottom border */
    margin-bottom: 8px;
    /* 5-10px space after hero section */
}

.hero-carousel {
    height: 100%;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 26, 84, 0.85) 0%, rgba(20, 94, 255, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 95%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease;
    letter-spacing: -1px;
}

.hero-content .lead {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
    font-weight: 300;
}

.hero-callsign {
    background: linear-gradient(135deg, var(--w5obm-accent-gold), #FFC700);
    color: var(--w5obm-primary-blue);
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    font-size: 2.5rem;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transform: scale(1);
    transition: all 0.3s ease;
    text-shadow: none;
    border: 3px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 3px;
}

.hero-callsign:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--w5obm-accent-gold), #FFC700);
    color: var(--w5obm-primary-blue);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #FFC700, var(--w5obm-accent-gold));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    color: var(--w5obm-primary-blue);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--w5obm-primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Enhanced Club Banner (Site Banner) */
.club-banner {
    background: linear-gradient(135deg, var(--w5obm-primary-blue), var(--w5obm-secondary-blue));
    padding: 5rem 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    /* Double border: accent-gold and accent-green */
    border-bottom: 4px solid var(--w5obm-accent-gold);
    box-shadow: 0 4px 0 0 var(--w5obm-accent-green);
    /* Creates double border effect */
    margin-bottom: 10px;
    /* 10px space after site banner */
}

.club-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 80%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(45deg);
}

.club-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -15%;
    width: 80%;
    height: 200%;
    background: rgba(255, 255, 255, 0.02);
    transform: rotate(-45deg);
}

.club-logo {
    width: 220px;
    height: 220px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.club-logo:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.club-stats {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--w5obm-accent-gold);
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Quick Info Cards */
.info-cards {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    margin-bottom: 5rem;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 5px solid var(--w5obm-secondary-blue);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--w5obm-accent-gold), rgba(255, 215, 0, 0.1));
    transform: translate(50%, -50%) rotate(45deg);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.info-card:hover::before {
    transform: translate(50%, -50%) rotate(45deg) scale(1.2);
    background: linear-gradient(135deg, var(--w5obm-accent-gold), rgba(255, 215, 0, 0.3));
}

.info-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--w5obm-secondary-blue), var(--w5obm-primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(20, 94, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.info-card:hover .icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(20, 94, 255, 0.4);
}

.info-card .icon i {
    font-size: 2rem;
    color: white;
}

.info-card h5 {
    color: var(--w5obm-primary-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.info-card .btn {
    background: var(--w5obm-secondary-blue);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.info-card .btn:hover {
    background: var(--w5obm-primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 26, 84, 0.3);
}

/* Events Section Styles */
.events-section {
    background: linear-gradient(135deg, var(--color-light-gray, #f8f9fa), #ffffff);
    padding: 5rem 0;
    position: relative;
}

.events-header {
    text-align: center;
    margin-bottom: 4rem;
}

.events-header h2 {
    font-size: 3rem;
    color: var(--w5obm-primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.events-header .divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, var(--w5obm-accent-gold), #FFC700);
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--w5obm-primary-blue), var(--w5obm-secondary-blue));
    padding: 6rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design for Hero and Banner */
@media (max-width: 768px) {
    .hero-section {
        height: 65vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }

    .hero-callsign {
        font-size: 1.3rem;
        padding: 8px 20px;
        letter-spacing: 1px;
    }

    .club-banner {
        padding: 3rem 0;
    }

    .club-logo {
        width: 180px;
        height: 180px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 250px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }

    .info-cards {
        margin-top: -40px;
    }

    .events-header h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }

    .hero-callsign {
        font-size: 1.1rem;
        padding: 8px 20px;
    }

    .info-cards {
        margin-top: -40px;
    }

    .info-card {
        padding: 2rem;
    }
}

/* ================================================================ */
/* INDEX PAGE SPECIFIC STYLES */
/* ================================================================ */

/* Enhanced Club Banner */
.club-banner {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    padding: 5rem 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--theme-accent);
}

.club-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 80%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(45deg);
}

.club-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -15%;
    width: 80%;
    height: 200%;
    background: rgba(255, 255, 255, 0.02);
    transform: rotate(-45deg);
}

.club-stats {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--theme-accent);
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Enhanced Info Cards */
.info-cards {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    margin-bottom: 5rem;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 5px solid var(--theme-secondary);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--theme-accent), rgba(255, 215, 0, 0.1));
    transform: translate(50%, -50%) rotate(45deg);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.info-card:hover::before {
    transform: translate(30%, -30%) rotate(45deg) scale(1.2);
}

.info-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(3, 26, 84, 0.3);
}

.info-card .icon i {
    font-size: 1.8rem;
    color: white;
}

.info-card h4 {
    color: var(--theme-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.info-card p {
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.info-card .btn {
    position: relative;
    z-index: 2;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
}

/* Enhanced Events Section */
.events-section {
    background: linear-gradient(135deg, var(--color-gray-50), #ffffff);
    padding: 5rem 0;
    position: relative;
}

.events-header {
    text-align: center;
    margin-bottom: 4rem;
}

.events-header h2 {
    font-size: 3rem;
    color: var(--theme-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.events-header .divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, var(--theme-accent), #FFC700);
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

/* Enhanced Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    padding: 6rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Index Page Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }

    .hero-section {
        height: 65vh;
        min-height: 500px;
    }

    .club-logo {
        width: 180px;
        height: 180px;
    }

    .info-cards {
        margin-top: -40px;
    }

    .events-header h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 250px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-callsign {
        font-size: 1.1rem;
        padding: 8px 20px;
    }

    .info-card {
        padding: 2rem;
    }
}

/* ================================================================ */
/* ENHANCED FOOTER STYLES */
/* ================================================================ */

.w5obm-footer {
    background: linear-gradient(135deg, var(--w5obm-primary-blue) 0%, var(--w5obm-secondary-blue) 100%);
    color: white;
    padding: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.w5obm-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 80%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(45deg);
    z-index: 1;
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    position: relative;
    z-index: 2;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
}

.footer-callsign {
    background: linear-gradient(135deg, var(--w5obm-accent-gold), #FFC700);
    color: var(--w5obm-primary-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-stats .stat-item {
    text-align: center;
}

.footer-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--w5obm-accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--w5obm-accent-gold);
    transform: translateX(5px);
}

.footer-links a i {
    width: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover i {
    color: var(--w5obm-accent-gold);
}

.footer-links.horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links.horizontal li {
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--w5obm-accent-gold);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.contact-item strong {
    color: var(--w5obm-accent-gold);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--w5obm-accent-gold);
}

.footer-member-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-member-section h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--w5obm-accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--w5obm-accent-gold);
    color: var(--w5obm-primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-links a i {
    font-size: 1.2rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links.horizontal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-item i {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .footer-logo-section {
        flex-direction: column;
        text-align: center;
    }

    .footer-member-section {
        padding: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* ================================================================ */
/* END OF W5OBM CSS SYSTEM */
/* ================================================================ */