/* =================================================================
    LOKALE SCHRIFTEN EINBINDEN (@FONT-FACE) - Local WP Setup
   =================================================================== */
@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    src: url('https://ekhw.de/wp-content/themes/ekhw_theme/fonts/anton-regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Special Elite';
    font-style: normal;
    font-weight: 400;
    src: url('https://ekhw.de/wp-content/themes/ekhw_theme/fonts/special-elite-regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('https://ekhw.de/wp-content/themes/ekhw_theme/fonts/barlow-regular.woff2') format('woff2');
    font-display: swap;
}

/* =================================================================
    0. GLOBALER SCHUTZ & GRUNDLAYOUT HEADER (MIT VERLAUFSKANTE)
   =================================================================== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    padding-top: 0;
    background-color: #ffffff;
    color: #1a1a1a;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #a81515;
    box-shadow: none; 
    z-index: 9999;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* --- Weiche Verlaufskante nach unten --- */
.site-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(168, 21, 21, 0.95) 0%, rgba(168, 21, 21, 0) 100%);
    pointer-events: none;
    z-index: 9995;
}

.site-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Logo & Branding (Mit gewolltem Überhang nach unten) --- */
.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-bottom: -20px;
    z-index: 10005;
}

.site-branding .custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.site-branding .custom-logo-link img {
    height: 120px;
    width: auto;
    display: block;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

.site-branding .custom-logo-link img:hover {
    transform: scale(1.05);
}

.site-title, .site-description {
    margin: 0;
}

.site-title {
    font-size: 1.25rem;
}

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

.site-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}


/* --- Desktop Navigation & Dropdowns (JETZT IN ANTON) --- */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1.2px;
    font-weight: 400;
    padding: 10px 0;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.main-navigation a:hover {
    color: #f0f0f0;
    opacity: 0.85;
}

/* Dropdown-Menü korrigiert auf klassisches Block-Layout */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    display: none;
    padding: 10px 0;
    z-index: 10000;
    list-style: none;
}

.main-navigation ul ul li {
    width: 100%;
    display: block;
    float: none;
}

