/*
Theme Name: DAV Seminole County Chapter 30
Theme URI: https://davseminole.org
Author: DAV Chapter 30
Description: Custom theme for DAV Seminole County Chapter 30 following official DAV brand guidelines.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dav-chapter30
*/

/* ==========================================================================
   Klavika Font (DAV Brand Font)
   ========================================================================== */
/* 
 * INSTRUCTIONS: Place your licensed Klavika font files in the /fonts/ folder:
 *   - klavika-regular.woff2, klavika-regular.woff
 *   - klavika-medium.woff2, klavika-medium.woff  
 *   - klavika-bold.woff2, klavika-bold.woff
 *   - klavika-light.woff2, klavika-light.woff (optional)
 */

@font-face {
    font-family: 'Klavika';
    src: url('fonts/klavika-light.woff2') format('woff2'),
         url('fonts/klavika-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Klavika';
    src: url('fonts/klavika-regular.woff2') format('woff2'),
         url('fonts/klavika-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Klavika';
    src: url('fonts/klavika-medium.woff2') format('woff2'),
         url('fonts/klavika-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Klavika';
    src: url('fonts/klavika-bold.woff2') format('woff2'),
         url('fonts/klavika-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   DAV Brand Colors (from DAV Stylebook 2021)
   ========================================================================== */
:root {
    /* Primary Colors */
    --dav-nightvision-green: #bed12b;
    --dav-gunmetal-grey: #5b5c5a;
    
    /* Secondary Colors */
    --dav-tan: #aa985e;
    --dav-olive-green: #2d430c;
    
    /* Tertiary Colors */
    --dav-red: #b30838;
    --dav-orange: #ef7623;
    
    /* Utility Colors */
    --dav-white: #ffffff;
    --dav-black: #000000;
    --dav-light-grey: #f5f5f5;
    
    /* Typography - Klavika is the official DAV brand font */
    --font-display: 'Klavika', 'Oswald', Arial, sans-serif;
    --font-body: 'Klavika', 'Source Sans Pro', Arial, sans-serif;
    --font-serif: 'Klavika', 'Merriweather', 'Times New Roman', serif;
    
    /* Theme Mode Colors (Light Mode - Default) */
    --theme-bg: #ffffff;
    --theme-bg-alt: #f5f5f5;
    --theme-bg-dark: #5b5c5a;
    --theme-text: #5b5c5a;
    --theme-text-light: #666666;
    --theme-text-inverse: #ffffff;
    --theme-border: #dddddd;
    --theme-accent: #bed12b;
    --theme-link: #bed12b;
    --theme-header-bg: #5b5c5a;
    --theme-card-bg: #ffffff;
    --theme-input-bg: #ffffff;
    --theme-shadow: rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Dark Mode Theme
   ========================================================================== */
[data-theme="dark"] {
    --theme-bg: #1a1a1a;
    --theme-bg-alt: #2d2d2d;
    --theme-bg-dark: #0d0d0d;
    --theme-text: #e0e0e0;
    --theme-text-light: #b0b0b0;
    --theme-text-inverse: #1a1a1a;
    --theme-border: #444444;
    --theme-accent: #bed12b;
    --theme-link: #bed12b;
    --theme-header-bg: #0d0d0d;
    --theme-card-bg: #2d2d2d;
    --theme-input-bg: #2d2d2d;
    --theme-shadow: rgba(0, 0, 0, 0.4);
    
    /* Override specific DAV colors for dark mode */
    --dav-light-grey: #2d2d2d;
}

[data-theme="dark"] body {
    background-color: var(--theme-bg);
    color: var(--theme-text);
}

[data-theme="dark"] .site-header {
    background-color: var(--theme-header-bg);
}

[data-theme="dark"] .section--grey {
    background-color: var(--theme-bg-alt);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .contact-info-box {
    background-color: var(--theme-card-bg);
    border-color: var(--theme-border);
}

[data-theme="dark"] .service-card h3,
[data-theme="dark"] .contact-info-box h3,
[data-theme="dark"] .contact-info-box h4 {
    color: var(--theme-text);
}

[data-theme="dark"] .service-card p,
[data-theme="dark"] .contact-info-box p {
    color: var(--theme-text-light);
}

[data-theme="dark"] .event-item {
    background-color: var(--theme-card-bg);
}

[data-theme="dark"] .event-details h4 {
    color: var(--theme-text);
}

[data-theme="dark"] .event-details p {
    color: var(--theme-text-light);
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea {
    background-color: var(--theme-input-bg);
    border-color: var(--theme-border);
    color: var(--theme-text);
}

[data-theme="dark"] .contact-form input::placeholder,
[data-theme="dark"] .contact-form textarea::placeholder {
    color: var(--theme-text-light);
}

[data-theme="dark"] .mission-text p {
    color: var(--theme-text-light);
}

[data-theme="dark"] .site-footer {
    background-color: var(--theme-header-bg);
}

[data-theme="dark"] a {
    color: var(--theme-link);
}

[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] h4, 
[data-theme="dark"] h5, 
[data-theme="dark"] h6 {
    color: var(--theme-text);
}

[data-theme="dark"] .section--dark {
    background-color: #0d0d0d;
}

/* Dark mode button fixes */
[data-theme="dark"] .btn--outline {
    color: var(--theme-text);
    border-color: var(--theme-text);
}

[data-theme="dark"] .btn--outline:hover {
    background-color: var(--dav-nightvision-green);
    border-color: var(--dav-nightvision-green);
    color: var(--dav-gunmetal-grey);
}

[data-theme="dark"] .btn--green {
    background-color: var(--dav-nightvision-green);
    color: var(--dav-gunmetal-grey);
    border-color: var(--dav-nightvision-green);
}

[data-theme="dark"] .btn--green:hover {
    background-color: var(--theme-text);
    border-color: var(--theme-text);
    color: var(--theme-bg);
}

[data-theme="dark"] .value-item {
    background-color: var(--theme-card-bg);
    border: 1px solid var(--theme-border);
}

[data-theme="dark"] .value-item h4 {
    color: var(--dav-nightvision-green);
}

[data-theme="dark"] .value-item:hover {
    background-color: var(--dav-nightvision-green);
}

[data-theme="dark"] .value-item:hover h4 {
    color: var(--dav-gunmetal-grey);
}

[data-theme="dark"] .contact-link {
    color: var(--theme-text) !important;
}

[data-theme="dark"] .contact-link:hover,
[data-theme="dark"] .contact-link:focus {
    color: var(--dav-nightvision-green) !important;
}

/* ==========================================================================
   High Contrast Mode Theme
   ========================================================================== */
[data-theme="high-contrast"] {
    --theme-bg: #000000;
    --theme-bg-alt: #000000;
    --theme-bg-dark: #000000;
    --theme-text: #ffffff;
    --theme-text-light: #ffffff;
    --theme-text-inverse: #000000;
    --theme-border: #ffffff;
    --theme-accent: #ffff00;
    --theme-link: #ffff00;
    --theme-header-bg: #000000;
    --theme-card-bg: #000000;
    --theme-input-bg: #000000;
    --theme-shadow: none;
    
    --dav-nightvision-green: #ffff00;
    --dav-light-grey: #000000;
}

[data-theme="high-contrast"] body {
    background-color: #000000;
    color: #ffffff;
}

[data-theme="high-contrast"] * {
    border-radius: 0 !important;
}

[data-theme="high-contrast"] .site-header {
    background-color: #000000;
    border-bottom: 3px solid #ffffff;
}

[data-theme="high-contrast"] .main-navigation a,
[data-theme="high-contrast"] .site-title a {
    color: #ffffff !important;
}

[data-theme="high-contrast"] .main-navigation a:hover,
[data-theme="high-contrast"] .main-navigation a:focus {
    color: #ffff00 !important;
    outline: 2px solid #ffff00;
    outline-offset: 2px;
}

[data-theme="high-contrast"] .hero {
    background: #000000 !important;
    border-bottom: 3px solid #ffffff;
}

[data-theme="high-contrast"] .hero h1,
[data-theme="high-contrast"] .hero p {
    color: #ffffff;
    text-shadow: none;
}

[data-theme="high-contrast"] .hero h1 span {
    color: #ffff00;
}

[data-theme="high-contrast"] .section--grey,
[data-theme="high-contrast"] .section--dark {
    background-color: #000000;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

[data-theme="high-contrast"] h1, 
[data-theme="high-contrast"] h2, 
[data-theme="high-contrast"] h3, 
[data-theme="high-contrast"] h4, 
[data-theme="high-contrast"] h5, 
[data-theme="high-contrast"] h6 {
    color: #ffffff;
}

[data-theme="high-contrast"] p,
[data-theme="high-contrast"] li,
[data-theme="high-contrast"] span {
    color: #ffffff;
}

[data-theme="high-contrast"] a {
    color: #ffff00;
    text-decoration: underline;
}

[data-theme="high-contrast"] a:hover,
[data-theme="high-contrast"] a:focus {
    outline: 2px solid #ffff00;
    outline-offset: 2px;
}

[data-theme="high-contrast"] .btn,
[data-theme="high-contrast"] .btn--primary,
[data-theme="high-contrast"] .btn--secondary,
[data-theme="high-contrast"] .btn--outline {
    background-color: #ffff00 !important;
    color: #000000 !important;
    border: 3px solid #ffffff !important;
    font-weight: 700;
}

[data-theme="high-contrast"] .btn:hover,
[data-theme="high-contrast"] .btn:focus {
    background-color: #ffffff !important;
    color: #000000 !important;
    outline: 3px solid #ffff00;
    outline-offset: 2px;
}

[data-theme="high-contrast"] .service-card,
[data-theme="high-contrast"] .event-item,
[data-theme="high-contrast"] .contact-form,
[data-theme="high-contrast"] .contact-info-box {
    background-color: #000000;
    border: 2px solid #ffffff;
}

[data-theme="high-contrast"] .service-card h3,
[data-theme="high-contrast"] .service-card p,
[data-theme="high-contrast"] .event-details h4,
[data-theme="high-contrast"] .event-details p,
[data-theme="high-contrast"] .contact-info-box h3,
[data-theme="high-contrast"] .contact-info-box h4,
[data-theme="high-contrast"] .contact-info-box p {
    color: #ffffff;
}

[data-theme="high-contrast"] .service-icon i {
    color: #ffff00;
}

[data-theme="high-contrast"] .event-date {
    background-color: #ffff00;
    color: #000000;
}

[data-theme="high-contrast"] .event-date .month,
[data-theme="high-contrast"] .event-date .day {
    color: #000000;
}

[data-theme="high-contrast"] .contact-form input,
[data-theme="high-contrast"] .contact-form textarea {
    background-color: #000000;
    border: 2px solid #ffffff;
    color: #ffffff;
}

[data-theme="high-contrast"] .contact-form input:focus,
[data-theme="high-contrast"] .contact-form textarea:focus {
    outline: 3px solid #ffff00;
    outline-offset: 2px;
}

[data-theme="high-contrast"] .contact-form input::placeholder,
[data-theme="high-contrast"] .contact-form textarea::placeholder {
    color: #cccccc;
}

[data-theme="high-contrast"] .contact-info-item i {
    color: #ffff00;
}

[data-theme="high-contrast"] .address-box {
    background: #000000 !important;
    border: 2px solid #ffffff;
}

[data-theme="high-contrast"] .address-box h3,
[data-theme="high-contrast"] .address-box address {
    color: #ffffff;
}

[data-theme="high-contrast"] .address-icon i {
    color: #ffff00;
}

[data-theme="high-contrast"] .address-btn {
    background-color: #ffff00 !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
}

[data-theme="high-contrast"] .site-footer {
    background-color: #000000;
    border-top: 3px solid #ffffff;
}

[data-theme="high-contrast"] .site-footer,
[data-theme="high-contrast"] .site-footer p,
[data-theme="high-contrast"] .site-footer h4,
[data-theme="high-contrast"] .site-footer a {
    color: #ffffff;
}

[data-theme="high-contrast"] .site-footer a:hover {
    color: #ffff00;
}

[data-theme="high-contrast"] .value-item {
    border-color: #ffff00;
    background-color: #000000;
}

[data-theme="high-contrast"] .value-item h4 {
    color: #ffff00;
}

[data-theme="high-contrast"] .value-item:hover {
    background-color: #ffff00;
}

[data-theme="high-contrast"] .value-item:hover h4 {
    color: #000000;
}

/* High contrast contact link styles */
[data-theme="high-contrast"] .contact-link {
    color: #ffff00 !important;
    text-decoration: underline;
}

[data-theme="high-contrast"] .contact-link:hover,
[data-theme="high-contrast"] .contact-link:focus {
    color: #ffffff !important;
    outline: 2px solid #ffff00;
    outline-offset: 2px;
}

/* ==========================================================================
   Theme Switcher Styles
   ========================================================================== */

/* Desktop Theme Switcher - Fixed position in corner */
.desktop-theme-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none; /* Hidden on mobile by default */
    flex-direction: column;
    gap: 5px;
    background: var(--theme-bg-dark, #5b5c5a);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--theme-accent, #bed12b);
}

/* Show desktop theme switcher on larger screens */
@media (min-width: 992px) {
    .desktop-theme-switcher {
        display: flex;
    }
}

/* Legacy .theme-switcher - hide on mobile */
.theme-switcher {
    display: none;
}

@media (min-width: 992px) {
    .theme-switcher {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: var(--theme-bg-dark, #5b5c5a);
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border: 2px solid var(--theme-accent, #bed12b);
    }
}

/* Mobile Theme Switcher - Inside hamburger menu */
/* Hidden by default, only shown on mobile when menu is open */
.mobile-theme-switcher {
    display: none;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Only show mobile theme switcher on mobile devices (below 992px) */
@media (max-width: 991px) {
    .mobile-theme-switcher {
        display: block;
    }
}

.mobile-theme-switcher .theme-switcher-label {
    color: var(--dav-nightvision-green);
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-theme-switcher .theme-switcher-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-theme-switcher .theme-btn {
    width: 100%;
    height: auto;
    padding: 12px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.mobile-theme-switcher .theme-btn span {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-theme-switcher .theme-btn[data-theme="light"] {
    background-color: #ffffff;
    color: #5b5c5a;
}

.mobile-theme-switcher .theme-btn[data-theme="dark"] {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

.mobile-theme-switcher .theme-btn[data-theme="high-contrast"] {
    background-color: #000000;
    color: #ffff00;
    border: 2px solid #ffff00;
}

.mobile-theme-switcher .theme-btn.active {
    border-color: var(--dav-nightvision-green);
    box-shadow: 0 0 10px rgba(190, 209, 43, 0.5);
}

.mobile-theme-switcher .theme-btn:hover {
    transform: translateX(5px);
}

.theme-switcher-label {
    color: var(--dav-white);
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.theme-switcher-buttons {
    display: flex;
    gap: 5px;
}

.theme-btn {
    width: 36px;
    height: 36px;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.theme-btn:hover {
    transform: scale(1.1);
}

.theme-btn:focus {
    outline: 2px solid var(--theme-accent);
    outline-offset: 2px;
}

.theme-btn[data-theme="light"] {
    background-color: #ffffff;
    color: #5b5c5a;
}

.theme-btn[data-theme="dark"] {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.theme-btn[data-theme="high-contrast"] {
    background-color: #000000;
    color: #ffff00;
    border: 2px solid #ffff00;
}

.theme-btn.active {
    border-color: var(--theme-accent);
    box-shadow: 0 0 10px var(--theme-accent);
}

[data-theme="high-contrast"] .theme-switcher {
    border: 3px solid #ffffff;
    background: #000000;
}

[data-theme="high-contrast"] .theme-switcher-label {
    color: #ffff00;
}

[data-theme="high-contrast"] .theme-btn {
    border-width: 3px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--dav-nightvision-green);
    color: var(--dav-gunmetal-grey);
    padding: 10px 20px;
    z-index: 100000;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-display);
}

.skip-link:focus {
    top: 0;
}

[data-theme="high-contrast"] .skip-link {
    background: #ffff00;
    color: #000000;
    border: 3px solid #ffffff;
}

@media (max-width: 768px) {
    .theme-switcher {
        bottom: 10px;
        right: 10px;
        padding: 8px;
    }
    
    .theme-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .theme-switcher-label {
        font-size: 0.6rem;
    }
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dav-gunmetal-grey);
    background-color: var(--dav-white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--dav-nightvision-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dav-nightvision-green);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dav-gunmetal-grey);
    margin-top: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section--grey {
    background-color: var(--dav-light-grey);
}

.section--dark {
    background-color: var(--dav-gunmetal-grey);
    color: var(--dav-white);
}

.section--dark h2,
.section--dark h3 {
    color: var(--dav-white);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background-color: var(--dav-gunmetal-grey);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.site-title {
    color: var(--dav-white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.site-title a {
    color: var(--dav-white);
}

.site-title span {
    color: var(--dav-nightvision-green);
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: var(--dav-white);
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--dav-nightvision-green);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--dav-nightvision-green);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dav-white);
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X animation */
.menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--dav-gunmetal-grey) 0%, #3a3b39 100%);
    color: var(--dav-white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon fill="%23bed12b" opacity="0.1" points="0,100 50,0 100,100"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

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

.hero h1 {
    font-size: 3rem;
    color: var(--dav-white);
    margin-bottom: 10px;
}

.hero h1 span {
    color: var(--dav-nightvision-green);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--dav-nightvision-green);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

/* Primary Button - Solid white with dark text (high contrast) */
.btn--primary {
    background-color: var(--dav-white);
    color: var(--dav-gunmetal-grey);
    border-color: var(--dav-white);
}

.btn--primary:hover {
    background-color: var(--dav-nightvision-green);
    border-color: var(--dav-nightvision-green);
    color: var(--dav-gunmetal-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(190, 209, 43, 0.4);
}

/* Secondary Button - Outlined white for dark backgrounds */
.btn--secondary {
    background-color: transparent;
    color: var(--dav-white);
    border: 2px solid var(--dav-white);
}

.btn--secondary:hover {
    background-color: var(--dav-white);
    color: var(--dav-gunmetal-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Outline Button - For light backgrounds */
.btn--outline {
    background-color: transparent;
    color: var(--dav-gunmetal-grey);
    border: 2px solid var(--dav-gunmetal-grey);
}

.btn--outline:hover {
    background-color: var(--dav-gunmetal-grey);
    color: var(--dav-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(91, 92, 90, 0.3);
}

/* Green solid button variant */
.btn--green {
    background-color: var(--dav-gunmetal-grey);
    color: var(--dav-white);
    border-color: var(--dav-gunmetal-grey);
}

.btn--green:hover {
    background-color: var(--dav-nightvision-green);
    border-color: var(--dav-nightvision-green);
    color: var(--dav-gunmetal-grey);
    transform: translateY(-2px);
}

/* ==========================================================================
   Interactive Address Box
   ========================================================================== */
.address-box {
    background: linear-gradient(135deg, var(--dav-gunmetal-grey) 0%, #4a4b49 100%);
    border-left: 5px solid var(--dav-nightvision-green);
    padding: 30px;
    margin: 30px 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.address-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dav-nightvision-green);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.address-box:hover::before {
    transform: translateX(0);
}

.address-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.address-box-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.address-box:hover .address-box-content {
    color: var(--dav-gunmetal-grey);
}

.address-icon {
    font-size: 3rem;
    color: var(--dav-nightvision-green);
    transition: color 0.3s ease;
}

.address-box:hover .address-icon,
.address-box:hover .address-icon i {
    color: var(--dav-gunmetal-grey);
}

.address-details {
    flex: 1;
}

.address-details h3 {
    color: var(--dav-white);
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.address-box:hover .address-details h3 {
    color: var(--dav-gunmetal-grey);
}

.address-details address {
    font-style: normal;
    color: var(--dav-white);
    font-size: 1.1rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.address-box:hover .address-details address,
.address-box:hover .address-details address strong {
    color: var(--dav-gunmetal-grey);
}

.address-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.address-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--dav-nightvision-green);
    color: var(--dav-gunmetal-grey);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-btn:hover {
    background-color: var(--dav-white);
    color: var(--dav-gunmetal-grey);
    transform: scale(1.05);
}

.address-box:hover .address-btn {
    background-color: var(--dav-gunmetal-grey);
    color: var(--dav-white);
}

.address-box:hover .address-btn:hover {
    background-color: var(--dav-white);
    color: var(--dav-gunmetal-grey);
}

/* Address Box Tooltip */
.address-box-tooltip {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--dav-nightvision-green);
    color: var(--dav-gunmetal-grey);
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.address-box:hover .address-box-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Mission Section
   ========================================================================== */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-text h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.mission-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--dav-nightvision-green);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background-color: var(--dav-light-grey);
    transition: all 0.3s ease;
}

.value-item:hover {
    background-color: var(--dav-gunmetal-grey);
    color: var(--dav-white);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.value-item h4 {
    color: var(--dav-nightvision-green);
    margin-bottom: 5px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.value-item:hover h4 {
    color: var(--dav-white);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--dav-white);
    padding: 40px 30px;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-bottom-color: var(--dav-nightvision-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--dav-nightvision-green);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
}

/* ==========================================================================
   Events Section
   ========================================================================== */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    background-color: var(--dav-white);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.event-date {
    background-color: var(--dav-gunmetal-grey);
    color: var(--dav-white);
    padding: 20px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .month {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--dav-nightvision-green);
}

.event-date .day {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-details {
    padding: 20px;
    flex: 1;
}

.event-details h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.event-details p {
    margin: 0;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.event-time {
    color: var(--dav-nightvision-green);
    font-weight: 600;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--dav-nightvision-green);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-box {
    background-color: var(--dav-gunmetal-grey);
    color: var(--dav-white);
    padding: 40px;
}

.contact-info-box h3 {
    color: var(--dav-white);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    color: var(--dav-nightvision-green);
    font-size: 1.5rem;
    margin-top: 3px;
}

.contact-info-item h4 {
    color: var(--dav-nightvision-green);
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.contact-info-item p {
    margin: 0;
    opacity: 0.9;
}

/* Contact links on dark background - bright green for visibility */
.contact-link,
.contact-info-box .contact-link,
.contact-info-item .contact-link,
.contact-info-item p a.contact-link,
a.contact-link {
    color: var(--dav-nightvision-green) !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-link:hover,
.contact-link:focus,
.contact-info-box .contact-link:hover,
.contact-info-box .contact-link:focus,
.contact-info-item .contact-link:hover,
.contact-info-item .contact-link:focus,
a.contact-link:hover,
a.contact-link:focus {
    color: var(--dav-white) !important;
    border-bottom-color: var(--dav-white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--dav-gunmetal-grey);
    color: var(--dav-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--dav-nightvision-green);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: var(--dav-white);
    opacity: 0.85;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-section ul a:hover,
.footer-section ul a:focus {
    color: var(--dav-nightvision-green);
    opacity: 1;
    padding-left: 5px;
    border-bottom-color: var(--dav-nightvision-green);
}

/* Footer contact links - always bright green */
.footer-contact-link {
    color: var(--dav-nightvision-green) !important;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus {
    color: var(--dav-white) !important;
    border-bottom-color: var(--dav-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--dav-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover,
.social-links a:focus {
    background-color: var(--dav-nightvision-green);
    color: var(--dav-gunmetal-grey);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(190, 209, 43, 0.4);
}

/* ==========================================================================
   Responsive Design - Mobile First Approach
   ========================================================================== */

/* ===== BASE MOBILE STYLES (320px and up) ===== */
/* These are the default styles - mobile first */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 40px 0;
}

/* Mobile Typography */
h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

/* Mobile Navigation */
.site-header .container {
    flex-wrap: wrap;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dav-white);
    margin: 5px 0;
    transition: 0.3s;
}

.main-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--dav-gunmetal-grey);
    padding: 80px 20px 20px;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.main-navigation.active {
    left: 0;
}

.main-navigation ul {
    flex-direction: column;
    gap: 0;
}

.main-navigation ul li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-navigation a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
}

/* Mobile Hero */
.hero {
    padding: 60px 0;
    min-height: auto;
}

.hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
}

.hero-tagline {
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1rem;
    padding: 0 10px;
}

.hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

/* Mobile Buttons */
.btn {
    padding: 12px 20px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
}

/* Mobile Location/Address Section */
.location-container {
    grid-template-columns: 1fr !important;
}

.address-box {
    padding: 25px 20px !important;
}

.address-box-content {
    text-align: center;
    align-items: center;
}

.address-icon {
    font-size: 2.5rem !important;
}

.address-details h3 {
    font-size: 1.25rem !important;
}

.address-details address {
    font-size: 1rem !important;
}

.address-actions {
    flex-direction: column;
    width: 100%;
}

.address-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
}

.map-container {
    min-height: 250px !important;
}

/* Mobile Mission Section */
.mission-content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
}

.mission-image {
    order: -1;
}

.mission-image img {
    height: 250px !important;
}

.mission-values {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
}

.value-item {
    padding: 15px;
}

/* Mobile Services Grid */
.services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
}

.service-card {
    padding: 30px 20px;
}

.service-icon {
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.1rem;
}

/* Mobile Events */
.events-list {
    padding: 0 10px;
}

.event-item {
    flex-direction: column !important;
    text-align: center;
    padding: 20px;
    gap: 15px;
}

.event-date {
    flex-direction: row !important;
    justify-content: center;
    gap: 10px;
    width: auto;
    padding: 10px 20px;
}

.event-date .month,
.event-date .day {
    font-size: 1rem;
}

.event-details {
    text-align: center;
}

.event-details h4 {
    font-size: 1.1rem;
}

/* Mobile Contact Section */
.contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
}

.contact-form {
    padding: 25px 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    font-size: 1rem;
}

.contact-info-box {
    padding: 25px 20px;
}

.contact-info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.contact-info-item i {
    margin-bottom: 10px;
}

/* Mobile Footer */
.footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
    text-align: center;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    justify-content: center;
}

/* Mobile Theme Switcher */
.theme-switcher {
    bottom: 10px;
    right: 10px;
    padding: 8px;
}

.theme-btn {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
}

.theme-switcher-label {
    font-size: 0.55rem;
}

/* ===== LARGE MOBILE (480px and up) ===== */
@media (min-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 180px;
    }
    
    .btn {
        width: auto;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .address-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .address-btn {
        width: auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .mission-values {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .event-item {
        flex-direction: row !important;
        text-align: left;
    }
    
    .event-date {
        flex-direction: column !important;
        width: 80px;
        min-width: 80px;
        padding: 15px;
    }
    
    .event-details {
        text-align: left;
    }
    
    .contact-info-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .contact-info-item i {
        margin-bottom: 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        text-align: left;
    }
    
    .footer-section ul {
        align-items: flex-start;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

/* ===== TABLET (768px and up) ===== */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    /* Tablet Typography */
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    
    /* Tablet Navigation - Still mobile menu but wider */
    .main-navigation {
        width: 50%;
        max-width: 350px;
    }
    
    /* Tablet Hero */
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.125rem;
        letter-spacing: 3px;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    /* Tablet Location Section */
    .location-container {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .address-box {
        padding: 35px !important;
    }
    
    .address-box-content {
        text-align: left;
        align-items: flex-start;
    }
    
    .address-actions {
        justify-content: flex-start;
    }
    
    .map-container {
        min-height: 350px !important;
    }
    
    /* Tablet Mission */
    .mission-image {
        order: 0;
    }
    
    .mission-image img {
        height: 350px !important;
    }
    
    /* Tablet Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    /* Tablet Contact */
    .contact-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .contact-form,
    .contact-info-box {
        padding: 35px;
    }
    
    /* Tablet Footer */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    /* Tablet Theme Switcher */
    .theme-switcher {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }
    
    .theme-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .theme-switcher-label {
        font-size: 0.6rem;
    }
}

/* ===== DESKTOP (992px and up) ===== */
@media (min-width: 992px) {
    .container {
        padding: 0 40px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    /* Desktop Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.5rem; }
    
    /* Desktop Navigation - Full horizontal menu */
    .menu-toggle {
        display: none;
    }
    
    .main-navigation {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background-color: transparent;
        padding: 0;
        overflow: visible;
    }
    
    .main-navigation ul {
        flex-direction: row;
        gap: 30px;
    }
    
    .main-navigation ul li {
        border-bottom: none;
    }
    
    .main-navigation a {
        padding: 10px 0;
        font-size: 1rem;
    }
    
    /* Desktop Hero */
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    /* Desktop Mission */
    .mission-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 50px !important;
    }
    
    .mission-image img {
        height: 400px !important;
    }
    
    /* Desktop Services */
    .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    /* Desktop Contact */
    .contact-form,
    .contact-info-box {
        padding: 40px;
    }
    
    /* Desktop Footer */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 40px;
    }
}

/* ===== LARGE DESKTOP (1200px and up) ===== */
@media (min-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.35rem;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    .main-navigation a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .address-btn {
        min-height: 48px;
    }
    
    .social-links a {
        width: 48px;
        height: 48px;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .value-item:hover,
    .event-item:hover {
        transform: none;
    }
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,
    .site-footer,
    .theme-switcher,
    .menu-toggle,
    .hero-buttons,
    .address-actions,
    .social-links {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: #000 !important;
        padding: 20px 0;
    }
    
    .hero h1,
    .hero p {
        color: #000 !important;
    }
    
    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .service-card,
    .event-item {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.green-text { color: var(--dav-nightvision-green); }
.white-text { color: var(--dav-white); }
.grey-text { color: var(--dav-gunmetal-grey); }

/* Small Button Variant */
.btn--small {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Event Location Style */
.event-location {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
}

.event-location i {
    color: var(--dav-nightvision-green);
    margin-right: 5px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
