/* ==========================================================================
   VIHF — Sport & Prestasjon
   Dynamic, bold design with strong contrasts, diagonal cuts, and sport energy
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #002885;
    --primary-dark: #001a5c;
    --primary-light: #003db8;
    --accent: #7959ef;
    --accent-hover: #6040d4;
    --text: #1a1c1e;
    --text-secondary: #52565a;
    --bg: #ffffff;
    --bg-alt: #f0f2f5;
    --bg-dark: #0a1628;
    --border: #dce0e5;
    --success: #0a8754;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --container: 1140px;
    --header-h: 72px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

/* --- Utilities --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* --- Skip link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--accent);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    z-index: 1000;
    font-weight: 600;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); color: #fff; }

.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--primary); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* --- Link arrow --- */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--accent);
}
.link-arrow::after { content: '\2192'; transition: transform var(--transition); }
.link-arrow:hover::after { transform: translateX(4px); }

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: #fff;
    padding: 1rem;
    z-index: 900;
}
.cookie-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.875rem; margin: 0; }

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
    background: var(--primary);
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
}
.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: #fff;
}
.logo-text {
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

/* Nav */
.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}
.nav-list > li > a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: #fff;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 10;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
}
.dropdown a:hover { background: var(--bg-alt); color: var(--accent); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,40,133,0.95) 0%, rgba(0,20,70,0.8) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: calc(var(--header-h) + 2rem);
}
.hero-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(121,89,239,0.3);
    border: 1px solid rgba(121,89,239,0.5);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}
.hero h1 { color: #fff; margin-bottom: 1rem; max-width: 700px; }
.hero-sub {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-angle {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 3;
}

/* Page hero (subpages) */
.hero-page {
    min-height: 340px;
    align-items: flex-end;
    padding-bottom: 3rem;
}
.hero-page .hero-content { padding-top: calc(var(--header-h) + 3rem); }
.hero-page h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.5rem; }
.hero-page .hero-sub { font-size: 1.0625rem; margin-bottom: 0; }

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { color: rgba(255,255,255,0.4); }
.breadcrumbs .current { color: rgba(255,255,255,0.9); }

/* === NEXT EVENT === */
.next-event { padding: 0; margin-top: -2rem; position: relative; z-index: 4; }
.event-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-left: 5px solid var(--accent);
}
.event-badge {
    background: var(--accent);
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.event-info time {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.25rem;
}
.event-info h2 {
    font-size: 1.375rem;
    margin-bottom: 0.125rem;
}
.event-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* === STATS BAR === */
.stats-bar {
    padding: 3rem 0;
    background: var(--bg);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.02em;
}
.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === SECTIONS === */
.section { padding: 5rem 0; }
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

/* === NEWS === */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.news-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.news-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.news-body { padding: 1.25rem 1.5rem; }
.news-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.news-body h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.news-body h3 a { color: var(--text); }
.news-body h3 a:hover { color: var(--accent); }
.news-body p { font-size: 0.9375rem; color: var(--text-secondary); }

/* === SPORT SECTION === */
.section-sport {
    background: var(--bg-dark);
    color: #fff;
    position: relative;
    padding: 6rem 0;
}
.section-sport h2 { color: #fff; }
.section-sport p { color: rgba(255,255,255,0.75); }

.diagonal-top, .diagonal-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1;
}
.diagonal-top {
    top: -1px;
    background: var(--bg);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.section-sport + .section .diagonal-top { background: var(--bg); }
.diagonal-bottom {
    bottom: -1px;
    background: var(--bg);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.split-text .section-tag { color: var(--accent); }
.split-text h2 { margin-bottom: 1rem; }
.split-text p { margin-bottom: 2rem; font-size: 1.0625rem; line-height: 1.7; }

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #1a2a4a 0%, #2a3a5a 100%);
}

/* === ACTIVITIES === */
.section-activities { background: var(--bg); }
.section-activities h2 { margin-bottom: 3rem; }

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.activity-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
    border: 2px solid transparent;
}
.activity-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: var(--text);
}
.activity-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
}
.activity-card h3 { margin-bottom: 0.5rem; font-size: 1.125rem; }
.activity-card p { font-size: 0.875rem; color: var(--text-secondary); }

