/* ========================================
   SVK – Skovshoved Vandski Klub
   Modern Website Styles
   ======================================== */

:root {
    --color-ocean: #0A1628;
    --color-deep: #0F2645;
    --color-water: #1565C0;
    --color-wave: #2196F3;
    --color-sky: #42A5F5;
    --color-foam: #E3F2FD;
    --color-white: #FFFFFF;
    --color-sand: #F8F6F3;
    --color-warm: #FFF8E1;
    --color-accent: #FF6B35;
    --color-accent-dark: #E55A2B;
    --color-text: #1A1A2E;
    --color-text-muted: #5A6178;
    --color-border: #E8EAF0;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav.scrolled .nav-logo .logo-text,
.nav.scrolled .nav-links a {
    color: var(--color-text);
}

.nav.scrolled .nav-logo .logo-sub {
    color: var(--color-text-muted);
}

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

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-accent);
    padding: 10px 24px;
    border-radius: 100px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
    background: var(--color-text);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        url('images/hero-bg.jpg') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.35) 40%, rgba(10, 22, 40, 0.6) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(33, 150, 243, 0.1) 0%, transparent 60%);
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    animation: wave-drift 8s ease-in-out infinite;
}

@keyframes wave-drift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1s;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-white);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1.2s;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(8px); }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.section-membership .btn-outline {
    color: var(--color-text);
    border-color: var(--color-border);
}

.section-membership .btn-outline:hover {
    border-color: var(--color-water);
    color: var(--color-water);
    background: var(--color-foam);
}

/* ========================================
   Sections
   ======================================== */

.section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 64px;
}

.section-header-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ========================================
   About Section
   ======================================== */

.section-about {
    background: var(--color-sand);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-foam);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-water);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0 !important;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-year {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* ========================================
   Activities Section
   ======================================== */

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.activity-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.activity-card-featured {
    border-color: var(--color-water);
    box-shadow: var(--shadow-md);
}

.activity-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 2;
}

.activity-image {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-body {
    padding: 28px 28px 32px;
    text-align: center;
}

.activity-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.activity-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.activity-tags li {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--color-sand);
    color: var(--color-text-muted);
}

/* ========================================
   Schedule Section
   ======================================== */

.section-schedule {
    background: var(--color-ocean);
    color: var(--color-white);
}

.section-schedule .section-tag {
    color: var(--color-sky);
}

.section-schedule .section-title {
    color: var(--color-white);
}

.section-schedule p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 28px;
}

.schedule-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.schedule-header {
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
}

.schedule-season {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-sky);
    background: rgba(66, 165, 245, 0.15);
    padding: 4px 14px;
    border-radius: 100px;
}

.schedule-rows {
    padding: 8px 0;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-row:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.day-sub {
    display: block;
    font-size: 0.775rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.time {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-sky);
    font-variant-numeric: tabular-nums;
}

.schedule-section-label {
    padding: 12px 32px 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-sky);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-sundays {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 4px 0 8px;
}

.sunday-item {
    padding: 8px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sunday-date {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
}

.sunday-drivers {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
}

.schedule-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Membership Section
   ======================================== */

.section-membership {
    background: var(--color-sand);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.membership-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.membership-card-featured {
    border-color: var(--color-water);
    box-shadow: var(--shadow-md);
}

.membership-card-featured:hover {
    box-shadow: 0 20px 60px rgba(21, 101, 192, 0.2);
}

.membership-popular {
    background: var(--color-water);
    color: var(--color-white);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px;
}

.membership-header {
    padding: 32px 28px 0;
}

.membership-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.membership-header p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.membership-body {
    padding: 24px 28px 32px;
}

.membership-features {
    margin-bottom: 24px;
}

.membership-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.membership-features li svg {
    flex-shrink: 0;
    color: var(--color-water);
}

/* ========================================
   Contact Section
   ======================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-foam);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-water);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.contact-item a {
    color: var(--color-water);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-accent);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    background: var(--color-border);
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    display: block;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--color-ocean);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-links-group h4 {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-links-group a {
    display: block;
    font-size: 0.875rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--color-sky);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-white);
}

/* ========================================
   Subpages (Handelsbetingelser etc.)
   ======================================== */

.nav-solid {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-solid .nav-logo .logo-text,
.nav-solid .nav-links a {
    color: var(--color-text);
}

.nav-solid .nav-logo .logo-sub {
    color: var(--color-text-muted);
}

.nav-solid .nav-cta {
    background: var(--color-water);
    color: var(--color-white);
}

.nav-solid .nav-toggle span {
    background: var(--color-text);
}

.page-content {
    padding: 140px 0 80px;
    min-height: 60vh;
}

.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text);
}

.page-body {
    max-width: 720px;
}

.page-body p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.page-body a {
    color: var(--color-water);
    text-decoration: underline;
    transition: var(--transition);
}

.page-body a:hover {
    color: var(--color-wave);
}

.page-intro {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.doc-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.doc-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none !important;
    color: var(--color-text) !important;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.doc-link:hover {
    border-color: var(--color-water);
    box-shadow: var(--shadow-md);
    color: var(--color-water) !important;
}

.doc-link svg {
    flex-shrink: 0;
    color: var(--color-water);
}

.page-date {
    margin-top: 40px;
    font-style: italic;
    color: rgba(90, 97, 120, 0.6) !important;
    font-size: 0.9rem !important;
}

/* ========================================
   Scroll Animations
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .about-grid,
    .schedule-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .about-visual {
        order: -1;
    }

    .about-image {
        aspect-ratio: 16/9;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active a {
        color: var(--color-text);
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .activities-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .schedule-sundays {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number,
    .stat-plus {
        font-size: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 100px 16px 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}
