/* ==========================================================
   Shadow Wolves DSW
   style.css
   Version 1.0
========================================================== */


/* ==========================================================
   RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{

    background:#111111;

    color:#F5F5F5;

    font-family:'Inter',sans-serif;

    font-size:16px;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}


/* ==========================================================
   ROOT
========================================================== */

:root{

    --background:#111111;

    --surface:#1B1B1B;

    --surface-light:#232323;

    --gold:#C8A24A;

    --gold-hover:#D7B159;

    --white:#FFFFFF;

    --text:#D0D0D0;

    --border:#303030;

}


/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:min(1200px,90%);

    margin:auto;

}


/* ==========================================================
   TYPOGRAPHIE
========================================================== */

h1,
h2,
h3,
h4{

    font-family:'Cinzel',serif;

    color:var(--white);

    font-weight:600;

}

h2{

    font-size:2.8rem;

    margin-bottom:15px;

}

h3{

    font-size:1.6rem;

}

p{

    color:var(--text);

}

strong{

    color:var(--white);

}


/* ==========================================================
   SECTIONS
========================================================== */

section{

    padding:110px 0;

}

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-header.left{

    text-align:left;

}

.divider{

    width:90px;

    height:3px;

    background:var(--gold);

    margin:20px auto 35px;

}

.section-header.left .divider{

    margin:20px 0 35px;

}


/* ==========================================================
   HEADER
========================================================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.35s;

}


/* Header Startseite */

header.scrolled{

    background:rgba(17,17,17,.96);

    backdrop-filter:blur(10px);

    box-shadow:0 5px 20px rgba(0,0,0,.35);

}


/* Header Impressum & Datenschutz */

.header-solid{

    background:rgba(17,17,17,.97);

    backdrop-filter:blur(10px);

    border-bottom:1px solid var(--border);

}


/* ==========================================================
   NAVIGATION
========================================================== */

.navbar{

    width:min(1400px,94%);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:65px;

}

.logo-text h1{

    font-size:1.2rem;

    margin-bottom:2px;

}

.logo-text span{

    color:var(--gold);

    font-size:.85rem;

}

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links a{

    color:var(--white);

    transition:.3s;

    font-size:.95rem;

}

.nav-links a:hover,

.nav-links a.active{

    color:var(--gold);

}


/* ==========================================================
   HERO
========================================================== */

.hero{

    position:relative;

    width:100%;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:url("../images/hero/hero.png");

    background-size:cover;

    background-position:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.72),

        rgba(0,0,0,.60)

    );

}

.hero-content{

    position:relative;

    z-index:2;

    width:min(850px,90%);

}

.hero h2{

    font-size:4rem;

    margin-bottom:10px;

}

.hero h3{

    color:var(--gold);

    font-size:1.6rem;

}

.hero-divider{

    width:120px;

    height:3px;

    background:var(--gold);

    margin:35px auto;

}

.hero p{

    color:var(--white);

    font-size:1.25rem;

    line-height:2;

    margin-bottom:40px;

}


/* ==========================================================
   HERO SERVICES
========================================================== */

.hero-services{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:45px;

}

.hero-services span{

    border:1px solid var(--gold);

    color:var(--gold);

    padding:10px 22px;

    border-radius:40px;

}


/* ==========================================================
   BUTTONS
========================================================== */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary,

.btn-secondary{

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.btn-primary{

    background:var(--gold);

    color:#111;

}

.btn-primary:hover{

    background:var(--gold-hover);

}

.btn-secondary{

    border:2px solid var(--gold);

    color:var(--gold);

}

.btn-secondary:hover{

    background:var(--gold);

    color:#111;

}


/* ==========================================================
   SCROLL INDICATOR
========================================================== */

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:var(--white);

    letter-spacing:2px;

    font-size:.85rem;

}
/* ==========================================================
   LEISTUNGEN
========================================================== */

.services{

    background:var(--background);

}

.service-large{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    margin-bottom:90px;

}

.service-image img{

    width:100%;

    border-radius:12px;

    border:1px solid var(--border);

}

.service-content h3{

    color:var(--gold);

    font-size:2rem;

    margin-bottom:30px;

}

.service-content p{

    margin-bottom:20px;

}


/* ==========================================================
   SERVICE KARTEN
========================================================== */

.service-small-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.service-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:12px;

    padding:35px;

    transition:.35s ease;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:0 20px 40px rgba(0,0,0,.30);

}

.service-card img{

    width:100%;

    border-radius:10px;

    margin-bottom:25px;

}

.service-card h3{

    color:var(--gold);

    margin-bottom:10px;

}

.service-title{

    margin-bottom:25px;

}

.service-title span{

    display:block;

    color:var(--gold);

    font-size:.85rem;

    letter-spacing:1px;

    margin-top:4px;

}

.service-card p{

    margin-bottom:18px;

}


/* ==========================================================
   ÜBER MICH
========================================================== */

.about{

    background:var(--surface);

}

.about-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:12px;

    border:1px solid var(--border);

}

.about-content p{

    margin-bottom:22px;

}


