:root{

html,body{
overflow-x:hidden;
}

--bg-main:#0b0f17;
--gold:#d4af37;
--gold-light:#f0d87a;

}


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

body{
font-family:"Playfair Display", Georgia, serif;
background-color:#0b0f17;
background-image:
radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
background-size:22px 22px;
color:white;
}

.slogan{
text-align:center;
color:#9ca3af;
font-size:18px;
margin-top:15px;
margin-bottom:50px;
font-family:"Playfair Display", Georgia, serif;
letter-spacing:0.3px;
}


/* LOGO INTRO */

.hero{
text-align:center;
margin-top:70px;
margin-bottom:15px;
}

.logo{
width:120px;
margin-bottom:25px;
}

.hero-title{
font-family:"Playfair Display", Georgia, serif;
font-size:44px;
color:white;
margin-bottom:10px;
}

.hero-title span{
color:#d4af37;
}


.hero-small,
.hero-sub{
color:#9ca3af;
font-size:18px;
letter-spacing:0.3px;
}


.hero-sub span{
color:#d4af37;
}

.headline-small{

color:#9ca3af;

font-size:16px;

margin-bottom:5px;

letter-spacing:0.5px;

}



.headline h1{

font-family:"Playfair Display", Georgia, serif;

font-size:42px;

color:white;

margin-bottom:10px;

}



.headline h1 span{

color:#d4af37;

}



.headline-sub{

color:#9ca3af;

font-size:18px;

max-width:600px;

margin:auto;

}

/* MAIN PANELS */

.container{


display:flex;
gap:20px;
max-width:1200px;
margin:40px auto 80px auto;
padding:20px;

}



.panel{

flex:1;

height:340px; 
max-height:480px;

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

background-size:cover;
background-position:center;

position:relative;

cursor:pointer;

transition:all .45s ease;

border-radius:18px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,0.45);

}


.panel:hover{

flex:1.25;

}



.panel:hover{

transform:scale(1.02);

}



/* HINTERGRUNDBILDER */

.zelt{

background-image:url("zelt.webp");

}



.metall{

background-image:url("metall.webp");

}



.gas{

background-image:url("gas.webp");

}



/* OVERLAY */

.overlay{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

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

transition:all .4s ease;

}



.panel:hover .overlay{

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

}



/* CONTENT */

.content{

position:relative;
z-index:2;

text-align:center;

animation:fadeUp 1s ease;

}



h1{

font-size:40px;
margin-bottom:10px;

}



p{

opacity:.9;
margin-bottom:20px;

}



/* BUTTON */

.button{

display:inline-block;

padding:12px 26px;

background:linear-gradient(135deg,var(--gold),var(--gold-light));

color:black;

border-radius:6px;

font-weight:bold;

text-decoration:none;

transition:.2s;

}



.button:hover{

transform:scale(1.05);

}



/* FOOTER */

footer{

position:fixed;

bottom:20px;
left:50%;

transform:translateX(-50%);

}



footer a{

margin:0 12px;

color:#aaa;

text-decoration:none;

font-size:14px;

}



footer a:hover{

color:white;

}



/* ANIMATIONEN */

@keyframes fadeUp{

from{

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

}

to{

opacity:1;
transform:translateY(0);

}

}



@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}



/* MOBILE */

@media(max-width:900px){

.container{
flex-direction:column;
height:auto;
}

.panel{
height:38vh;
min-height:300px;
max-height:420px;
}

.content h1{
font-size:32px;
}

.content p{
font-size:16px;
}

.logo-intro{
position:relative;
top:auto;
left:auto;
transform:none;
text-align:center;
margin-top:20px;
margin-bottom:10px;
}

.logo{
width:80px;
}

footer{
position:relative;
bottom:auto;
left:auto;
transform:none;
text-align:center;
padding:40px 0;
}

}
