/*
================================================================================
SONSHINES BROTHERHOOD OF K9'S - OFFICIAL STYLESHEET
Theme: Law Enforcement Honor & Sunburst Gold
Readable CSS architecture for easy human maintenance and rapid updating.
================================================================================
TABLE OF CONTENTS:
  01. Design Tokens & Variables
  02. Reset & Typography Baseline
  03. Layout & Reusable Utilities
  04. Buttons & Badges
  05. Sticky Navigation Bar
  06. Hero Section (Intro)
  07. Mission Section (About)
  08. Events Section (Flyer & Calendars)
  09. Contact Section & Forms
  10. Footer
  11. Responsive Media Queries
================================================================================
*/

/* -------------------------------------------------------------------------- */
/* 01. DESIGN TOKENS & VARIABLES                                              */
/* -------------------------------------------------------------------------- */
:root {
    /* Brand Palette from Badge & Flyer */
    --color-bg-dark:        #0f1319;   /* Midnight Tactical Slate */
    --color-bg-surface:     #161b24;   /* Card & Section Base */
    --color-bg-elevated:    #1f2633;   /* Highlighted Container */
    --color-border:         #2a3547;   /* Subtle structural rules */
    
    --color-gold-light:     #f4c45b;   /* Sunburst Yellow-Gold */
    --color-gold:           #c89234;   /* Polished Badge Gold */
    --color-gold-dark:      #9c6d1d;   /* Burnished Bronze */

    --color-text-main:      #f0f3f7;   /* Primary high-contrast light text */
    --color-text-muted:     #a0abbd;   /* Supporting readable gray */
    --color-text-dim:       #717d91;   /* Tertiary labels & captions */

    /* Typography */
    --font-heading:         'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body:            'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Sizing & Transitions */
    --nav-height:           78px;
    --radius-sm:            4px;
    --radius-md:            8px;
    --radius-lg:            14px;
    --transition:           all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card:          0 10px 30px rgba(0, 0, 0, 0.45);
    --gold-glow:            0 0 25px rgba(200, 146, 52, 0.25);
}

/* -------------------------------------------------------------------------- */
/* 02. RESET & TYPOGRAPHY BASELINE                                            */
/* -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: dark;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

p {
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--color-gold-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #ffffff;
}

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

/* -------------------------------------------------------------------------- */
/* 03. LAYOUT & REUSABLE UTILITIES                                            */
/* -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem auto;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold-light);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.35rem;
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.12rem;
    color: var(--color-text-muted);
}

.text-gold {
    color: var(--color-gold-light) !important;
}

/* -------------------------------------------------------------------------- */
/* 04. BUTTONS & BADGES                                                       */
/* -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    color: #12151b !important;
    box-shadow: 0 4px 15px rgba(200, 146, 52, 0.35);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #ffe08a 0%, var(--color-gold-light) 100%);
    box-shadow: 0 6px 20px rgba(200, 146, 52, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold-light) !important;
}

.btn-outline:hover {
    background: rgba(200, 146, 52, 0.15);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 146, 52, 0.12);
    border: 1px solid rgba(200, 146, 52, 0.35);
    color: var(--color-gold-light);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* -------------------------------------------------------------------------- */
/* 05. STICKY DYNAMIC NAVIGATION BAR                                          */
/* -------------------------------------------------------------------------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(15, 19, 25, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

#header.scrolled {
    background-color: rgba(11, 14, 19, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(200, 146, 52, 0.3);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.4rem 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-gold-light);
}

/* Active Nav State - Spied by JavaScript */
.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold-light);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--color-gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition);
}

/* -------------------------------------------------------------------------- */
/* 06. HERO SECTION (INTRO)                                                   */
/* -------------------------------------------------------------------------- */
.hero-section {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 5.5rem;
    background: radial-gradient(circle at 75% 25%, rgba(200, 146, 52, 0.08) 0%, transparent 55%),
                linear-gradient(180deg, #0b0f14 0%, #11161f 100%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-title {
    font-size: 3.35rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2.25rem;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.stat-icon {
    font-size: 1.75rem;
    color: var(--color-gold);
}

.stat-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.hero-graphic-block {
    display: flex;
    justify-content: center;
}

.emblem-card {
    position: relative;
    padding: 1.5rem;
    background: radial-gradient(circle, rgba(200, 146, 52, 0.15) 0%, rgba(22, 27, 36, 0.9) 70%);
    border: 1px solid rgba(200, 146, 52, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card), var(--gold-glow);
    text-align: center;
}

.hero-emblem {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.65));
    transition: transform 0.4s ease;
}

