*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:Arial,sans-serif;
background:#0f172a;
color:white;

}

/* Navigation */

.navbar{

position:fixed;
top:0;
left:0;

width:100%;

padding:20px 40px;

display:flex;
justify-content:space-between;
align-items:center;

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

backdrop-filter:blur(12px);

z-index:1000;

}

.logo{

font-size:24px;
font-weight:bold;

}

.nav-links{

display:flex;
list-style:none;
gap:30px;

}

.nav-links a{

text-decoration:none;
color:white;

transition:.3s;

}

.nav-links a:hover{

color:#4ea3ff;

}

/* Burger */

.burger{

display:none;

font-size:32px;

cursor:pointer;

}

/* Mobile Menü */

.mobile-menu{

position:fixed;

top:0;
left:-100%;

width:280px;
height:100vh;

background:rgba(10,10,20,.9);

backdrop-filter:blur(15px);

padding-top:100px;

display:flex;
flex-direction:column;

transition:.5s;

z-index:999;

}

.mobile-menu a{

padding:20px;

color:white;

text-decoration:none;

}

.mobile-menu.active{

left:0;

}

/* Hero */

.hero{

height:100vh;

background-image:url("bilder/Briefkopf\ Jaramillo-it.jpeg");

background-size:contain;
background-repeat: no-repeat;
background-position:top;

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

position:relative;

}

.overlay{

position:absolute;
inset:0;

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

}

.hero-content{

position:relative;

z-index:2;

text-align:center;

padding:20px;

animation:fadeUp 1s ease;

}

.hero-content h1{

font-size:4rem;

margin-bottom:20px;

}

.hero-content p{

font-size:1.2rem;

margin-bottom:30px;

}

.glass-card{

    background: rgba(255,255,255,0.15);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 24px;

    padding: 30px;

    box-shadow:
        0 8px 32px rgba(0,0,0,0.12),
        inset 0 1px 1px rgba(255,255,255,0.25);

    transition: all .3s ease;
}

.glass-card:hover{

    transform: translateY(-8px);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.18),
        inset 0 1px 1px rgba(255,255,255,0.3);
}


.glass-services{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
    max-width:1200px;
    margin:-165px auto 120px auto;
    padding:0 20px;
    position:relative;
    z-index:10;
}
.about{

    margin-top: 30px;
    padding:80px 20px;
    display:flex; 
    justify-content:center;

}
.about-content p{
    font-size: 1.05rem;
    line-height: 1.8;

}

.about-card{

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

    padding:40px;

    border-radius:25px;

    background:rgba(255,255,255,0.12);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.25);

    box-shadow:
    0 8px 32px rgba(0,0,0,0.3);

    color:white;

}

.about-card h2{

    font-size:2rem;
    margin-bottom:25px;

}

.about-card p{

    line-height:1.8;
    margin-bottom:20px;

}

.about-badges{

    display:flex;
    flex-wrap:wrap;
    gap:15px;

    margin-top:25px;

}

.about-badges span{

    background:rgba(255,255,255,0.15);

    border:1px solid rgba(255,255,255,0.2);

    padding:10px 18px;

    border-radius:30px;

    font-size:0.9rem;

}
.about-image img{
    width: 150px;
    height: 180px;
    object-fit: cover;
    object-position: center ;
    border-radius: 12px;
}
.about-intro h3 {
    font-size: 1.4rem;

}

.references{
    padding:100px 8%;
}

.references h2{
    text-align:center;
    margin-bottom:50px;
    font-size:2.5rem;
}

.reference-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.reference-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    overflow:hidden;
    transition:.3s ease;
}

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

.reference-card img{
    width:100%;
    height:auto;
    display: block;
}

.reference-content{
    padding:25px;
}

.reference-content h3{
    margin-bottom:15px;
}

.reference-content p{
    line-height:1.7;
    margin-bottom:15px;
}

.reference-content span{
    font-size:.9rem;
    opacity:.8;
}




/*Kontakt*/
.contact-card{
    max-width:900px;
    margin:auto;
    padding:50px;
}

.contact-intro{
    text-align:center;
    margin-bottom:40px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,.08);
    color:white;
}

.form-group textarea{
    resize:vertical;
}

.privacy-note{
    margin:20px 0;
    font-size:.9rem;
}

