/* ========== CSS VARIABLES ========== */
:root {
    --gold: #C8A951;
    --gold-light: #E8D48B;
    --navy: #1A2744;
    --navy-deep: #0F1929;
    --cream: #FBF8F0;
    --white: #FFFFFF;
    --grey: #6B7A8D;
    --light-grey: #F0EDE5;
    --accent: #D4A843;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --shadow-soft: 0 4px 30px rgba(26, 39, 68, 0.08);
    --shadow-medium: 0 8px 40px rgba(26, 39, 68, 0.12);
    --radius: 6px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700; line-height: 1.2; color: var(--navy);
}

.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem; font-family: var(--font-body);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; border: none; border-radius: var(--radius);
    cursor: pointer; transition: all var(--transition);
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,169,81,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,39,68,0.3); }

/* ========== TOP BAR ========== */
.top-bar { background: var(--navy-deep); color: rgba(255,255,255,0.7); font-size: 0.8rem; padding: 0.5rem 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-address { display: flex; align-items: center; gap: 0.5rem; }
.top-bar-address svg { width: 14px; height: 14px; fill: var(--gold); }
.lang-switch { display: flex; gap: 0.75rem; align-items: center; }
.lang-switch a { display: flex; align-items: center; gap: 0.35rem; font-weight: 500; color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.lang-switch a:hover, .lang-switch a.active { color: var(--gold); }
.lang-switch .lang-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ========== HEADER ========== */
.header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft); transition: all var(--transition);
}
.header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 0.6rem; padding-bottom: 0.6rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 52px; height: 52px; }
.logo-text { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.logo-text span { color: var(--gold); }
.nav-list { display: flex; list-style: none; gap: 0; }
.nav-list li a {
    display: block; padding: 0.5rem 1rem; font-size: 0.78rem;
    font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--navy); position: relative;
}
.nav-list li a::after { content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.nav-list li a:hover { color: var(--gold); }
.nav-list li a:hover::after, .nav-list li a.active::after { transform: scaleX(1); }
.nav-list li a.active { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ========== PAGE HEADER (for subpages) ========== */
.page-header {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #2A3F6A 100%);
    padding: 4rem 0 3rem; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,169,81,0.08) 0%, transparent 70%);
}
.page-header h1 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: var(--white); position: relative; z-index: 1;
}
.page-header p {
    color: rgba(255,255,255,0.6); margin-top: 0.75rem; font-size: 1.05rem;
    max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 1;
}

