/* ==========================================
   Freiwillige Feuerwehr Gütersloh
   Löschzug Friedrichsdorf
   user.css Version 2.0
   ========================================== */


/* ==========================================================
   Grundeinstellungen
   ========================================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}


/* ==========================================================
   Gemeinsames Layout-Raster
   ========================================================== */

.home-container{

    max-width:1320px;
    width:100%;

    margin:0 auto;

    padding:0 60px;
}


/* ==========================================================
   Header
   ========================================================== */

.container-header,
.container-below-top{

    background:#2B2F33;
}

.container-below-top{

    margin:0;
    padding:0;
}

.container-below-top > div{

    margin:0;
}


/* ==========================================================
   Header Logo + Text
   ========================================================== */

.lz-header{

    display:flex;

    align-items:center;

    gap:20px;

    min-height:90px;

    padding:0 30px;
}


/* Logo */

.lz-header-logo{

    display:flex;

    align-items:center;

    justify-content:center;

    height:90px;

    flex-shrink:0;
}

.lz-header-logo img{

    display:block;

    height:90px;

    width:auto;
}


/* Text */

.lz-header-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

    height:90px;
}

.lz-header-line1{

    color:#ffffff;

    font-size:18px;

    font-weight:400;

    line-height:1.15;

    margin:0;
}

.lz-header-line2{

    color:#ffffff;

    font-size:34px;

    font-weight:700;

    line-height:1;

    margin:2px 0 0;
}


/* ==========================================================
   Hauptnavigation
   ========================================================== */

.container-nav{

    background:#2B2F33;
}

.container-nav .mod-menu{

    display:flex;

    gap:32px;

    margin:0;

    padding:0;

    list-style:none;
}

.container-nav .mod-menu > li > a{

    color:#ffffff;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    padding:14px 0;

    border-bottom:3px solid transparent;

    transition:.25s;
}

.container-nav .mod-menu > li > a:hover,
.container-nav .mod-menu > li.active > a,
.container-nav .mod-menu > li.current > a{

    border-bottom-color:#C40018;
}


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

.container-banner{

    margin:0;

    padding:0;
}

.hero-home{

    position:relative;

    height:420px;

    background:url("/images/hero/hero-startseite.jpg") center center;

    background-size:cover;

    background-repeat:no-repeat;
}

.hero-overlay{

    display:flex;

    align-items:center;

    width:100%;

    height:420px;

    background:rgba(0,0,0,.45);
}

.hero-content{

    width:100%;

    color:#ffffff;
}

.hero-small{

    font-size:22px;

    font-weight:400;

    margin-bottom:10px;
}

.hero-content h1{

    margin:0 0 22px;

    font-size:58px;

    font-weight:700;

    line-height:1.05;

    color:#ffffff;
}

.hero-content p{

    max-width:760px;

    margin:0 0 35px;

    font-size:22px;

    line-height:1.55;
}


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

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.hero-btn{

    display:inline-block;

    padding:14px 30px;

    border-radius:6px;

    text-decoration:none;

    font-weight:700;

    transition:.25s;
}

.hero-red{

    background:#C40018;

    color:#ffffff;
}

.hero-red:hover{

    background:#E1001F;

    color:#ffffff;
}

.hero-white{

    background:rgba(255,255,255,.18);

    color:#ffffff;

    border:2px solid #ffffff;
}

.hero-white:hover{

    background:#ffffff;

    color:#222222;
}

/* ==========================================================
   Schnellzugriffe unter dem Hero
   ========================================================== */

.home-quicklinks{

    background:#F5F6F8;

    padding:35px 0 60px;
}

/* Bootstrap-Abstände entfernen */

.container-top-a,
.container-top-a > div,
.container-top-a .card,
.container-top-a .card-body,
.container-top-a .mod-custom{

    margin:0;
    padding:0;
    border:0;
    background:transparent;
    box-shadow:none;
}

.quick-links{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:30px;
}

