/*
Theme Name: Heimatverein Cölbe
Theme URI: https://hv-coelbe.de
Author: Weitzel IT GmbH
Author URI: https://weitzel-it.de
Description: Futuristisches, responsives WordPress-Theme für den Heimatverein Cölbe. Mit Unterstützung für Veranstaltungen, Sehenswürdigkeiten, Mitglieder, Sponsoren und Community-Features.
Version: 2.0.5
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hv-coelbe
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks
*/

/* ========================================
   CSS Custom Properties / Design Tokens
   2080 FUTURISTIC DESIGN SYSTEM
   ======================================== */
:root {
    /* Farbpalette - Futuristisch mit Neon-Akzenten */
    --color-primary: #1961AC;         /* HV Blau */
    --color-primary-light: #2B7AC4;
    --color-primary-dark: #0D3A6B;
    --color-primary-glow: rgba(25, 97, 172, 0.5);
    
    --color-secondary: #F5A623;       /* Electric Gold */
    --color-secondary-light: #FFB940;
    --color-secondary-dark: #D4890A;
    --color-secondary-glow: rgba(245, 166, 35, 0.5);
    
    --color-accent: #00D4AA;          /* Cyber Teal */
    --color-accent-light: #00FFD0;
    --color-accent-glow: rgba(0, 212, 170, 0.5);
    
    --color-neon-pink: #FF006E;
    --color-neon-blue: #00B4D8;
    --color-neon-purple: #7B2CBF;
    
    /* Neutrale Farben - Cool & Clean */
    --color-white: #FFFFFF;
    --color-off-white: #F8FAFC;
    --color-light-gray: #E2E8F0;
    --color-medium-gray: #64748B;
    --color-dark-gray: #1E293B;
    --color-black: #0F172A;
    
    /* Glass Effect Colors */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-bg-light: rgba(255, 255, 255, 0.7);
    --glass-bg-dark: rgba(15, 23, 42, 0.8);
    
    /* Semantische Farben */
    --color-success: #00D4AA;
    --color-warning: #F5A623;
    --color-error: #FF006E;
    --color-info: #00B4D8;
    
    /* Typografie - Modern Sans-Serif */
    --font-heading: 'Inter', 'SF Pro Display', system-ui, sans-serif;
    --font-body: 'Inter', 'SF Pro Text', system-ui, sans-serif;
    --font-accent: 'Space Grotesk', monospace;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.925rem + 0.375vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 3rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 4rem);
    --text-5xl: clamp(3rem, 2.25rem + 3.75vw, 5.5rem);
    --text-6xl: clamp(4rem, 3rem + 5vw, 8rem);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Layout */
    --container-max: 1280px;
    --container-narrow: 1000px;
    --container-wide: 1440px;
    --container-form: 900px;
    --header-height: 100px;
    --header-height-scrolled: 70px;
    
    /* Borders & Radius - More rounded for 2080 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-full: 9999px;
    
    /* Shadows - With color for depth */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.16);
    --shadow-glow: 0 0 40px var(--color-primary-glow);
    --shadow-glow-accent: 0 0 40px var(--color-accent-glow);
    --shadow-glow-secondary: 0 0 40px var(--color-secondary-glow);
    
    /* Transitions - Smooth & Snappy */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-dark-gray);
    background-color: var(--color-off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-lg);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.handwritten {
    font-family: var(--font-accent);
    font-size: 1.3em;
}

/* ========================================
   Layout Components
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--wide {
    max-width: var(--container-wide);
}

.section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.section--small {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    transition: height var(--transition-base);
}

.site-header.scrolled .header-inner {
    height: var(--header-height-scrolled);
}

.site-branding {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.site-logo {
    height: 70px;
    width: auto;
    transition: height var(--transition-base);
}

.site-header.scrolled .site-logo {
    height: 50px;
}

.site-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: var(--space-sm) 0;
    font-weight: 500;
    color: var(--color-dark-gray);
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
}

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

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--color-primary);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

/* Dropdown Menus */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -var(--space-md);
    min-width: 220px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    list-style: none;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
}