.main-navigation ul ul a {
    color: #333333;
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    padding: 8px 20px;
    white-space: nowrap;
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.main-navigation ul ul a:hover {
    color: #a81515;
    background-color: #f9f9f9;
}

.main-navigation li:hover > ul {
    display: block;
}

.main-navigation .menu-toggle {
    display: none;
}


/* --- Desktop Sticky Effekt --- */
@media screen and (min-width: 769px) {
    .site-header.is-sticky {
        background-color: rgba(168, 21, 21, 0.98);
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .site-header.is-sticky .site-header-container {
        height: 85px; 
    }

    .site-header.is-sticky .site-branding .custom-logo-link img {
        height: 60px; 
    }
}


/* --- Mobile Layout & Burger Menü (Optimiert) --- */
@media screen and (max-width: 768px) {
    .site-header-container {
        height: 70px;
    }

    .site-branding {
        margin-bottom: 0 !important;
    }

    .site-branding .custom-logo-link img {
        height: 60px !important;
        width: auto;
    }

    .main-navigation .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 10006;
    }

    .menu-toggle-icon,
    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #ffffff;
        position: relative;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        left: 0;
    }

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

    .main-navigation.toggled .menu-toggle-icon {
        background-color: transparent;
    }
    .main-navigation.toggled .menu-toggle-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    .main-navigation.toggled .menu-toggle-icon::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .main-navigation ul {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background-color: #a81515;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px;
        overflow-y: auto;
        box-sizing: border-box;
        gap: 10px;
        z-index: 10004;
    }

    .main-navigation.toggled ul {
        display: flex; 
    }

    .main-navigation li {
        width: 100%;
        text-align: center;
    }

    /* Hauptmenüpunkte mobil */
    .main-navigation > ul > li > a {
        color: #ffffff;
        font-family: 'Anton', sans-serif;
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Untermenü mobil: Kein Kasten mehr, sondern fließend integriert */
    .main-navigation ul ul {
        position: static;
        box-shadow: none;
        background: transparent;
        display: flex;
        flex-direction: column;
        margin-top: 5px;
        margin-bottom: 10px;
        padding: 0;
        width: 100%;
    }
    
    .main-navigation ul ul li {
        width: 100%;
    }

    .main-navigation ul ul a {
        font-size: 1.15rem;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        padding: 8px 0;
        color: rgba(255, 255, 255, 0.85);
        text-align: center;
        background: transparent;
    }

    .main-navigation ul ul a:hover {
        color: #ffffff;
        background-color: rgba(0, 0, 0, 0.1);
    }
}


/* =================================================================
    1. HERO SLIDER STYLING (SIEBDRUCK & HALFTONE OPTIK)
   =================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    margin-top: 110px;
    overflow: hidden;
    background-color: #f4f4f4; 
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 4px 4px;
    z-index: 2;
    pointer-events: none;
} 

.hero-slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 110px);
    min-height: 500px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    margin-left: 8%;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: 7%;
    padding: 0 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-slide-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 3px 3px 0px #000, 5px 5px 15px rgba(168, 21, 21, 0.6);
    border-left: 8px solid #a81515;
    padding-left: 15px;
    margin-bottom: 15px;
}

.hero-slide-content p {
    font-family: 'Special Elite', monospace;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-left: 3px solid #fff;
    color: #eee;
    margin-bottom: 18px;
}

.hero-btn {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 28px;
    background-color: #a81515;
    color: #ffffff;
    border: 2px solid #fff;
    border-radius: 0;
    transform: rotate(-1deg);
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0px #000;
    align-self: flex-start;
}

.hero-btn:hover {
    background: #ffffff;
    color: #a81515;
    border-color: #a81515;
    transform: translate(-2px, -2px) rotate(1deg);
    box-shadow: 6px 6px 0px #000;
}

.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #a81515;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.8);
    width: 50px;
    height: 50px;
    border-radius: 0;
    font-family: monospace;
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-nav-arrow:hover {
    background: #a81515;
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 25px;
}

.hero-next {
    right: 25px;
}

.hero-dots {
    position: absolute;
    bottom: 25px;
    right: 35px;
    display: flex;
    gap: 8px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 10px;
    border-radius: 0;
    backdrop-filter: blur(3px);
}

.hero-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: #ffffff;
}

.hero-dot.active {
    background: #a81515;
    border-color: #fff;
    width: 25px;
}


/* =================================================================
    2. SEKTIONS-INTRO & MARKER-ÜBERSCHRIFTEN (AKTUALISIERT)
   =================================================================== */
.verein-news-intro {
    padding: 0px 20px 30px 20px;
    text-align: center;
    background: #ffffff;
    background-image: 
        radial-gradient(rgba(168, 21, 21, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(rgba(0, 0, 0, 0.04) 1.5px, #ffffff 1.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    position: relative;
    border-bottom: 2px dashed #a81515;
}


.section-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    font-weight: 200;
    text-transform: none;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-shadow: 3px 3px 0px rgba(168, 21, 21, 0.15);
    position: relative;
    display: inline-block;
    background: #ffffff;
    padding: 0 15px;
    border: 2px solid #1a1a1a;
    box-shadow: 4px 4px 0px #a81515;
    transform: rotate(-0.5deg);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #a81515;
    transform: rotate(1deg);
    clip-path: polygon(0% 0%, 100% 20%, 98% 100%, 1% 80%);
}

.section-header .intro-description p {
    font-family: 'Special Elite', monospace;
    color: #333333;
    font-size: 1.4rem;
    margin-top: 20px;
    background: #fdfdfd;
    display: inline-block;
    padding: 6px 15px;
    border-left: 3px solid #a81515;
    border-right: 3px solid #a81515;
}


/* =================================================================
    3. BEITRÄGE GRID (STICKER- & PLAKAT-STYLE AUF WEISS)
   =================================================================== */
.verein-posts-grid-section {
    padding: 45px 0 60px 0;
    background: #ffffff;
    background-image: 
        linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
        repeating-linear-gradient(45deg, #f0f0f0 0, #f0f0f0 10px, #ffffff 10px, #ffffff 20px);
    position: relative;
    overflow: hidden;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.post-card {
    background: #ffffff;
    border: 2px dashed #a81515;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 5px 5px 0px #a81515;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.post-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    width: 80px;
    height: 20px;
    background: rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    z-index: 15;
    pointer-events: none;
}

.post-card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    border-color: #a81515;
    box-shadow: 8px 12px 0px rgba(168, 21, 21, 0.4);
    background: #fff;
}

.post-card-image {
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 2;
    height: auto;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.98) saturate(1.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.06);
    filter: brightness(1.03) saturate(1.15);
}

.post-image-badges {
    position: absolute !important;
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

.post-image-badges span {
    font-family: 'Anton', sans-serif !important;
    text-transform: none;
    font-size: 1.3rem !important;
    font-weight: 200 !important;
    letter-spacing: 0.8px !important;
    padding: 5px 10px !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    box-shadow: 3px 3px 0px #1a1a1a !important;
}

.post-image-badges .badge-category {
    background: #a81515 !important;
    transform: rotate(-3deg);
}

.post-image-badges .badge-date {
    background: #a81515 !important;
    transform: rotate(2.5deg);
    font-size: 1rem !important;
}

.post-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    z-index: 2;
}

.post-meta {
    font-family: 'Anton', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    background: #a81515;
    padding: 2px 8px;
    border-radius: 0;
    transform: rotate(-2deg);
    margin-bottom: 10px;
    letter-spacing: 1px;
    display: inline-block;
    align-self: flex-start;
}

.post-card-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2px;
}

.post-card-title a {
    color: #1a1a1a;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-card-title a:hover {
    color: #a81515;
}

.post-card-excerpt {
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.post-read-more {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: 200;
    color: #ffffff;
    background: #a81515;
    border: 2px solid #ffffff;
    padding: 8px 16px; 
    border-radius: 0;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 3px 3px 0px #a81515;
    transition: all 0.2s ease;
}

.post-read-more:hover {
    background: #a81515;
    color: #fff;
    border-color: #1a1a1a;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #1a1a1a;
}


/* =================================================================
    4. FOOTER LAYOUT
   =================================================================== */
.site-footer {
    font-family: 'Barlow', sans-serif;
    background-color: #a81515;
    color: #ffffff;
    padding: 15px 0;
    margin-top: auto;
}

.site-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright,
.footer-social {
    flex: 1;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
}

.footer-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.footer-navigation a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
}

.footer-navigation a:hover {
    opacity: 0.8;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

/* =================================================================
   STATISCHE SEITEN (Z.B. ANSPRECHPARTNER, IMPRESSUM ETC.)
   =================================================================== */
.verein-static-content-section {
    padding: 50px 0 80px 0;
    background: #ffffff;
    background-image: 
        linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
        repeating-linear-gradient(45deg, #f0f0f0 0, #f0f0f0 10px, #ffffff 10px, #ffffff 20px);
}

.static-content-box {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    position: relative;
}

.static-content-box h2,
.static-content-box h3 {
    font-family: 'Anton', sans-serif;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.static-content-box h2 {
    font-size: 2.2rem;
    border-bottom: 3px solid #a81515;
    padding-bottom: 5px;
}

.static-content-box h3 {
    font-size: 1.6rem;
}

.static-content-box p, 
.static-content-box li {
    font-family: 'Barlow', sans-serif;
    font-size: 1.15rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.static-content-box ul, 
.static-content-box ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* --- Styling für Einzelbeiträge (single.php) --- */
.single-intro-section {
    margin-top: 110px;
}

.single-intro-meta {
    font-family: 'Special Elite', monospace;
    font-size: 1.1rem;
    color: #333333;
    margin-top: 15px;
}

.single-intro-meta .meta-separator {
    margin: 0 8px;
    color: #a81515;
}

.single-intro-meta .badge-category {
    font-family: 'Special Elite', monospace;
}

.single-post-box {
    max-width: 1200px; 
    width: 100%;
}

.single-post-box .entry-content p,
.single-post-box .entry-content ul,
.single-post-box .entry-content ol {
    font-family: 'Barlow', sans-serif;
    font-size: 1.15rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.single-post-box .entry-content h2,
.single-post-box .entry-content h3,
.single-post-box .entry-content h4 {
    font-family: 'Anton', sans-serif;
    color: #1a1a1a;
    letter-spacing: 1.2px;
    margin-top: 35px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.single-post-navigation {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px dashed #a81515;
    display: flex;
    justify-content: space-between;
}

.single-post-navigation a {
    font-family: 'Anton', sans-serif;
    color: #a81515;
    text-decoration: none;
    font-size: 1.05rem;
}

.single-post-navigation a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

/* =================================================================
    5. RESPONSIVE ANPASSUNGEN (MOBILE / TABLET)
   =================================================================== */
@media screen and (max-width: 960px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 30px; 
    }
    
    .hero-slider-section {
        margin-top: 70px; 
    }

    .hero-slider-container {
        height: 55vh; 
        min-height: 350px;
    }

    .hero-slide {
        background-size: cover; 
    }

    .hero-slide-content {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10%;
        text-align: center;
        align-items: center;
    }

    .hero-slide-content h2 {
        font-size: 2.2rem;
        margin-bottom: 8px;
        color: #ffffff;
        text-align: center;
        border-left: none;
        padding-left: 0;
    }

    .hero-slide-content p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        color: #ffffff;
        text-align: center;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        align-self: center;
    }

    .hero-nav-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }

    .hero-dots {
        bottom: 15px;
        right: 15px;
        padding: 5px 8px;
        gap: 6px;
    }

    .section-header h2 {
       font-size: 1.5rem;
    }

    .site-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }
    
    .footer-navigation {
        justify-content: center;
    }
    
    .footer-navigation ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}