/* ==========================================================
   HIGHLIGHTS
========================================================== */

.about-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:40px;

}

.highlight{

    background:var(--background);

    border-left:4px solid var(--gold);

    border-radius:8px;

    padding:18px 22px;

    transition:.3s;

}

.highlight:hover{

    transform:translateX(6px);

    border-left-width:6px;

}


/* ==========================================================
   WEITERE PROJEKTE
========================================================== */

.projects{

    background:var(--background);

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:45px;

}

.project-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:12px;

    overflow:hidden;

    transition:.35s ease;

}

.project-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:0 20px 40px rgba(0,0,0,.30);

}

.project-card img{

    width:100%;

    aspect-ratio:16/9;

    object-fit:cover;

}

.project-card h3{

    color:var(--gold);

    padding:30px 30px 10px;

}

.project-subtitle{

    display:block;

    color:var(--gold);

    font-size:.9rem;

    padding:0 30px 20px;

    opacity:.85;

}

.project-card p{

    padding:0 30px;

    margin-bottom:18px;

}

.project-button{

    display:inline-block;

    margin:20px 30px 35px;

    padding:14px 30px;

    border:2px solid var(--gold);

    border-radius:40px;

    color:var(--gold);

    font-weight:600;

    transition:.3s;

}

.project-button:hover{

    background:var(--gold);

    color:#111;

}
/* ==========================================================
   KONTAKT
========================================================== */

.contact{

    background:var(--surface);

}

.contact-grid{

    display:grid;

    grid-template-columns:350px 1fr;

    gap:60px;

    align-items:start;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-info h3{

    color:var(--gold);

    margin-bottom:10px;

}

.contact-item{

    background:var(--background);

    border-left:4px solid var(--gold);

    padding:20px;

    border-radius:8px;

    transition:.3s;

}

.contact-item:hover{

    transform:translateX(5px);

}

.contact-item strong{

    display:block;

    color:var(--white);

    margin-bottom:8px;

}

.contact-form{

    background:var(--background);

    border:1px solid var(--border);

    border-radius:12px;

    padding:40px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px;

    background:var(--surface);

    color:var(--white);

    border:1px solid var(--border);

    border-radius:8px;

    font-family:'Inter',sans-serif;

    font-size:1rem;

    transition:.3s;

}

.contact-form textarea{

    resize:vertical;

    min-height:180px;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 10px rgba(200,162,74,.2);

}

.contact-form button{

    width:max-content;

    padding:16px 36px;

    background:var(--gold);

    color:#111111;

    border:none;

    border-radius:40px;

    cursor:pointer;

    font-size:1rem;

    font-weight:600;

    transition:.3s;

}

.contact-form button:hover{

    background:var(--gold-hover);

}


/* ==========================================================
   IMPRESSUM / DATENSCHUTZ
========================================================== */

.legal{

    background:var(--background);

    padding-top:140px;

    padding-bottom:100px;

}

.legal h3{

    color:var(--gold);

    margin-top:45px;

    margin-bottom:15px;

}

.legal p{

    margin-bottom:18px;

}

.legal ul{

    margin:20px 0;

    padding-left:20px;

}

.legal li{

    margin-bottom:10px;

    color:var(--text);

}


/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:#0B0B0B;

    border-top:1px solid var(--border);

    padding-top:60px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    padding-bottom:50px;

}

.footer-company img{

    width:80px;

    margin-bottom:20px;

}

.footer-company h3{

    color:var(--gold);

    margin-bottom:10px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-links h4{

    color:var(--gold);

    margin-bottom:15px;

}

.footer-links a{

    color:var(--text);

    transition:.3s;

}

.footer-links a:hover{

    color:var(--gold);

}

.footer-bottom{

    border-top:1px solid var(--border);

    padding:25px 0;

    text-align:center;

    color:#888888;

    font-size:.9rem;

}


/* ==========================================================
   ANIMATIONEN
========================================================== */

.hidden{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1100px){

    .service-large,
    .about-grid,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .service-small-grid,
    .projects-grid,
    .footer-grid{

        grid-template-columns:1fr;

    }

    .about-highlights{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    header{

        background:rgba(17,17,17,.97);

        backdrop-filter:blur(10px);

    }

    .navbar{

        flex-direction:column;

        gap:20px;

    }

    .nav-links{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .hero{

        height:auto;

        min-height:100vh;

        padding:160px 0 100px;

    }

    .hero h2{

        font-size:2.8rem;

    }

    .hero h3{

        font-size:1.2rem;

    }

    .hero-services{

        flex-direction:column;

        align-items:center;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        text-align:center;

    }

    h2{

        font-size:2rem;

    }

    section{

        padding:80px 0;

    }

}

@media(max-width:480px){

    .logo img{

        width:50px;

    }

    .logo-text h1{

        font-size:1rem;

    }

    .logo-text span{

        font-size:.75rem;

    }

    .hero h2{

        font-size:2.2rem;

    }

    .hero p{

        font-size:1rem;

    }

    .contact-form{

        padding:25px;

    }

}