.nav-menu .sub-menu a::after {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--space-sm);
    cursor: pointer;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark-gray);
    position: relative;
    transition: background var(--transition-fast);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-dark-gray);
    transition: transform var(--transition-base);
}

.menu-toggle-icon::before { top: -7px; }
.menu-toggle-icon::after { bottom: -7px; }

/* Mobile Navigation */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        padding: var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }
    
    .main-navigation.is-open {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu a {
        padding: var(--space-md) 0;
        font-size: var(--text-lg);
        border-bottom: 1px solid var(--color-light-gray);
    }
    
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: var(--space-lg);
    }
}

/* ========================================
   Hero Section - Modern & Nahbar
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation: heroZoom 30s ease-in-out infinite alternate;
}

/* Fallback: Karten-Hintergrund für Cölbe */
.hero-background--map {
    background: 
        url('https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/8.7833,50.8500,13,0/1920x1080?access_token=placeholder') center/cover no-repeat,
        linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.hero-map-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, transparent 0%, var(--color-primary-dark) 70%),
        linear-gradient(180deg, transparent 0%, var(--color-primary-dark) 100%);
    opacity: 0.6;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(13, 58, 107, 0.85) 0%,
        rgba(25, 97, 172, 0.7) 40%,
        rgba(13, 58, 107, 0.8) 100%
    );
    z-index: 2;
}

/* Dezente Gradient Orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 2;
    pointer-events: none;
}

.hero-gradient-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: float1 25s ease-in-out infinite;
}

.hero-gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float2 30s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 15px); }
}

/* Floating Particles - Dezent und Warm */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-secondary-light);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle--1 { left: 15%; top: 25%; animation-delay: 0s; animation-duration: 18s; }
.particle--2 { left: 25%; top: 75%; animation-delay: 3s; animation-duration: 20s; }
.particle--3 { left: 70%; top: 35%; animation-delay: 6s; animation-duration: 16s; }
.particle--4 { left: 80%; top: 70%; animation-delay: 2s; animation-duration: 22s; }
.particle--5 { left: 45%; top: 55%; animation-delay: 5s; animation-duration: 19s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) translateX(0); 
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-80px) translateX(15px); 
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badge--glow {
    box-shadow: 0 0 30px var(--color-primary-glow);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Dezenter Gradient statt Shimmer */
.hero-title--animated {
    background: linear-gradient(
        135deg,
        var(--color-white) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        var(--color-white) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-secondary-light);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% { 
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    z-index: 2;
    opacity: 0.1;
}

.hero-decoration--leaves {
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: url('assets/images/leaves-pattern.svg') no-repeat center;
    background-size: contain;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-color: transparent;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    text-decoration: none;
}

.btn--glow {
    box-shadow: var(--shadow-glow);
}

.btn--secondary {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    text-decoration: none;
}

/* Glass Button - Futuristic */
.btn--glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--color-white);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

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

.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    text-decoration: none;
}

.btn--glow-subtle {
    position: relative;
}

.btn--glow-subtle::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
    filter: blur(8px);
}

.btn--glow-subtle:hover::after {
    opacity: 0.5;
}

.btn--small {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
}

.btn--large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
}

/* ========================================
   Cards - 2080 Glassmorphism
   ======================================== */
.card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-accent);
    color: var(--color-black);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.card-content {
    padding: var(--space-xl);
}

.card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-medium-gray);
    margin-bottom: var(--space-sm);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-title a:hover {
    color: var(--color-primary);
}

.card-excerpt {
    color: var(--color-dark-gray);
    margin-bottom: var(--space-lg);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-light-gray);
}

/* Event Card Variant */
.card--event .card-date {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.card--event .card-date-day {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.card--event .card-date-month {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    color: var(--color-medium-gray);
}

/* ========================================
   Grid Layouts
   ======================================== */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

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

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

.grid--auto {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 1024px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid--4,
    .grid--3,
    .grid--2 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-medium-gray);
}

/* Left-aligned variant */
.section-header--left {
    text-align: left;
    margin-left: 0;
}

/* ========================================
   News/Aktuelles Section
   ======================================== */
.news-section {
    background: var(--color-white);
}

.news-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.news-featured .card {
    height: 100%;
}

.news-featured .card:first-child {
    grid-row: span 2;
}

.news-featured .card:first-child .card-image {
    aspect-ratio: 4 / 3;
}

@media (max-width: 1024px) {
    .news-featured {
        grid-template-columns: 1fr;
    }
    
    .news-featured .card:first-child {
        grid-row: auto;
    }
}

/* ========================================
   Events Section
   ======================================== */
.events-section {
    background: var(--color-off-white);
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--color-white) 0%, transparent 100%);
    pointer-events: none;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.event-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    align-items: center;
}