/* ========== HERO (home only) ========== */
.hero {
    position: relative; min-height: 85vh; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #2A3F6A 100%); overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,169,81,0.08) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 20% 80%, rgba(200,169,81,0.05) 0%, transparent 60%); }
.hero-decoration { position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border: 1px solid rgba(200,169,81,0.1); border-radius: 50%; }
.hero-decoration-2 { position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; border: 1px solid rgba(200,169,81,0.07); border-radius: 50%; }
.hero-grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(200,169,81,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(200,169,81,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { animation: fadeSlideUp 1s ease-out; }
.hero-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 1.5rem; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 480px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; animation: fadeSlideUp 1s ease-out 0.3s both; }
.hero-emblem { position: relative; width: 340px; height: 340px; }
.hero-emblem-ring { position: absolute; inset: 0; border: 2px solid rgba(200,169,81,0.2); border-radius: 50%; animation: spin 40s linear infinite; }
.hero-emblem-ring-2 { position: absolute; inset: 30px; border: 1px solid rgba(200,169,81,0.12); border-radius: 50%; animation: spin 30s linear infinite reverse; }
.hero-emblem-center { position: absolute; inset: 60px; background: rgba(200,169,81,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.hero-emblem-k { font-family: var(--font-display); font-size: 5rem; font-weight: 700; color: var(--gold); opacity: 0.8; }
.hero-emblem-dots span { position: absolute; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; opacity: 0.4; }
.hero-emblem-dots span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.hero-emblem-dots span:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.hero-emblem-dots span:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.hero-emblem-dots span:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

/* ========== WINTERFEEST BANNER ========== */
.winterfeest { background: var(--white); padding: 2rem 0; border-bottom: 1px solid var(--light-grey); }
.winterfeest .container { display: flex; align-items: center; gap: 1.5rem; }
.winterfeest-badge { flex-shrink: 0; width: 52px; height: 52px; background: linear-gradient(135deg, var(--gold), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.winterfeest-badge svg { width: 24px; height: 24px; fill: var(--white); }
.winterfeest-text h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.winterfeest-text p { color: var(--grey); font-size: 0.92rem; margin-top: 0.15rem; }
.winterfeest-link { margin-left: auto; flex-shrink: 0; }

/* ========== ABOUT SECTION ========== */
.about { padding: 6rem 0; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-frame { position: relative; background: linear-gradient(135deg, var(--navy) 0%, #2A3F6A 100%); border-radius: 12px; padding: 3rem; display: flex; align-items: center; justify-content: center; min-height: 380px; overflow: hidden; }
.about-image-frame::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(200,169,81,0.1) 0%, transparent 50%); }
.about-image-frame img { position: relative; z-index: 1; max-width: 220px; border-radius: 8px; }
.about-accent { position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; background: var(--gold); border-radius: var(--radius); opacity: 0.15; }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-content p { color: var(--grey); font-size: 1rem; line-height: 1.85; margin-bottom: 2rem; }

/* ========== SPONSORS CAROUSEL ========== */
.sponsors-section { padding: 4rem 0; background: var(--white); overflow: hidden; }
.sponsors-heading { text-align: center; margin-bottom: 2.5rem; }
.sponsors-track-wrapper { position: relative; overflow: hidden; }
.sponsors-track-wrapper::before, .sponsors-track-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.sponsors-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.sponsors-track-wrapper::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.sponsors-track { display: flex; gap: 3rem; animation: scroll-sponsors 25s linear infinite; width: max-content; }
.sponsor-item { flex-shrink: 0; height: 60px; display: flex; align-items: center; opacity: 0.5; filter: grayscale(80%); transition: all var(--transition); }
.sponsor-item:hover { opacity: 1; filter: grayscale(0%); }
.sponsor-item .sponsor-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); white-space: nowrap; padding: 0.6rem 1.5rem; border: 1px solid var(--light-grey); border-radius: var(--radius); background: var(--cream); }

/* ========== SIGNUP SECTION ========== */
.signup { padding: 6rem 0; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); position: relative; overflow: hidden; }
.signup::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(200,169,81,0.06) 0%, transparent 50%); }
.signup .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.signup-content .section-label { color: var(--gold-light); }
.signup-content .section-title { color: var(--white); margin-bottom: 1rem; }
.signup-content p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.8; }
.signup-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 2.5rem; backdrop-filter: blur(8px); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.85rem 1rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); color: var(--white); font-family: var(--font-body); font-size: 0.95rem; transition: all var(--transition); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1); }
.signup-form .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ========== MISSION SECTION ========== */
.mission { padding: 5rem 0; text-align: center; }
.mission-icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, var(--gold), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mission-icon svg { width: 32px; height: 32px; fill: var(--white); }
.mission .section-title { margin-bottom: 1rem; }
.mission p { color: var(--grey); max-width: 700px; margin: 0 auto 2rem; font-size: 1.02rem; line-height: 1.85; }

/* ========== LEDEN (MEMBERS) GRID ========== */
.members-grid { padding: 5rem 0; }
.members-grid .container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.member-card {
    background: var(--white); border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-soft); transition: all var(--transition);
}
.member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.member-card-top { display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem; }
.member-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--light-grey); flex-shrink: 0; }
.member-info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.member-role { font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-top: 0.15rem; }
.member-bio { padding: 0 1.5rem 1.5rem; color: var(--grey); font-size: 0.9rem; line-height: 1.75; display: none; }
.member-card.expanded .member-bio { display: block; }
.member-toggle { display: block; width: 100%; padding: 0.75rem; background: var(--light-grey); border: none; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; color: var(--grey); cursor: pointer; transition: all var(--transition); letter-spacing: 1px; text-transform: uppercase; }
.member-toggle:hover { background: var(--gold); color: var(--white); }

/* In Memoriam */
.in-memoriam { padding: 4rem 0; background: var(--white); }
.in-memoriam h2 { font-family: var(--font-display); font-size: 1.6rem; text-align: center; color: var(--navy); margin-bottom: 2.5rem; }
.memoriam-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 700px; margin: 0 auto; }
.memoriam-card { text-align: center; padding: 2rem; background: var(--cream); border-radius: 12px; border: 1px solid var(--light-grey); }
.memoriam-card img { width: 120px; height: 150px; object-fit: cover; border-radius: 8px; margin: 0 auto 1rem; }
.memoriam-card h3 { font-family: var(--font-display); font-size: 1rem; color: var(--navy); }
.memoriam-card p { font-size: 0.85rem; color: var(--grey); margin-top: 0.25rem; }

