@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    font-family:'Manrope', sans-serif;
    background:#fff;
    color:#111;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html {
    scroll-behavior:smooth;
}


body {

    font-family:'Manrope', sans-serif;

    background:#fff;

    color:#111;

}


img {

    max-width:100%;

    display:block;

}



/* =========================
HEADER
========================= */


header {

    position:relative;

    width:100%;

    height:100px;

    padding:0 45px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:#fff;

    z-index:20;

}



.logo img {

    width:210px;

}



nav {

    display:flex;

    gap:45px;

    align-items:center;

}



nav a {

    text-decoration:none;

    color:#333;

    font-size:17px;

    letter-spacing:3px;

    font-weight:500;

    transition:.3s;

}



nav a:hover {

    color:#999;

}



.header-button {

    text-decoration:none;

    border:1px solid #222;

    color:#111;

    padding:15px 36px;

    font-size:14px;

    letter-spacing:2px;

    transition:.3s;

}



.header-button:hover {

    background:#111;

    color:#fff;

}





/* =========================
HERO
========================= */


.hero {

    height:calc(100vh - 100px);

    min-height:650px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:0 8%;

    background:#fff;

}




.hero-text {

    max-width:1000px;

}



.hero-text h1 {

    font-size:82px;

    line-height:.98;

    font-weight:800;

    letter-spacing:-4px;

}



.hero-text p {

    margin-top:35px;

    font-size:17px;

    letter-spacing:4px;

}

.hero-text p {

    margin-top:35px;

    font-size:17px;

    letter-spacing:4px;

    line-height:1.8;

}



.hero-text a {

    display:inline-block;

    margin-top:40px;

    padding:15px 36px;

    border:1px solid #222;

    color:#111;

    text-decoration:none;

    letter-spacing:2px;

    font-size:14px;

    min-width:145px;

    text-align:center;

}



.hero-text a:hover {

    background:#111;

    color:#fff;

}




/* =========================
ALLGEMEIN
========================= */


section {

    padding:120px 8%;

}



h2 {

    font-size:55px;

    font-weight:800;

    letter-spacing:-2px;

}





/* =========================
LEISTUNGEN
========================= */


.services h2,
.portfolio h2 {

    text-align:center;

    margin-bottom:70px;

}



.service-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}



.service-grid div {

    border:1px solid #eee;

    padding:50px 30px;

    text-align:center;

    transition:.3s;

}



.service-grid div:hover {

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}



.service-grid h3 {

    font-size:25px;

    margin-bottom:20px;

}



.service-grid p {

    color:#777;

    line-height:1.7;

}





/* =========================
PORTFOLIO
========================= */