.btn-primary{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    cursor:pointer;
}

.success-page{
    min-height:calc(100vh - 80px);
    display:flex;
    justify-content:center;
    align-items:center;
}

.success-card{
    max-width:700px;
    width:100%;
    text-align:center;
    padding:60px 40px;
}

.success-icon{
    font-size:5rem;
    margin-bottom:20px;
}

.success-card h1{
    margin-bottom:20px;
}

.success-card p{
    line-height:1.8;
    margin-bottom:35px;
}

.success-buttons{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:14px 24px;
    text-decoration:none;
    color:#fff;
    border-radius:12px;
}

.btn-primary{
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.2);
}

.btn-secondary{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
}


.project-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 24px;
    background:#d8a7a7;
    color:#111;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:0.3s ease;
}

.project-btn:hover{
    transform:translateY(-3px);
}
.back-arrow {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #d8a2a8;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    transition: all .3s ease;
    z-index: 999;
}

.back-arrow:hover {
    transform: translateY(-3px) scale(1.08);
    background: #c58b92;
}


/* Footer */

footer{
    background: rgba(10,15,35,0.98);
    border-top: 3px solid #4ea3ff;
    padding: 40px 20px;
    margin-top: 80px;
    text-align: center;
}

.footer-content p{
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#4ea3ff;
    text-decoration:none;
    font-weight:600;
}

.footer-links a:hover{
    color:#ffffff;
}


.legal-page{
    padding:120px 20px;
    min-height:100vh;
}


.legal-card{
    max-width:900px;
    margin:auto;
    padding:50px;
}
.legal-card h1{
    text-align:center;
    margin-bottom:10px;


font-size: clamp(1.8rem, 5vw, 3rem);


}

.legal-card h2{
    margin-top:35px;
    margin-bottom:15px;
}

.legal-card p,
.legal-card li{
    line-height:1.8;
}

@media(max-width:768px){

    .legal-card{
        padding:30px;
    }

    .legal-card h1{

font-size: clamp(1.8rem, 5vw, 3rem);



    }
}












.btn{

display:inline-block;

padding:15px 30px;

background:#1565ff;

color:white;

text-decoration:none;

border-radius:50px;

transition:.3s;

}

.btn:hover{

transform:translateY(-4px);

box-shadow:
0 10px 30px
rgba(21,101,255,.5);

}

/* Sections */

section{

padding:100px 20px;

}

h2{

text-align:center;

margin-bottom:50px;

}

/* Karten */

.cards{

display:flex;
gap:30px;

justify-content:center;

flex-wrap:wrap;

}

.card{

background:#1e293b;

padding:30px;

border-radius:20px;

width:300px;

transition:.3s;

}

.card:hover{

transform:translateY(-10px);

}

/* Kontakt */

form{

max-width:600px;

margin:auto;

display:flex;

flex-direction:column;

gap:20px;

}

input,
textarea{

padding:15px;

border:none;

border-radius:10px;

}

button{

padding:15px;

background:#1565ff;

color:white;

border:none;

border-radius:10px;

cursor:pointer;

}

/* Animation */

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(40px);

}

to{

opacity:1;
transform:translateY(0);

}

}




.ticker{

overflow:hidden;

padding:15px 0;

background:#1565ff;

color:white;

font-weight:600;
}

.ticker-track{

display:flex;

gap:30px;

width:max-content;

animation:marquee 20s linear infinite;
}

@keyframes marquee{

from{
transform:translateX(100%);
}

to{
transform:translateX(-100%);
}

}



/* Mobile */

@media(max-width:768px){

.nav-links{

display:none;

}

.burger{

display:block;

}



@media(max-width:768px){

.hero{
    height:220px;
    background-size:contain;
    background-position:top center;
}

}



.hero img{
    width:180px;
    max-width:45%;
height: auto;
display: block;
margin: 0 auto;

}

.glass-services{
    margin-top:0;
}

.glass-card{
    min-height:auto;
}


.hero-logo{
    display:block;
    margin:0 auto;

    width:280px;
    max-width:80%;

    position:relative;
    top:20px;
}
.hero-content h1{

font-size:2.5rem;
}
.ticker { 
display: none;
}
.footer-links {
        flex-direction: column;
        gap: 12px;
    }
}