.hero-emblem:hover {
    transform: scale(1.02);
}

.emblem-tagline {
    margin-top: 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-gold-light);
    text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* 07. MISSION SECTION (ABOUT)                                                */
/* -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--color-bg-dark);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-bottom: 4.5rem;
}

.pillar-card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    transition: var(--transition);
    position: relative;
}

.pillar-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.pillar-icon-box {
    width: 58px;
    height: 58px;
    background: rgba(200, 146, 52, 0.1);
    border: 1px solid rgba(200, 146, 52, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-gold-light);
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
}

.pillar-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

/* Featured Venue / Banquet Component */
.about-feature-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-feature-img-wrap {
    position: relative;
    min-height: 380px;
}

.about-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: rgba(15, 19, 25, 0.85);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(200, 146, 52, 0.4);
}

.about-feature-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-feature-text h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
}

.check-list i {
    color: var(--color-gold-light);
    font-size: 0.9rem;
}

.quote-bar {
    border-left: 3px solid var(--color-gold);
    padding-left: 1.25rem;
    margin-top: 1rem;
    font-style: italic;
    color: var(--color-text-muted);
}

/* -------------------------------------------------------------------------- */
/* 08. EVENTS SECTION (FLYER & CALENDARS)                                     */
/* -------------------------------------------------------------------------- */
.events-section {
    background-color: #121720;
}

/* Featured Event Card (From Flyer Brief) */
.featured-event-card {
    background: linear-gradient(145deg, #18202d 0%, #141a24 100%);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--gold-glow);
    margin-bottom: 4rem;
}

.featured-ribbon {
    position: absolute;
    top: -14px;
    left: 2.5rem;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: #12151b;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.event-main-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: center;
}

.event-flyer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gold-frame {
    width: 170px;
    height: 180px;
    border: 2px solid var(--color-gold);
    background: rgba(15, 19, 25, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 15px rgba(200, 146, 52, 0.2);
}

.event-month {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-gold-light);
    letter-spacing: 0.1em;
}

.event-day {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.event-year {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dim);
}

.event-time-pill {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold-light);
    background: rgba(200, 146, 52, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    border: 1px solid rgba(200, 146, 52, 0.25);
}

.event-meta-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.event-headline {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.event-summary {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.event-info-items {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
    background: rgba(15, 19, 25, 0.5);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
}

.info-row i {
    font-size: 1.15rem;
    color: var(--color-gold);
    margin-top: 0.2rem;
}

.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Past Events List */
.sub-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.sub-section-title i {
    color: var(--color-gold);
}

.events-history-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.history-card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.history-date {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.history-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.history-card p {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.history-status {
    font-size: 0.8rem;
    font-weight: 600;
}

.history-status.completed {
    color: #4ade80;
}

/* -------------------------------------------------------------------------- */
/* 09. CONTACT SECTION & FORMS                                                */
/* -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--color-bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
}

.contact-card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: var(--shadow-card);
}

.card-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(200, 146, 52, 0.2);
    background-color: #242c3b;
}

.form-feedback {
    margin-top: 1rem;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

.form-feedback.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Info Side-card */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(200, 146, 52, 0.1);
    border: 1px solid rgba(200, 146, 52, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-text-dim);
    margin-bottom: 0.2rem;
}

.detail-value {
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.detail-value.link:hover {
    color: var(--color-gold-light);
}

.motto-box {
    background: rgba(15, 19, 25, 0.6);
    border-left: 3px solid var(--color-gold);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.social-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #12151b;
    transform: translateY(-3px);
}

/* -------------------------------------------------------------------------- */
/* 10. FOOTER                                                                 */
/* -------------------------------------------------------------------------- */
.footer {
    background-color: #0a0d12;
    padding: 3.5rem 0 2.5rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.footer-brand h4 {
    font-size: 1.2rem;
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    width: 100%;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--color-text-dim);
}

/* -------------------------------------------------------------------------- */
/* 11. RESPONSIVE MEDIA QUERIES                                               */
/* -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-feature-box {
        grid-template-columns: 1fr;
    }

    .about-feature-img-wrap {
        min-height: 280px;
    }

    .event-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-info-items {
        text-align: left;
    }

    .event-actions {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background-color: rgba(15, 19, 25, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--color-gold);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-cta {
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .events-history-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}