.event-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.event-date {
    text-align: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-primary);
    border-radius: var(--radius-md);
    color: var(--color-white);
    min-width: 80px;
}

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

.event-date-month {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    opacity: 0.8;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
}

.event-meta {
    display: flex;
    gap: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--color-medium-gray);
}

.event-meta svg {
    width: 16px;
    height: 16px;
    margin-right: var(--space-xs);
}

@media (max-width: 768px) {
    .event-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-date {
        justify-self: center;
    }
    
    .event-meta {
        justify-content: center;
    }
    
    .event-actions {
        justify-self: center;
    }
}

/* ========================================
   Sehenswertes / Places Section
   ======================================== */
.places-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
}

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

.places-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.place-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.place-card-image {
    position: absolute;
    inset: 0;
}

.place-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.place-card:hover .place-card-image img {
    transform: scale(1.1);
}

.place-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(26, 25, 24, 0.9) 0%,
        rgba(26, 25, 24, 0.3) 50%,
        transparent 100%
    );
}

.place-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
}

.place-card-title {
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.place-card-excerpt {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.place-card-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.place-card-link:hover {
    color: var(--color-accent-light);
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    padding: var(--space-4xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 90, 61, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Social Media / Community Section
   ======================================== */
.community-section {
    background: var(--color-off-white);
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    color: var(--color-dark-gray);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   Contact / CTA Section
   ======================================== */
.cta-section {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

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

.cta-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    max-width: var(--container-form);
    margin: 0 auto;
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--color-dark-gray);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--footer-bg, var(--color-black));
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-column {
    text-align: center;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

/* Alle Listen im Footer ohne Aufzählungspunkte */
.site-footer ul,
.site-footer ol,
.site-footer .menu,
.site-footer .widget ul,
.site-footer .widget ol,
.footer-menu {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.site-footer li,
.footer-menu li {
    list-style: none !important;
    margin-bottom: var(--space-sm);
}

.site-footer a,
.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.site-footer a:hover,
.footer-menu a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-xl) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: var(--text-sm);
}

.footer-extra {
    display: block;
    margin-top: var(--space-sm);
    opacity: 0.7;
}

.footer-legal,
.footer-legal-menu {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a,
.footer-legal-menu a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover,
.footer-legal-menu a:hover {
    color: var(--color-secondary);
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal,
    .footer-legal-menu {
        justify-content: center;
    }
}

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

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   WordPress Specific
   ======================================== */
.alignwide {
    max-width: var(--container-wide);
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

.wp-block-image img {
    height: auto;
}

.has-drop-cap:not(:focus)::first-letter {
    font-family: var(--font-heading);
    font-size: 3.5em;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    margin: 0.1em 0.15em 0 0;
    color: var(--color-primary);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

/* Staggered animations */
.stagger > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stagger > *:nth-child(1) { animation-delay: 0.1s; }
.stagger > *:nth-child(2) { animation-delay: 0.2s; }
.stagger > *:nth-child(3) { animation-delay: 0.3s; }
.stagger > *:nth-child(4) { animation-delay: 0.4s; }
.stagger > *:nth-child(5) { animation-delay: 0.5s; }
.stagger > *:nth-child(6) { animation-delay: 0.6s; }

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

/* ========================================
   Mitglieder Shortcode Styles
   ======================================== */
.hv-members-section {
    padding: var(--space-2xl) 0;
}

.hv-members-count {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-xl);
    color: var(--color-white);
}

.hv-members-count .count-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.hv-members-count .count-label {
    font-size: var(--text-xl);
    opacity: 0.9;
}

.hv-members-grid {
    display: grid;
    gap: var(--space-lg);
}

.hv-members-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
.hv-members-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
.hv-members-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .hv-members-grid.columns-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hv-members-grid.columns-3,
    .hv-members-grid.columns-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hv-members-grid.columns-2,
    .hv-members-grid.columns-3,
    .hv-members-grid.columns-4 { grid-template-columns: 1fr; }
}

.hv-member-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.hv-member-card:hover {
    box-shadow: var(--shadow-lg);
}

/* ===== FLIP CARD ANIMATION ===== */
.member-flip-container {
    width: 100%;
    height: 280px;
    perspective: 1000px;
}

.member-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.hv-member-card:hover .member-flipper {
    transform: rotateY(180deg);
}

.member-flip-front,
.member-flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

.member-flip-front {
    z-index: 2;
    transform: rotateY(0deg);
}

.member-flip-back {
    transform: rotateY(180deg);
    background: var(--color-off-white);
}

.member-flip-front .member-image,
.member-flip-back .member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-off-white) 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-medium-gray);
}

.member-placeholder-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%) !important;
    color: var(--color-white) !important;
}