.quick-card{

    display:flex;

    flex-direction:column;

    background:#ffffff;

    border-radius:12px;

    padding:20px 24px;

    min-height:170px;

    text-decoration:none;

    color:#2B2F33;

    border-top:4px solid transparent;

    box-shadow:0 6px 20px rgba(0,0,0,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.quick-card:hover{

    transform:translateY(-6px);

    border-top-color:#C40018;

    box-shadow:0 16px 32px rgba(0,0,0,.15);

    color:#2B2F33;
}

.quick-icon{

    width:48px;

    height:48px;

    margin-bottom:16px;

    display:flex;

    align-items:center;

    justify-content:center;
}

.quick-icon img{

    width:48px;

    height:48px;

    display:block;
}

.quick-card h2{

    margin:0 0 8px;

    color:#C40018;

    font-size:23px;

    font-weight:700;

    line-height:1.25;
}

.quick-card p{

    margin:0;

    color:#555555;

    font-size:15px;

    line-height:1.45;

    flex:1;
}

.quick-arrow{

    margin-top:18px;

    align-self:flex-end;

    color:#C40018;

    font-size:15px;

    font-weight:700;

    transition:transform .25s ease;
}

.quick-card:hover .quick-arrow{

    transform:translateX(6px);
}


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

@media (max-width:1200px){

    .home-container{

        padding:0 40px;
    }

}

@media (max-width:992px){

    .home-container{

        padding:0 25px;
    }

    .hero-home{

        height:340px;
    }

    .hero-overlay{

        height:340px;
    }

    .hero-content h1{

        font-size:42px;
    }

    .hero-content p{

        font-size:19px;
    }

    .quick-links{

        grid-template-columns:1fr;

        gap:20px;
    }

    .quick-card{

        min-height:auto;
    }

}

@media (max-width:768px){

    .lz-header{

        padding:15px 20px;

        min-height:auto;
    }

    .lz-header{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;
    }

    .lz-header-logo{

        height:70px;
    }

    .lz-header-logo img{

        height:70px;
    }

    .lz-header-line1{

        font-size:16px;
    }

    .lz-header-line2{

        font-size:28px;
    }

    .container-nav .mod-menu{

        flex-wrap:wrap;

        gap:18px;
    }

    .hero-home{

        height:300px;
    }

    .hero-overlay{

        height:300px;
    }

    .hero-small{

        font-size:18px;
    }

    .hero-content h1{

        font-size:34px;
    }

    .hero-content p{

        font-size:17px;

        margin-bottom:25px;
    }

    .hero-buttons{

        gap:12px;
    }

    .hero-btn{

        width:100%;

        text-align:center;
    }

}

/* ==========================================================
   Startseite - Mitmachen
   ========================================================== */

/* ==========================================================
   Startseite - Mitmachen
   ========================================================== */

.join-section{
    padding:40px 0 50px;
    background:#ffffff;
}

.join-header{
    text-align:center;
    margin-bottom:35px;
}

.join-subtitle{
    color:#C40018;
    font-size:17px;
    font-weight:700;
    letter-spacing:6px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.join-header h2{
    margin:0;
    font-size:56px;
    line-height:1.05;
    font-weight:800;
    color:#202733;
}

.join-header p{
    margin:18px auto 0;
    font-size:24px;
    color:#5d6673;
    max-width:850px;
}

/* ==========================================================
   Hauptbereich
   ========================================================== */

.join-main{
    display:grid;
    grid-template-columns:560px 1fr;
    gap:28px;
    align-items:start;
}

/* ==========================================================
   Bild
   ========================================================== */

.join-image{
    position:relative;
}

.join-image img{
    width:100%;
    display:block;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/* ==========================================================
   Sticker
   ========================================================== */

.join-sticker{
    position:absolute;
    left:22px;
    bottom:22px;
    width:145px;
    height:145px;
    border-radius:50%;
    background:#C40018;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:16px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* ==========================================================
   Rechte Seite
   ========================================================== */

.join-right{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.join-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.join-card{
    background:#ffffff;
    border-radius:16px;
    padding:24px;
    border:1px solid #ECECEC;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    display:flex;
    gap:18px;
    transition:.25s;
}

.join-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 28px rgba(0,0,0,.10);
}

.join-icon{
    font-size:34px;
    color:#C40018;
    flex-shrink:0;
}

.join-card h3{
    margin:0 0 8px;
    font-size:24px;
    line-height:1.2;
    color:#202733;
}

.join-card p{
    margin:0;
    font-size:17px;
    line-height:1.55;
    color:#555;
}

/* ==========================================================
   CTA
   ========================================================== */

.join-cta{
    display:grid;
    grid-template-columns:70px 1fr auto;
    align-items:center;
    gap:20px;
    background:#ffffff;
    border:1px solid #ECECEC;
    border-radius:16px;
    padding:22px 26px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.join-cta-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:#C40018;
}

.join-cta-text strong{
    display:block;
    font-size:24px;
    color:#202733;
    margin-bottom:8px;
    line-height:1.3;
}

.join-cta-text p{
    margin:0;
    font-size:17px;
    color:#555;
    line-height:1.5;
}

/* ==========================================================
   Button
   ========================================================== */

.join-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:240px;
    height:58px;
    padding:0 34px;
    background:#C40018;
    color:#ffffff;
    font-size:20px;
    font-weight:700;
    text-decoration:none;
    border-radius:10px;
    transition:.25s;
}

.join-button:hover{
    background:#E0001B;
    color:#ffffff;
    transform:translateY(-2px);
}

/* ==========================================================
   Statistik
   ========================================================== */

.join-bottom{
    margin-top:35px;
    padding-top:28px;
    border-top:1px solid #ECECEC;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.join-stat strong{
    display:block;
    font-size:34px;
    color:#202733;
    margin-bottom:8px;
    line-height:1;
}

.join-stat span{
    font-size:16px;
    color:#555;
    line-height:1.5;
}

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

@media (max-width:1200px){

    .join-main{
        grid-template-columns:1fr;
    }

    .join-image{
        max-width:620px;
        margin:auto;
    }

    .join-cards{
        grid-template-columns:1fr;
    }

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

    .join-cta{
        grid-template-columns:1fr;
        text-align:center;
    }

    .join-button{
        width:100%;
    }
}

@media (max-width:768px){

    .join-header h2{
        font-size:42px;
    }

    .join-header p{
        font-size:20px;
    }

    .join-subtitle{
        font-size:15px;
        letter-spacing:4px;
    }

    .join-bottom{
        grid-template-columns:1fr;
    }

    .join-card{
        padding:20px;
    }

    .join-card h3{
        font-size:22px;
    }

    .join-card p{
        font-size:16px;
    }

    .join-button{
        font-size:18px;
        height:54px;
    }

    .join-sticker{
        display:none;
    }
}

/* ==========================================================
   GEMEINSAMES LAYOUT
   Inhaltsseiten

   Verwendet für:
   - Über uns
   - Geschichte
   - Führung
   - Gerätehaus
   - Ausbildung
   - Mitmachen
   - Kontakt
   ========================================================== */

.content-page{
    max-width:1400px;
    margin:80px auto;
    padding:0 30px 80px;
}


/* ----------------------------------------------------------
   Kopfbereich
---------------------------------------------------------- */

.content-header{
    text-align:center;
    margin-bottom:120px;
}

.content-header h1{
    margin:0 0 30px;
    font-size:3.4rem;
    font-weight:700;
    color:#B30000;
}

.content-header .lead{
    max-width:900px;
    margin:0 auto;
    font-size:1.35rem;
    line-height:1.9;
    color:#444;
}


/* ----------------------------------------------------------
   Inhaltsblöcke
---------------------------------------------------------- */

.content-block{
    display:flex;
    align-items:center;
    gap:80px;
    margin-bottom:120px;
}

.content-block.reverse{
    flex-direction:row-reverse;
}


/* ----------------------------------------------------------
   Bilder
---------------------------------------------------------- */

.content-image{
    flex:0 0 45%;
}

.content-image a{
    display:block;
}

.content-image img{
    display:block;
    width:100%;
    height:auto;

    border-radius:10px;
    border:1px solid #d9d9d9;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:
        transform .30s ease,
        box-shadow .30s ease;
}

.content-image img:hover{

    transform:scale(1.02);

    box-shadow:0 12px 28px rgba(0,0,0,.18);

    cursor:pointer;

}


/* ----------------------------------------------------------
   Textbereich
---------------------------------------------------------- */

.content-text{
    flex:1;
}

.content-text h2{

    margin:0 0 25px;

    color:#B30000;

    font-size:2.2rem;

    font-weight:700;

}

.content-text p{

    margin:0 0 24px;

    color:#444;

    font-size:1.08rem;

    line-height:1.9;

    text-align:justify;

    text-justify:inter-word;

}


/* ----------------------------------------------------------
   Abschluss
---------------------------------------------------------- */

.content-footer{

    max-width:1000px;

    margin:120px auto 0;

    text-align:center;

}

.content-footer h2{

    margin-bottom:30px;

    color:#B30000;

    font-size:2.2rem;

}

.content-footer p{

    margin-bottom:22px;

    color:#444;

    font-size:1.1rem;

    line-height:1.9;

}


/* ----------------------------------------------------------
   Responsive
---------------------------------------------------------- */

@media (max-width:1200px){

    .content-page{

        max-width:1100px;

    }

    .content-block{

        gap:60px;

    }

}


@media (max-width:992px){

    .content-header h1{

        font-size:2.8rem;

    }

    .content-header .lead{

        font-size:1.2rem;

    }

    .content-block,
    .content-block.reverse{

        flex-direction:column;

        gap:45px;

        margin-bottom:90px;

    }

    .content-image,
    .content-text{

        width:100%;

        flex:none;

    }

}


@media (max-width:768px){

    .content-page{

        margin:60px auto;

        padding:0 20px 60px;

    }

    .content-header{

        margin-bottom:80px;

    }

    .content-header h1{

        font-size:2.3rem;

    }

    .content-header .lead{

        font-size:1.1rem;

        line-height:1.8;

    }

    .content-text h2,
    .content-footer h2{

        font-size:1.8rem;

    }

    .content-text p,
    .content-footer p{

        font-size:1rem;

        line-height:1.8;

    }

}


@media (max-width:480px){

    .content-page{

        padding:0 15px 50px;

    }

    .content-header h1{

        font-size:2rem;

    }

    .content-header .lead{

        font-size:1rem;

    }

    .content-text h2,
    .content-footer h2{

        font-size:1.6rem;

    }

}