/* ==========================================================
   SCHUHTECHNIK
   Schuhhaus Minnich
========================================================== */

/* ---------- Hero ---------- */

.technik-hero{
    padding:100px 0;
    background:#fff;
}

.technik-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.technik-kicker{
    display:inline-block;
    margin-bottom:18px;

    color:#d6a100;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;
}

.technik-text h1{

    font-size:62px;

    line-height:1.05;

    margin-bottom:30px;

    color:#222;
}

.technik-text p{

    font-size:21px;

    line-height:1.8;

    color:#555;

    margin-bottom:40px;

    max-width:620px;
}

.technik-image img{

    width:100%;

    display:block;

    border-radius:22px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.35s;
}

.technik-image img:hover{

    transform:scale(1.02);
}

/* ---------- Leistungen ---------- */

.leistungen{

    padding:90px 0;

    background:#fafafa;
}

.leistungen h2{

    font-size:48px;

    text-align:center;

    margin-bottom:15px;

    color:#222;
}

.leistungen-intro{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

    font-size:20px;

    line-height:1.8;

    color:#666;
}

.leistungen-grid{

    display:grid;

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

    gap:30px;
}

.leistungsgruppe{

    background:#fff;

    padding:35px;

    border-radius:22px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.leistungsgruppe:hover{

    transform:translateY(-6px);

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

.leistungsgruppe h3{

    font-size:26px;

    margin-bottom:25px;

    color:#222;
}

.leistungsgruppe ul{

    list-style:none;

    margin:0;

    padding:0;
}

.leistungsgruppe li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:18px;

    color:#555;

    line-height:1.6;
}

.leistungsgruppe li svg{

    width:20px;

    height:20px;

    color:#d6a100;

    flex-shrink:0;

    margin-top:3px;
}

/* ---------- Galerie ---------- */

.technik-gallery{

    padding:90px 0;

    background:#fff;
}

.technik-gallery h2{

    text-align:center;

    font-size:46px;

    margin-bottom:55px;
}

.gallery-grid{

    display:grid;

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

    gap:20px;
}

.gallery-item{

    display:block;

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    transition:.3s;
}

.gallery-item img{

    width:100%;

    display:block;

    transition:.4s;
}

.gallery-item:hover{

    transform:translateY(-6px);
}

.gallery-item:hover img{

    transform:scale(1.08);
}

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

.technik-abschluss{

    padding:100px 20px;

    background:#f7f7f7;

    text-align:center;
}

.technik-abschluss h2{

    font-size:48px;

    color:#222;

    margin-bottom:25px;
}

.technik-abschluss p{

    max-width:760px;

    margin:0 auto 40px;

    font-size:21px;

    line-height:1.8;

    color:#666;
}

/* ---------- Buttons ---------- */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 36px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn-primary{

    background:#d6a100;

    color:#fff;
}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

/* ---------- Lightbox ---------- */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.9);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;
}

.lightbox.show{

    display:flex;
}

.lightbox img{

    max-width:92%;

    max-height:88vh;

    border-radius:18px;
}

.lightbox-close{

    position:absolute;

    top:25px;

    right:35px;

    color:#fff;

    font-size:52px;

    cursor:pointer;
}

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

@media(max-width:1100px){

.technik-grid{

    grid-template-columns:1fr;

    gap:60px;
}

.technik-text{

    text-align:center;
}

.technik-text p{

    margin:0 auto 40px;
}

.leistungen-grid{

    grid-template-columns:1fr;
}

.gallery-grid{

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

}

@media(max-width:768px){

.technik-hero,
.leistungen,
.technik-gallery,
.technik-abschluss{

    padding:60px 0;
}

.technik-text h1{

    font-size:42px;
}

.leistungen h2,
.technik-gallery h2,
.technik-abschluss h2{

    font-size:34px;
}

.technik-text p,
.leistungen-intro,
.technik-abschluss p{

    font-size:18px;
}

.gallery-grid{

    grid-template-columns:1fr;
}

.btn{

    width:100%;
}

}/* ==========================================================
   LIGHTBOX FEINSCHLIFF
========================================================== */

.lightbox{

    position:fixed;
    inset:0;

    display:none;

    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.94);

    z-index:9999;
}

.lightbox.show{

    display:flex;
}

.lightbox img{

    max-width:90%;
    max-height:85vh;

    border-radius:18px;

    animation:fadeIn .25s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{

    position:absolute;

    border:none;

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

    color:#fff;

    width:56px;
    height:56px;

    border-radius:50%;

    cursor:pointer;

    transition:.25s;
}

.lightbox-close{

    top:30px;
    right:30px;

    font-size:34px;
}

.lightbox-prev{

    left:35px;
    top:50%;

    transform:translateY(-50%);
}

.lightbox-next{

    right:35px;
    top:50%;

    transform:translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{

    background:#d6a100;
}

.lightbox-counter{

    position:absolute;

    bottom:35px;

    color:#fff;

    font-size:18px;

    letter-spacing:1px;
}

@keyframes fadeIn{

from{

    opacity:0;

    transform:scale(.95);

}

to{

    opacity:1;

    transform:scale(1);

}

}