/* ========== SOCIALE DOELEN (CAUSES) ========== */
.causes-grid { padding: 5rem 0; }
.causes-grid .container { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.cause-card {
    background: var(--white); border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-soft); transition: all var(--transition);
    display: flex; flex-direction: column;
}
.cause-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.cause-card-image { height: 180px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--light-grey); padding: 1.5rem; }
.cause-card-image img { max-height: 100%; width: auto; object-fit: contain; }
.cause-card-body { padding: 1.5rem; flex: 1; }
.cause-card-body p { color: var(--grey); font-size: 0.92rem; line-height: 1.75; }
.cause-card-link { display: block; padding: 1rem 1.5rem; background: var(--light-grey); font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); transition: all var(--transition); text-align: center; }
.cause-card-link:hover { background: var(--gold); color: var(--white); }

/* ========== EVENEMENTEN ========== */
.events-section { padding: 5rem 0; }
.events-upcoming { margin-bottom: 4rem; }
.events-upcoming .container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.event-card {
    background: var(--white); border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-soft); transition: all var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.event-card img { width: 100%; height: 220px; object-fit: cover; }
.event-card-body { padding: 1.25rem; }
.event-card-body h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--navy); }
.event-card-body p { color: var(--grey); font-size: 0.88rem; margin-top: 0.35rem; }

.past-events-title {
    font-family: var(--font-display); font-size: 1.4rem;
    color: var(--navy); margin-bottom: 2rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-grey);
}
.past-events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.past-event-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-soft); transition: all var(--transition); }
.past-event-card:hover { transform: translateY(-3px); }
.past-event-card img { width: 100%; height: 200px; object-fit: cover; }
.past-event-card h4 { padding: 1rem; font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--navy); }

/* ========== FOTO'S GALLERY ========== */
.gallery { padding: 5rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.gallery-item { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); transition: all var(--transition); cursor: pointer; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-medium); }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; display: none; align-items: center; justify-content: center; cursor: pointer; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: white; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* ========== SPONSORS PAGE ========== */
.sponsors-page { padding: 5rem 0; }
.sponsors-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
.sponsor-card {
    background: var(--white); border-radius: 12px; padding: 2rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft); transition: all var(--transition);
    min-height: 180px;
}
.sponsor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.sponsor-card img { max-width: 160px; max-height: 140px; object-fit: contain; filter: grayscale(30%); transition: filter var(--transition); }
.sponsor-card:hover img { filter: grayscale(0%); }

/* ========== CONTACT PAGE ========== */
.contact-section { padding: 5rem 0; }
.contact-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info { background: var(--white); border-radius: 12px; padding: 2.5rem; box-shadow: var(--shadow-soft); }
.contact-info h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-info p { color: var(--grey); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1rem; }
.contact-info strong { color: var(--navy); }
.contact-social { margin-top: 2rem; }
.contact-social a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.contact-social a:hover { color: var(--accent); }
.contact-form-wrapper { background: var(--white); border-radius: 12px; padding: 2.5rem; box-shadow: var(--shadow-soft); }
.contact-form-wrapper h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-form .form-group label { color: var(--grey); }
.contact-form .form-group input, .contact-form .form-group textarea { background: var(--cream); border: 1px solid var(--light-grey); color: var(--navy); }
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus { border-color: var(--gold); background: var(--white); }

/* ========== FOOTER ========== */
.footer { background: var(--navy-deep); padding: 3rem 0 1.5rem; }
.footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-text { font-family: var(--font-display); font-size: 1rem; color: var(--white); font-weight: 600; }
.footer-logo-text span { color: var(--gold); }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--gold); }

/* ========== ANIMATIONS ========== */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scroll-sponsors { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

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

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-label { justify-content: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .about .container { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { order: -1; }
    .signup .container { grid-template-columns: 1fr; }
    .contact-section .container { grid-template-columns: 1fr; }
    .nav-list { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem 0; box-shadow: var(--shadow-medium); }
    .nav-list.open { display: flex; }
    .nav-list li a { padding: 0.75rem 2rem; }
    .hamburger { display: flex; }
}
@media (max-width: 600px) {
    .top-bar .container { flex-direction: column; gap: 0.25rem; }
    .winterfeest .container { flex-direction: column; text-align: center; }
    .winterfeest-link { margin-left: 0; }
    .footer .container { flex-direction: column; text-align: center; }
    .members-grid .container { grid-template-columns: 1fr; }
    .causes-grid .container { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .sponsors-page-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