/* === GRASROT === */
.section-grasrot { background: var(--bg-alt); }
.grasrot-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.grasrot-card h2 { margin-bottom: 1rem; }
.grasrot-sms {
    font-size: 1.125rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    display: inline-block;
}
.grasrot-vipps {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* === CTA === */
.section-cta {
    background: var(--primary);
    color: #fff;
    position: relative;
    padding: 6rem 0 5rem;
}
.section-cta .diagonal-top { background: var(--bg-alt); }
.section-cta h2 { color: #fff; margin-bottom: 1rem; }
.section-cta p { color: rgba(255,255,255,0.8); max-width: 550px; margin: 0 auto 2rem; font-size: 1.0625rem; }

/* === CONTENT PAGES === */
.page-content {
    padding: 4rem 0;
}
.page-content .container { max-width: 820px; }
.page-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.75rem; }
.page-content h3 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.25rem; }
.page-content p { margin-bottom: 1rem; line-height: 1.7; color: var(--text-secondary); }
.page-content ul, .page-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.page-content li { margin-bottom: 0.5rem; line-height: 1.6; color: var(--text-secondary); }
.page-content a { color: var(--accent); font-weight: 600; }

/* Wide content */
.page-content-wide .container { max-width: var(--container); }

/* === TABLES === */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}
.data-table th, .data-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.data-table th {
    background: var(--bg-alt);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}
.data-table tr:hover td { background: rgba(121,89,239,0.04); }

/* Row highlight */
.row-highlight td {
    background: rgba(121,89,239,0.08);
    font-weight: 600;
}

/* === TEAM GRID (Styret) === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.team-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
}
.team-card h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.8125rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; }
.team-contact { margin-top: 0.75rem; font-size: 0.875rem; color: var(--text-secondary); }
.team-contact a { font-weight: 500; }

/* === FACILITY INFO === */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.facility-item {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.facility-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.facility-item span { font-weight: 600; font-size: 0.9375rem; }

/* === DOCUMENT LIST === */
.doc-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.doc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    transition: border-color var(--transition);
}
.doc-item:hover { border-color: var(--accent); }
.doc-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.doc-info h4 { font-size: 0.9375rem; margin-bottom: 0.125rem; }
.doc-info p { font-size: 0.8125rem; color: var(--text-secondary); margin: 0; }

/* === CONTACT FORM === */
.form-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font);
    transition: border-color var(--transition);
    background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(121,89,239,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* === SPONSOR GRID === */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.sponsor-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    text-align: center;
    font-weight: 700;
    color: var(--text-secondary);
}

/* === CATEGORY CARDS (sport, disipliner) === */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.category-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
}
.category-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.category-card h3 { margin-bottom: 0.5rem; }
.category-card p { font-size: 0.9375rem; color: var(--text-secondary); margin: 0; }

/* === INFO BOX === */
.info-box {
    background: rgba(121,89,239,0.06);
    border-left: 4px solid var(--accent);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
}
.info-box p { margin: 0; color: var(--text); }

/* === FOOTER === */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}
.footer-address { font-size: 0.875rem; margin-top: 0.75rem; }
.footer-col h3 {
    color: #fff;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    font-size: 0.8125rem;
}
.footer-bottom a { color: var(--accent); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .nav-list > li > a { padding: 0.5rem 0.5rem; font-size: 0.8125rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .split-content { gap: 2rem; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .hamburger { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 99;
    }
    .main-nav.open { transform: translateX(0); }
    .nav-list { flex-direction: column; padding: 1.5rem; gap: 0; }
    .nav-list > li > a {
        padding: 0.875rem 0;
        font-size: 1.125rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .dropdown {
        position: static;
        display: none;
        background: rgba(0,0,0,0.15);
        box-shadow: none;
        border-radius: 0;
        margin: 0;
    }
    .has-dropdown.open .dropdown { display: block; }
    .dropdown a { color: rgba(255,255,255,0.8); padding: 0.625rem 1.5rem; }
    .dropdown a:hover { background: rgba(255,255,255,0.1); color: #fff; }

    .hero { min-height: 70vh; }
    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }

    .event-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .event-card .btn { width: 100%; }

    .news-grid { grid-template-columns: 1fr; }
    .split-content { grid-template-columns: 1fr; }
    .activities-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .section { padding: 3rem 0; }
    .section-sport, .section-cta { padding: 4rem 0; }
    .diagonal-top, .diagonal-bottom { height: 50px; }

    .hero-page { min-height: 280px; }
}

@media (max-width: 480px) {
    .hero { min-height: 60vh; }
    .hero h1 { font-size: 1.75rem; }
    .grasrot-card { padding: 2rem 1.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    .sponsor-grid { grid-template-columns: 1fr; }
}

/* Focus styles */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}
button:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
