/* style.css */

:root{
--black:#000;
--dark:#111;
--gray:#333;
--light:#f5f5f5;
--white:#fff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#fff;
color:#000;
overflow-x:hidden;
}

img{
width:100%;
display:block;
}

.container{
width:min(1200px,90%);
margin:auto;
}

header{
position:fixed;
top:0;
width:100%;
z-index:1000;
transition:.4s;
}

header.scrolled{
backdrop-filter:blur(16px);
background:rgba(255,255,255,.75);
border-bottom:1px solid rgba(0,0,0,.08);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:24px 0;
}

.logo{
font-weight:900;
font-size:1.2rem;
letter-spacing:.2em;
text-decoration:none;
color:#000;
}

.desktop-nav{
display:flex;
gap:40px;
}

.desktop-nav a{
text-decoration:none;
color:#000;
font-weight:500;
}

.hero{
min-height:100vh;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
padding:100px 5%;
gap:50px;
}

.hero h1{
font-size:clamp(4rem,10vw,9rem);
line-height:.9;
font-weight:900;
}

.hero p{
max-width:500px;
margin-top:30px;
font-size:1.1rem;
color:#444;
}

.hero-image img{
height: 600px;
width: auto;
border-radius: 20px;
margin-left: 40px;
}

.hero-buttons{
margin-top:40px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:16px 28px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.btn-primary{
background:#000;
color:#fff;
}

.btn-primary:hover{
transform:translateY(-3px);
}

.btn-secondary{
border:1px solid #000;
color:#000;
}

.statement{
padding:150px 0;
min-height: 70vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.statement h2,
.experience h2,
.contact h2{
font-size:clamp(3rem,8vw,8rem);
line-height:.9;
font-weight:900;
}

.statement p{
max-width:700px;
margin-top:40px;
font-size:1.2rem;
align-items: center;
justify-content: center;
text-align: center;

}

.services{
padding:140px 0;
background:#f5f5f5;
}

.section-header{
margin-bottom:60px;
}

.section-header span{
letter-spacing:.25em;
font-size:.8rem;
}

.section-header h2{
margin-top:15px;
font-size:clamp(2rem,6vw,5rem);
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-card{
background:#fff;
padding:40px;
border:1px solid rgba(0,0,0,.08);
transition:.4s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card h3{
margin-bottom:15px;
}

.featured{
padding:150px 0;
}

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

.boxen18sound{
border-radius: 20px;
}

.featured h2{
font-size:clamp(3rem,6vw,6rem);
line-height:.95;
margin:20px 0;
}

.stats{
display:flex;
gap:40px;
margin-top:40px;
}

.stats h3{
font-size:2rem;
}

.references{
padding:150px 0;
background:#111;
color:#fff;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.gallery-item{
position:relative;
overflow:hidden;
}

.gallery-item img{
height:400px;
object-fit:cover;
filter:grayscale(100%);
transition:.6s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

.overlay{
position:absolute;
bottom:0;
width:100%;
padding:20px;
background:linear-gradient(transparent,rgba(0,0,0,.8));
}

.experience{
padding:180px 0;
background:#000;
color:#fff;
}

.contact{
padding:180px 0;
text-align:center;
}

.contact-info{
display:flex;
flex-direction:column;
gap:12px;
margin:40px 0;
}

.contact-info a{
color:#000;
text-decoration:none;
}

footer{
padding:40px 0;
border-top:1px solid rgba(0,0,0,.1);
}

.footer-content{
display:flex;
justify-content:space-between;
}

.reveal{
opacity:0;
transform:translateY(50px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:none;
}

.hamburger{
display:none;
background:none;
border:none;
}

.mobile-menu{
display:none;
}

@media (max-width: 900px) {

    /* =========================
       HEADER
    ========================= */

    header {
        position: absolute;
        background: transparent;
    }

    header.scrolled {
        background: rgba(255,255,255,.85);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .nav-container {
        padding: 20px 0;
    }

    /* Navigation komplett ausblenden */
    .desktop-nav,
    .hamburger,
    .mobile-menu {
        display: none !important;
    }

    .logo {
        position: relative;
        display: inline-block;
        padding-bottom: 8px;
    }

    .logo::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;

        width: 95%;
        height: 2px;

        background: #000;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 130px 5% 70px;
        gap: 50px;
    }

    .hero-image {
    display: none;
    }


    .statement {
        position: relative;
    }

    .statement::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 1px;

        background: #000;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(4rem, 19vw, 7rem);
        line-height: .85;
        letter-spacing: -.05em;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-top: 25px;
        max-width: 100%;
    }

    .hero-buttons {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }


    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: cover;
        margin-left: 0;
        border-radius: 16px;
    }


    /* =========================
       STATEMENT
       ========================= */

    .statement {
        min-height: auto;
        padding: 110px 0;
    }

    .statement h2,
    .experience h2,
    .contact h2 {
        font-size: clamp(3.2rem, 15vw, 6rem);
        line-height: .88;
        letter-spacing: -.05em;
    }


    /* =========================
       SERVICES
       ========================= */

    .services {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header span {
        font-size: .7rem;
        letter-spacing: .2em;
    }

    .section-header h2 {
        font-size: clamp(2.2rem, 11vw, 4rem);
        line-height: .95;
        margin-top: 12px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: .95rem;
        line-height: 1.6;
    }


    /* =========================
       FEATURED
       ========================= */

    .featured {
        padding: 100px 0;
    }

    .featured-grid {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .featured-image {
        width: 100%;
    }

    .boxen18sound {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    .featured-content {
        width: 100%;
    }

    .featured-content > span {
        font-size: .7rem;
        letter-spacing: .2em;
    }

    .featured h2 {
        font-size: clamp(3rem, 14vw, 5rem);
        line-height: .88;
        letter-spacing: -.05em;
        margin: 18px 0 25px;
    }

    .featured-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 35px;
    }

    .stats h3 {
        font-size: 1.5rem;
    }

    .stats span {
        font-size: .75rem;
    }


    /* =========================
       REFERENCES
       ========================= */

    .references {
        padding: 100px 0;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-item img {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

    .overlay {
        padding: 18px;
        font-size: .9rem;
    }


    /* =========================
       EXPERIENCE
       ========================= */

    .experience {
        padding: 120px 0;
    }

    .experience p {
        font-size: 1rem;
        line-height: 1.7;
        margin-top: 35px;
        max-width: 100%;
    }


    /* =========================
       CONTACT
       ========================= */

    .contact {
        padding: 120px 0;
    }

    .contact h2 {
    font-size: 10vw;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

    .contact-info {
        margin: 35px 0;
        gap: 15px;
    }

    .contact-info a {
        font-size: .95rem;
        word-break: break-word;
    }


    /* =========================
       FOOTER
       ========================= */

    footer {
        padding: 30px 0;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-size: .8rem;
    }


    /* =========================
       ANIMATION
       ========================= */

    .reveal {
        transform: translateY(30px);
    }

}