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

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

/* HERO + PARALLAX */

.hero{
position:relative;
height:100vh;

background-image:url("background.webp");
background-size:cover;
background-position:center right;
background-attachment:fixed;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
}

/* Overlay */

.overlay{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;

background:linear-gradient(
rgba(0,0,0,0.65),
rgba(0,0,0,0.8)
);
}

/* Container */

.container{
position:relative;
max-width:900px;
width:100%;
}

/* LOGO */

.logo{
width:500px;
max-width:100%;
height:auto;
margin-bottom:40px;

animation:logoIntro 1.6s ease;
}

@keyframes logoIntro{

0%{
opacity:0;
transform:scale(.85);
}

100%{
opacity:1;
transform:scale(1);
}

}

/* Headline */

h1{
font-size:3rem;
font-weight:600;
margin-bottom:20px;
}

/* Text */

p{
font-size:1.2rem;
line-height:1.6;
opacity:0.9;
}

/* GLASS CARD */

.glass-card{

margin-top:50px;
padding:35px;

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

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

border-radius:18px;

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

box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

/* CONTACT GRID */

.contact-grid{

margin-top:25px;

display:grid;
grid-template-columns:1fr 1fr;
gap:25px;

text-align:left;
}

.contact-grid{

margin-top:25px;

display:flex;
flex-direction:column;
align-items:center;

gap:20px;

text-align:center;
}

.contact-grid span{

font-size:.8rem;
letter-spacing:1px;
text-transform:uppercase;
opacity:.7;
}

.contact-grid p{
margin-top:5px;
font-size:1rem;
}

/* Email Link */

.contact-grid a{

color:#e30613;
text-decoration:none;
padding-bottom:2px;

}

.contact-grid a:hover{
opacity:.8;
border-bottom:1px solid #e30613;
}

/* ANIMATIONS */

.fade-up{
opacity:0;
transform:translateY(40px);
animation:fadeUp 1.4s cubic-bezier(.16,.84,.44,1) forwards;
}

.delay{
animation-delay:.4s;
}

.delay2{
animation-delay:.8s;
}

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}


}

/* sanfter Hover */

a{
transition:all .3s ease;
}

/* FOOTER */

footer{

position:absolute;
bottom:20px;
left:0;
right:0;

text-align:center;
font-size:.85rem;
opacity:.7;
}

footer a{

color:white;
text-decoration:none;
border-bottom:1px solid rgba(255,255,255,.4);
padding-bottom:2px;
}

footer a:hover{
opacity:1;
}

/* TABLET */

@media (max-width:900px){

.logo{
width:350px;
}

h1{
font-size:2.3rem;
}

}

/* MOBILE */

@media (max-width:600px){

.logo{
width:220px;
}

.contact-grid{
grid-template-columns:1fr;
}

h1{
font-size:1.9rem;
}

p{
font-size:1rem;
}

.glass-card{
padding:25px;
}

/* Parallax deaktivieren für mobile */

.hero{
background-attachment:scroll;
}

/* Trennlinie */

.divider{

width:400px;
height:2px;

background:#e30613;

margin:0 auto 35px auto;

opacity:0;

animation:fadeLine 1.2s ease forwards;
animation-delay:.6s;

}

/* Glow Trennlinie */

.divider-glow{
width:360px;
height:2px;
margin:0 auto 35px auto;
background:#e30613;
opacity:0;

position:relative;
overflow:hidden;

/* Animation */
animation:lineGlow 1.4s ease forwards;
animation-delay:.6s;
}

/* Linie wächst von der Mitte */
@keyframes lineGlow{
0%{
width:0;
opacity:0;
box-shadow:0 0 0px #e30613;
}



100%{
width:360px;
opacity:1;
box-shadow:0 0 12px #e30613;
}
}

/* Optional: kleiner Glow Effekt dauerhaft */
.divider-glow::after{
content:'';
position:absolute;
top:0; left:0;
width:100%; height:100%;
background:#e30613;
opacity:.4;
filter:blur(6px);
}

}