/* ==========================================================================
           HARPSTEDTER BÜRGERSCHÜTZEN - FINAL MOCKUP
           "Mobile First, Maximal UX Desktop", Traditionell (Blau/Gold/Serifen)
           ========================================================================== */
           
        :root {
            /* Harpstedter Farbpalette */
            --h-blue: #0A2342;
            --h-blue-light: #173f70;
            --h-gold: #C5A059;
            --h-gold-light: #DFBE7B;
            --h-silver: #E0E6ED;
            --h-white: #FFFFFF;
            --h-bg: #F8F9FA;
            --h-text: #2C3E50;
            --h-text-light: #6C7A89;
            
            /* Rott Farben */
            --rott-1: #c0392b; /* I. Rott - Rot */
            --rott-2: #d35400; /* II. Rott - Orange */
            --rott-3: #2980b9; /* III. Rott - Blau */
            --rott-4: #27ae60; /* IV. Rott - Grün */

            /* Typografie */
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Source Sans 3', sans-serif;
            
            /* Layout */
            --container-width: 1280px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            background-color: var(--h-bg);
            color: var(--h-text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
        img { max-width: 100%; height: auto; display: block; }

        .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            padding: 12px 28px; font-weight: 700; border-radius: 4px; 
            text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
            cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent;
        }
        .btn-primary { background-color: var(--h-gold); color: var(--h-blue); }
        .btn-primary:hover { background-color: var(--h-gold-light); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4); }
        .btn-outline { border-color: var(--h-gold); color: var(--h-gold); background: transparent; }
        .btn-outline:hover { background-color: var(--h-gold); color: var(--h-blue); }
        .btn-outline-white { border-color: var(--h-white); color: var(--h-white); background: transparent; }
        .btn-outline-white:hover { background-color: var(--h-white); color: var(--h-blue); }

        /* ===== TOPBAR (Live Ticker & Wetter/Rottfinder) ===== */
        .topbar {
            background-color: var(--h-blue); color: var(--h-white);
            font-size: 0.85rem; padding: 10px 0; border-bottom: 2px solid var(--h-gold);
        }
        .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
        .ticker-wrapper { display: flex; align-items: center; gap: 15px; flex-grow: 1; }
        .live-badge {
            background-color: #e74c3c; color: white; padding: 3px 10px; border-radius: 20px;
            font-weight: 700; font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase;
            display: flex; align-items: center; gap: 6px; box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
        }
        .live-badge .dot { width: 6px; height: 6px; background: white; border-radius: 50%; animation: pulse 1.5s infinite; }
        @keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }
        .ticker-text { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 600px; }
        
        .top-tools { display: flex; gap: 20px; }
        .top-tools a { color: var(--h-gold-light); font-weight: 600; display: flex; align-items: center; gap: 6px; }
        .top-tools a:hover { color: var(--h-white); }

        /* ===== HEADER & NAVIGATION (Mega Menu Style) ===== */
        .header {
            background-color: var(--h-white); box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            position: sticky; top: 0; z-index: 1000; transition: all 0.3s ease;
        }
        .header .container { display: flex; justify-content: space-between; align-items: center; height: 90px; }
        
        .logo { display: flex; align-items: center; gap: 15px; }
        .logo-crest {
            width: 55px; height: 65px;
            background: linear-gradient(135deg, var(--h-blue) 0%, var(--h-blue-light) 100%);
            border-radius: 4px 4px 30px 30px;
            display: flex; justify-content: center; align-items: center;
            color: var(--h-gold); font-size: 28px; border: 2px solid var(--h-gold);
            box-shadow: 0 4px 10px rgba(10, 35, 66, 0.2);
        }
        .logo-text { display: flex; flex-direction: column; }
        .logo-text span:first-child { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--h-blue); line-height: 1.1; }
        .logo-text span:last-child { font-size: 0.8rem; color: var(--h-gold); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

        /* Desktop Nav */
        .main-nav { display: none; }
        @media (min-width: 992px) {
            .main-nav { display: block; height: 100%; }
            .main-nav > ul { display: flex; list-style: none; gap: 30px; height: 100%; margin: 0; }
            .main-nav > ul > li { height: 100%; display: flex; align-items: center; position: relative; }
            .main-nav > ul > li > a { 
                font-weight: 600; color: var(--h-blue); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px;
                position: relative; padding: 10px 0;
            }
            .main-nav > ul > li > a::after {
                content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--h-gold); transition: width 0.3s;
            }
            .main-nav > ul > li:hover > a::after, .main-nav > ul > li > a.active::after { width: 100%; }
            .main-nav > ul > li:hover > a { color: var(--h-gold); }

            /* Mega Dropdown */
            .has-dropdown .dropdown {
                position: absolute; top: 90px; left: 50%; transform: translateX(-50%) translateY(15px);
                background: var(--h-white); min-width: 260px;
                box-shadow: 0 15px 35px rgba(10, 35, 66, 0.1); border-radius: 0 0 8px 8px; border-top: 3px solid var(--h-gold);
                opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
                padding: 15px 0; display: flex; flex-direction: column;
            }
            .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
            .dropdown li { list-style: none; }
            .dropdown a {
                padding: 10px 25px; display: block; font-size: 0.95rem; font-weight: 500; color: var(--h-text);
                border-left: 3px solid transparent;
            }
            .dropdown a:hover { background: var(--h-bg); color: var(--h-blue); border-left-color: var(--h-gold); padding-left: 30px; font-weight: 600; }
        }

        /* Mobile Burger Icon */
        .mobile-menu-btn { display: block; font-size: 1.5rem; color: var(--h-blue); cursor: pointer; background: none; border: none; }
        @media (min-width: 992px) { .mobile-menu-btn { display: none; } }

        /* ===== HERO SECTION ===== */
        .hero {
            height: 80vh; min-height: 500px; max-height: 700px; position: relative;
            background-image: url('../Fahne1.jpg');
            background-size: cover; background-position: center 30%; background-attachment: fixed;
            display: flex; align-items: center; color: var(--h-white);
        }
        .hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(10, 35, 66, 0.95) 0%, rgba(10, 35, 66, 0.5) 60%, rgba(10, 35, 66, 0.2) 100%); }
        .hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 10px; background: linear-gradient(to right, var(--h-gold), var(--h-gold-light)); }
        
        .hero-content { position: relative; z-index: 2; max-width: 700px; }
        .hero-sub { display: inline-block; color: var(--h-blue); background: var(--h-gold); padding: 4px 12px; border-radius: 4px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 20px; }
        .hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; font-style: italic; margin-bottom: 20px; text-shadow: 2px 4px 10px rgba(0,0,0,0.3); }
        .hero p { font-size: clamp(1.1rem, 2vw, 1.25rem); font-weight: 300; margin-bottom: 30px; text-shadow: 1px 2px 5px rgba(0,0,0,0.5); line-height: 1.5; }

        /* Countdown Box */
        .hero-countdown { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
        .cd-box { background: rgba(10, 35, 66, 0.7); border: 1px solid rgba(197, 160, 89, 0.4); backdrop-filter: blur(10px); padding: 15px 20px; border-radius: 6px; text-align: center; min-width: 90px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
        .cd-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--h-gold); line-height: 1; margin-bottom: 5px; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }
        .cd-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--h-white); font-weight: 600; opacity: 0.9; }

        /* ===== QUICK FACTS (Stats) ===== */
        .facts { background: transparent; padding: 0; position: relative; z-index: 10; margin-top: -50px; margin-bottom: 50px; }
        .facts .container { background: var(--h-white); border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; border: 1px solid var(--h-silver); }
        .fact-item i { font-size: 2.5rem; color: var(--h-gold); margin-bottom: 15px; }
        .fact-item h3 { font-size: 2rem; color: var(--h-blue); font-family: var(--font-body); margin-bottom: 5px; }
        .fact-item p { font-size: 0.9rem; color: var(--h-text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

        /* ===== WELCOME SECTION ===== */
        .welcome-section { padding: 40px 0 80px 0; background: var(--h-bg); }
        .welcome-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
        @media (min-width: 992px) { .welcome-grid { grid-template-columns: 1fr 1fr; } }
        .welcome-text h2 { color: var(--h-blue); font-size: 2.8rem; margin-bottom: 20px; }
        .welcome-text p { color: var(--h-text-light); font-size: 1.1rem; margin-bottom: 20px; line-height: 1.8; }
        .welcome-features { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 35px; }
        .feature-box { display: flex; gap: 15px; align-items: flex-start; }
        .feature-icon { color: var(--h-gold); font-size: 1.8rem; }
        .feature-box h4 { font-family: var(--font-body); color: var(--h-blue); margin-bottom: 5px; font-size: 1.1rem; }
        .feature-box p { font-size: 0.9rem; line-height: 1.4; color: var(--h-text-light); margin-bottom: 0; }
        .welcome-image { position: relative; }
        .welcome-image img { border-radius: 8px; box-shadow: 0 20px 40px rgba(10,35,66,0.15); }
        .welcome-image::before { content: ''; position: absolute; top: -15px; left: -15px; width: 100px; height: 100px; border-top: 4px solid var(--h-gold); border-left: 4px solid var(--h-gold); border-radius: 8px 0 0 0; }
        .welcome-image::after { content: ''; position: absolute; bottom: -15px; right: -15px; width: 100px; height: 100px; border-bottom: 4px solid var(--h-gold); border-right: 4px solid var(--h-gold); border-radius: 0 0 8px 0; }

        /* ===== SEKTION: MAJESTÄTEN ===== */
        .section { padding: 80px 0; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { color: var(--h-blue); font-size: 2.8rem; margin-bottom: 15px; }
        .section-divider { width: 80px; height: 3px; background-color: var(--h-gold); margin: 0 auto; }
        
        .kings-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
        @media (min-width: 992px) { .kings-grid { grid-template-columns: 1fr 1fr; } }
        
        .king-card { background: var(--h-white); border-radius: 8px; overflow: hidden; box-shadow: 0 15px 40px rgba(10,35,66,0.08); transition: transform 0.3s; border: 1px solid var(--h-silver); }
        .king-card:hover { transform: translateY(-10px); }
        .king-img { height: 350px; background-size: cover; background-position: center top; position: relative; }
        .king-badge { position: absolute; top: 20px; left: 20px; background: rgba(10,35,66,0.9); color: var(--h-gold); padding: 8px 15px; border-radius: 4px; font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; letter-spacing: 1px; border: 1px solid var(--h-gold); backdrop-filter: blur(5px); }
        .king-body { padding: 35px; text-align: center; }
        .king-body h3 { font-size: 2rem; color: var(--h-blue); margin-bottom: 10px; }
        .rott-tag { display: inline-block; padding: 6px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
        .tag-r3 { background: rgba(41, 128, 185, 0.1); color: var(--rott-3); border: 1px solid rgba(41, 128, 185, 0.3); }
        .tag-r4 { background: rgba(39, 174, 96, 0.1); color: var(--rott-4); border: 1px solid rgba(39, 174, 96, 0.3); }
        .king-body p { color: var(--h-text-light); }

        /* ===== SEKTION: DIE GEMEINSCHAFT (Rotts & Akteure) ===== */
        .bg-gray { background-color: var(--h-bg); border-top: 1px solid var(--h-silver); border-bottom: 1px solid var(--h-silver); }
        
        .community-grid { display: grid; grid-template-columns: 1fr; gap: 50px; }
        @media (min-width: 1024px) { .community-grid { grid-template-columns: 1.2fr 0.8fr; } }

        /* ===== AKTEURE & ROTTS ===== */
        .rotts-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        @media (min-width: 600px) { .rotts-grid { grid-template-columns: 1fr 1fr; } }
        @media (min-width: 992px) { .rotts-grid { grid-template-columns: repeat(4, 1fr); } }
        
        .rott-card { background: var(--h-white); border: 1px solid var(--h-silver); border-radius: 8px; padding: 25px 20px; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
        .rott-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; }
        .rc-1::before { background: var(--rott-1); }
        .rc-2::before { background: var(--rott-2); }
        .rc-3::before { background: var(--rott-3); }
        .rc-4::before { background: var(--rott-4); }
        
        .rott-card .num { font-family: var(--font-heading); font-size: 2.5rem; line-height: 1; margin-bottom: 10px; color: var(--h-blue); }
        .rc-1 .num { color: var(--rott-1); }
        .rc-2 .num { color: var(--rott-2); }
        .rc-3 .num { color: var(--rott-3); }
        .rc-4 .num { color: var(--rott-4); }
        
        .rott-card h4 { font-size: 1.1rem; color: var(--h-text); margin-bottom: 5px; font-family: var(--font-body); }
        .rott-card p { font-size: 0.85rem; color: var(--h-text-light); font-style: italic; }

        /* Akteure Accordion/Liste */
        .akteure-box { background: var(--h-white); border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid var(--h-silver); padding: 30px; }
        .akteure-box h3 { color: var(--h-blue); margin-bottom: 25px; font-size: 1.8rem; }
        .akteur-list { display: flex; flex-direction: column; gap: 20px; }
        .akteur-item { display: flex; gap: 15px; }
        .akteur-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--h-bg); color: var(--h-gold); display: flex; justify-content: center; align-items: center; font-size: 1.2rem; flex-shrink: 0; border: 1px solid var(--h-silver); }
        .akteur-text h4 { font-size: 1.1rem; color: var(--h-blue); margin-bottom: 5px; font-family: var(--font-body); }
        .akteur-text p { font-size: 0.9rem; color: var(--h-text-light); }

        /* ===== SEKTION: AKTUELLES & TERMINE ===== */
        .news-events-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
        @media (min-width: 1024px) { .news-events-grid { grid-template-columns: 2fr 1fr; } }

        /* News */
        .news-wrapper { display: flex; flex-direction: column; gap: 25px; }
        .news-card { display: flex; flex-direction: column; background: var(--h-white); border: 1px solid var(--h-silver); border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s; }
        @media (min-width: 600px) { .news-card { flex-direction: row; height: 200px; } }
        .news-card:hover { box-shadow: 0 10px 25px rgba(10,35,66,0.1); }
        .news-img { flex: 0 0 35%; background-size: cover; background-position: center; min-height: 200px; }
        .news-body { padding: 25px; display: flex; flex-direction: column; justify-content: center; }
        .news-meta { font-size: 0.8rem; color: var(--h-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
        .news-body h3 { font-size: 1.3rem; margin-bottom: 15px; line-height: 1.4; color: var(--h-blue); }
        .news-body p { font-size: 0.95rem; color: var(--h-text-light); line-height: 1.6; margin-bottom: 20px; }
        .read-more { color: var(--h-blue); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: color 0.3s; }
        .read-more:hover { color: var(--h-gold); }

        /* Termine Sidebar */
        .events-widget { background: var(--h-blue); color: var(--h-white); border-radius: 8px; padding: 35px; position: relative; overflow: hidden; box-shadow: 0 15px 35px rgba(10,35,66,0.2); }
        .events-widget::before { content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; border-radius: 50%; border: 20px solid rgba(255,255,255,0.05); }
        .events-widget h3 { color: var(--h-gold); font-size: 1.8rem; margin-bottom: 30px; position: relative; z-index: 2; }
        .event-list { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 2; }
        .event-row { display: flex; gap: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
        .event-row:last-child { border-bottom: none; padding-bottom: 0; }
        .e-date { text-align: center; min-width: 55px; }
        .e-day { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; line-height: 1; color: var(--h-white); }
        .e-month { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--h-gold); font-weight: 600; }
        .e-info h4 { font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 5px; color: var(--h-white); }
        .e-info p { font-size: 0.85rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 5px; }

        /* Wetter Widget (Bonus in Sidebar) */
        .weather-widget { margin-top: 30px; background: rgba(0,0,0,0.2); border-radius: 6px; padding: 15px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; border: 1px solid rgba(255,255,255,0.1); }
        .w-icon { font-size: 2rem; color: var(--h-gold); }
        .w-temp { font-size: 1.5rem; font-weight: 700; font-family: var(--font-heading); }
        .w-desc { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; }

        /* ===== GALERIE 50/50 & TIMELINE ===== */
        .gal-split { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
        @media (min-width: 768px) { .gal-split { grid-template-columns: 1fr 1fr; } }
        .gal-50 { position: relative; overflow: hidden; border-radius: 8px; height: 350px; display: block; box-shadow: 0 10px 30px rgba(10,35,66,0.15); }
        .gal-50 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .gal-50:hover img { transform: scale(1.05); }
        .gal-50-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,35,66,0.9) 0%, rgba(10,35,66,0.3) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; transition: background 0.3s; }
        .gal-50:hover .gal-50-overlay { background: linear-gradient(to top, rgba(10,35,66,0.95) 0%, rgba(10,35,66,0.4) 60%, transparent 100%); }
        .gal-50-overlay h3 { color: var(--h-gold); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 5px; font-family: var(--font-heading); font-style: italic; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }
        .gal-50-overlay span { color: var(--h-white); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }
        
        .gal-timeline { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; background: var(--h-white); padding: 25px; border-radius: 8px; border: 1px solid var(--h-silver); box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
        .gal-timeline-label { padding: 8px; font-weight: 600; color: var(--h-text-light); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
        .gal-year { padding: 10px 20px; background: var(--h-bg); color: var(--h-blue); font-weight: 700; border-radius: 4px; text-decoration: none; transition: all 0.3s ease; }
        .gal-year:hover { background: var(--h-blue); color: var(--h-gold); }
        .gal-year-archiv { background: var(--h-gold); color: var(--h-blue); }
        .gal-year-archiv:hover { background: var(--h-blue); color: var(--h-gold); }

        /* ===== FOOTER ===== */
        .footer { background-color: var(--h-blue); color: var(--h-silver); padding: 70px 0 30px; border-top: 6px solid var(--h-gold); position: relative; overflow: hidden; }
        .footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://www.transparenttextures.com/patterns/cubes.png'); opacity: 0.05; pointer-events: none; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 50px; position: relative; z-index: 2; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
        
        .footer-brand .logo-crest { margin-bottom: 20px; background: transparent; border-color: rgba(255,255,255,0.2); }
        .footer-brand p { font-size: 0.95rem; line-height: 1.7; opacity: 0.8; margin-bottom: 20px; }
        .footer-social { display: flex; gap: 15px; }
        .footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; color: var(--h-white); transition: background 0.3s, color 0.3s; }
        .footer-social a:hover { background: var(--h-gold); color: var(--h-blue); }

        .footer h4 { color: var(--h-white); font-size: 1.2rem; margin-bottom: 25px; font-family: var(--font-body); position: relative; padding-bottom: 10px; }
        .footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--h-gold); }
        .footer ul { list-style: none; }
        .footer li { margin-bottom: 12px; }
        .footer a { font-size: 0.95rem; opacity: 0.8; }
        .footer a:hover { color: var(--h-gold); opacity: 1; padding-left: 5px; }
        
        .footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; position: relative; z-index: 2; opacity: 0.7; }

/* Joomla specific overrides */
.moduletable h3 {
    color: var(--h-blue);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}