.gallery {

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

/* =========================
PORTFOLIO FILTER
========================= */


.filter-btn {

    background:none;
    border:none;
    padding:15px 25px;
    font-family:'Manrope',sans-serif;
    font-size:15px;
    letter-spacing:3px;
    cursor:pointer;
    color:#777;
}


.filter-btn.active {

    background:#111;
    color:white;

}


.filter-btn:hover {

    color:#111;

}


.portfolio-item {

    position:relative;
    overflow:hidden;
    transition:all .4s ease;

}


.portfolio-item.hide {

    display:none;

}


.gallery img {

    height:420px;

    width:100%;

    object-fit:cover;

    cursor:pointer;

    transition:.4s;

}



.portfolio-overlay {

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    color:white;

    opacity:0;

    transition:.4s;

}



.portfolio-item:hover .portfolio-overlay {

    opacity:1;

}



.portfolio-overlay span {

    font-size:12px;

    letter-spacing:4px;

    margin-bottom:15px;

}



.portfolio-overlay h3 {

    font-size:28px;

    font-weight:700;

}



.gallery img:hover {

    transform:scale(1.04);

}

/* =========================
PORTFOLIO ANIMATION
========================= */


.portfolio-item.show-animation {

    animation: portfolioFade .5s ease forwards;

}


@keyframes portfolioFade {

    from {

        opacity:0;

        transform:translateY(25px) scale(.96);

    }


    to {

        opacity:1;

        transform:translateY(0) scale(1);

    }

}

/* =========================
ABOUT
========================= */


.about {

    max-width:900px;

    margin:auto;

    text-align:center;

}



.about h2 {

    margin-bottom:50px;

}



.about p {

    color:#555;

    font-size:18px;

    line-height:2;

    margin-bottom:25px;

}





/* =========================
FAQ
========================= */


.faq {

    background:#fff;

    padding:100px 8%;

}



.faq-label {

    display:block;

    text-align:center;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:35px;

}



.faq h2 {

    text-align:center;

    font-size:52px;

    line-height:1.05;

    font-weight:800;

    letter-spacing:-3px;

    margin-bottom:60px;

}



.faq-container {

    max-width:900px;

    margin:auto;

}



.faq-item {

    border:1px solid #ededed;

    margin-bottom:12px;

    background:#fafafa;

}



.faq-item button {

    width:100%;

    padding:20px 28px;

    background:none;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-family:'Manrope',sans-serif;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    color:#111;

    text-align:left;

}



.faq-item button i {

    font-size:14px;

    color:#777;

    transition:.3s;

}



.faq-item.active button i {

    transform:rotate(180deg);

}



.faq-answer {

    max-height:0;

    overflow:hidden;

    padding:0 35px;

    color:#666;

    line-height:1.8;

    font-size:15px;

    transition:max-height .4s ease, padding .4s ease;

}



.faq-item.active .faq-answer {

    max-height:300px;

    padding:0 35px 30px;

}





/* =========================
KONTAKT
========================= */


.contact {

    background:#fff;

    padding-top:120px;

    padding-bottom:120px;

}



.contact-wrapper {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:start;

}





.contact-left span {

    display:inline-block;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:35px;

}



.contact-left h2 {

    font-size:52px;

    line-height:1.05;

    font-weight:800;

    letter-spacing:-3px;

    margin-bottom:30px;

}



.contact-left p {

    max-width:560px;

    font-size:16px;

    line-height:1.7;

    color:#555;

    margin-bottom:35px;

}





/* KONTAKT BOXEN */


.contact-box {

    width:100%;

    max-width:600px;

    height:68px;

    display:flex;

    align-items:center;

    padding:0 22px;

    margin-bottom:18px;

    color:white;

    text-decoration:none;

    border-radius:2px;

    transition:.3s;

}



.contact-box:hover {

    transform:translateY(-3px);

}



.contact-box > i:first-child {

    font-size:22px;

    margin-right:18px;

}



.contact-box div {

    flex:1;

}



.contact-box small {

    display:block;

    font-size:11px;

    letter-spacing:2px;

    opacity:.85;

    margin-bottom:3px;

}



.contact-box strong {

    font-size:15px;

}



.whatsapp {

    background:linear-gradient(90deg,#25D366,#11998e);

}



.instagram {

    background:linear-gradient(90deg,#f58529,#dd2a7b,#8134af);

}





/* FORMULAR */


.contact-card {

    background:#fafafa;

    padding:45px;

    border:1px solid #ededed;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}



.contact-card h2 {

    font-size:42px;

    line-height:1.1;

    letter-spacing:-2px;

    margin-bottom:45px;

}



.contact-form {

    display:flex;

    flex-direction:column;

    gap:18px;

}



.contact-form label {

    font-size:12px;

    letter-spacing:2px;

    color:#555;

}



.contact-form input,
.contact-form select,
.contact-form textarea {

    width:100%;

    border:none;

    background:#fff;

    padding:20px;

    font-family:'Manrope',sans-serif;

    font-size:15px;

}



.contact-form textarea {

    height:180px;

    resize:none;

}



.contact-form button {

    height:60px;

    margin-top:10px;

    background:#171717;

    color:white;

    border:none;

    cursor:pointer;

    font-size:14px;

    letter-spacing:2px;

}



.privacy-check {

    display:flex;

    align-items:center;

    gap:12px;

}



.privacy-check input {

    width:18px;

    height:18px;

}



.privacy-check a {

    color:#111;

}



.response-time {

    text-align:center;

    color:#999;

    font-size:13px;

    margin-top:25px;

}



.hidden-field {

    display:none;

}



/* =========================
FOOTER
========================= */


.footer {

    padding:70px 8% 30px;

    border-top:1px solid #eee;

}


.footer div p {

    margin-bottom:16px;

}



.footer-container {

    display:grid;

    grid-template-columns:1.2fr .8fr .8fr .8fr;

    gap:80px;

}



.footer-logo img {

    width:260px;

    margin-bottom:35px;

}



.footer-logo p {

    color:#888;

    font-size:16px;

    line-height:1.8;

}



.footer h4 {

    font-size:12px;

    font-weight:700;

    letter-spacing:4px;

    color:#999;

    margin-bottom:25px;

}



.footer a {

    display:block;

    text-decoration:none;

    color:#222;

    font-size:16px;

    margin-bottom:16px;

}



.footer a:hover {

    color:#888;

}



.footer-bottom {

    width:100%;

    border-top:1px solid #eee;

    margin-top:60px;

    padding-top:25px;

    text-align:center;

    color:#aaa;

    font-size:13px;

    letter-spacing:3px;

}

/* =========================
FLOATING INSTAGRAM
========================= */


.instagram-float {

    position:fixed;

    right:35px;

    bottom:115px;

    width:60px;

    height:60px;

    background:linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af
    );

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,.20);

    z-index:999;

    transition:.3s;

}



.instagram-float:hover {

    transform:translateY(-5px);

}





/* =========================
FLOATING WHATSAPP
========================= */


.whatsapp-float {

    position:fixed;

    right:35px;

    bottom:35px;

    width:60px;

    height:60px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,.20);

    z-index:999;

    transition:.3s;

}



.whatsapp-float:hover {

    transform:translateY(-5px);

}





/* =========================
BACK TO TOP
========================= */


.back-to-top {

    position:fixed;

    right:35px;

    bottom:195px;

    width:55px;

    height:55px;

    background:#111;

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}



.back-to-top.show {

    opacity:1;

    visibility:visible;

}



.back-to-top:hover {

    transform:translateY(-5px);

    background:#333;

}





/* =========================
RECHTLICHES
========================= */


.legal {

    max-width:900px;

    margin:auto;

    padding-top:140px;

    padding-bottom:100px;

}



.legal h1 {

    font-size:60px;

    font-weight:800;

    letter-spacing:-2px;

    margin-bottom:50px;

}



.legal h2 {

    font-size:28px;

    margin-top:45px;

    margin-bottom:20px;

}



.legal p {

    color:#555;

    font-size:16px;

    line-height:1.8;

    margin-bottom:20px;

}



.legal a {

    color:#111;

    text-decoration:underline;

}







/* =========================
LIGHTBOX PORTFOLIO
========================= */


.portfolio-image {

    cursor:pointer;

}



.lightbox-overlay {

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;

}



.lightbox-overlay.active {

    opacity:1;

    visibility:visible;

}



.lightbox-overlay img {

    max-width:85%;

    max-height:85%;

    object-fit:contain;

}



.lightbox-overlay i {

    position:absolute;

    top:40px;

    right:50px;

    font-size:40px;

    color:white;

    cursor:pointer;

}

/* LIGHTBOX PFEILE */


.lightbox-prev,
.lightbox-next {

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    background:none;

    border:none;

    color:white;

    font-size:55px;

    cursor:pointer;

    z-index:10002;

    padding:20px;

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

}


.lightbox-prev:hover,
.lightbox-next:hover {

    transform:translateY(-50%);

}



.lightbox-prev {

    left:20px;

}


.lightbox-next {

    right:20px;

}



.lightbox-close {

    position:absolute;

    top:40px;

    right:50px;

    font-size:40px;

    color:white;

    cursor:pointer;

}

/* LIGHTBOX BILDNUMMER */

.lightbox-counter {

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:16px;

    letter-spacing:2px;

    background:rgba(0,0,0,.35);

    padding:8px 18px;

    border-radius:20px;

}

/* =========================
MOBILE
========================= */


@media(max-width:1000px){


header {

    padding:25px;

}



.logo img {

    width:200px;

}



nav {

    display:none;

}



.header-button {

    padding:12px 20px;

}



.hero {

    padding:0 15px;

}



.hero-text {

    left:25px;

    top:55%;

}



.hero-text h1 {

    font-size:46px;

    letter-spacing:-2px;

}



.hero-text p {

    font-size:14px;

}



section {

    padding:80px 25px;

}



.service-grid {

    grid-template-columns:1fr;

}



.gallery {

    grid-template-columns:1fr;

}



.contact-wrapper {

    grid-template-columns:1fr;

    gap:40px;

}



.contact-left h2 {

    font-size:44px;

}



.contact-card {

    padding:25px;

}



.contact-card h2 {

    font-size:32px;

}



.contact-box {

    height:90px;

}



.faq h2 {

    font-size:38px;

}



.faq-item button {

    font-size:15px;

    padding:18px 20px;

}



.instagram-float {

    width:55px;

    height:55px;

    right:20px;

    bottom:95px;

    font-size:26px;

}



.whatsapp-float {

    width:55px;

    height:55px;

    right:20px;

    bottom:25px;

    font-size:28px;

}



.footer-container {

    grid-template-columns:1fr;

    gap:40px;

}



.footer {

    padding:60px 25px 25px;

}


}

/* =========================
PORTFOLIO FILTER
========================= */


.portfolio-filter {

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:60px;

}



.filter-btn {

    background:none;

    border:none;

    font-family:'Manrope',sans-serif;

    font-size:14px;

    letter-spacing:2px;

    cursor:pointer;

    padding:12px 20px;

    color:#555;

    transition:.3s;

}



.filter-btn:hover {

    color:#111;

}



.filter-btn.active {

    background:#111;

    color:white;

}