.member-placeholder-icon span {
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.7;
}
/* ===== END FLIP CARD ===== */

.hv-member-card .member-info {
    padding: var(--space-lg);
}

.hv-member-card .member-name {
    font-size: var(--text-lg);
    font-weight: 600;
    margin: 0 0 var(--space-xs);
    color: var(--color-dark-gray);
}

.hv-member-card .member-position {
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: 500;
    margin: 0 0 var(--space-xs);
}

.hv-member-card .member-since {
    font-size: var(--text-sm);
    color: var(--color-medium-gray);
    margin: 0;
}

.hv-member-card .member-cta {
    font-size: var(--text-sm);
    color: var(--color-medium-gray);
    margin: 0 0 var(--space-md);
}

/* Join Card - Special Styling */
.hv-member-card.member-join-card {
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
    border: 2px dashed var(--color-primary);
}

.hv-member-card.member-join-card .member-name {
    color: var(--color-primary);
}

.no-members {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--color-medium-gray);
    font-style: italic;
}

/* ========================================
   Sponsoren Styles
   ======================================== */
.sponsors-section {
    padding: var(--space-2xl) 0;
}

.sponsors-section .section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* Sponsoren Grid Layout */
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
}

.sponsor-item {
    flex: 0 0 auto;
    padding: var(--space-md);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsor-item:hover {
    transform: scale(1.05);
}

.sponsor-item a {
    display: block;
    text-decoration: none;
}

.sponsor-logo {
    max-height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.sponsor-name {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-dark-gray);
}

/* Sponsoren Marquee (Laufband) */
.sponsors-marquee {
    overflow: hidden;
    position: relative;
    background: var(--color-off-white);
    padding: var(--space-lg) 0;
    border-radius: var(--radius-lg);
}

.sponsors-marquee::before,
.sponsors-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.sponsors-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-off-white) 0%, transparent 100%);
}

.sponsors-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-off-white) 0%, transparent 100%);
}

.sponsors-marquee-track {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.sponsors-marquee:hover .sponsors-marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sponsors-style-marquee .sponsor-item {
    flex-shrink: 0;
}

.sponsors-style-marquee .sponsor-logo {
    max-height: 60px;
    filter: grayscale(50%);
    opacity: 0.7;
}

.sponsors-style-marquee .sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .sponsors-grid {
        gap: var(--space-lg);
    }
    
    .sponsor-logo {
        max-height: 60px;
        max-width: 140px;
    }
    
    .sponsors-marquee-track {
        gap: var(--space-2xl);
    }
}

/* ========================================
   Modern Enhancements
   ======================================== */

/* Glassmorphism effect for special cards */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Modern gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Pulse animation for CTAs */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(25, 97, 172, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(25, 97, 172, 0);
    }
}

.btn--pulse {
    animation: pulse 2s infinite;
}

/* Section dividers */
.section-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

/* Modern badge styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

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

.badge--secondary {
    background: var(--color-secondary);
    color: var(--color-white);
}

.badge--outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
