/* =====================
   RESET & BASIS
===================== */

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

body{
font-family:'Segoe UI', Arial, sans-serif;
background:#f4f1ec;
color:#2b2b2b;
line-height:1.6;
}

a{
text-decoration:none;
color:inherit;
}

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

.main-header{
position:sticky;
top:0;

background:rgba(40,25,15,0.85);
backdrop-filter:blur(10px);

box-shadow:0 4px 20px rgba(0,0,0,0.25);

z-index:1000;
}

.header-container{
max-width:1200px;
margin:auto;

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

padding:18px 30px;
}

.logo img{
height:60px;
}

/* NAV */

.nav a{
color:white;
margin-left:30px;
font-weight:600;
letter-spacing:0.5px;

position:relative;
transition:0.3s;
}

.nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;

width:0%;
height:2px;

background:#e0b27a;

transition:0.3s;
}

.nav a:hover{
color:#e0b27a;
transform:translateY(-2px);
}

.nav a:hover::after{
width:100%;
}

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

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

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

text-align:center;
overflow:hidden;
}

.hero-video{
position:absolute;
top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

z-index:-1;
}

.hero::after{
content:"";
position:absolute;
top:0;
left:0;

width:100%;
height:100%;

background:linear-gradient(
to bottom,
rgba(0,0,0,0.5),
rgba(0,0,0,0.75)
);
}

.hero-content{
position:relative;
z-index:1;
color:white;
}

.hero h1{
font-size:52px;
text-shadow:0 0 20px rgba(0,0,0,0.7);
}

.hero p{
margin-top:10px;
font-size:20px;
}

/* BUTTON */

.hero-btn{
display:inline-block;
margin-top:25px;

padding:14px 30px;

background:linear-gradient(135deg,#8b5e3c,#c08a5a);
color:white;

border-radius:8px;

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

transition:0.3s;
}

.hero-btn:hover{
transform:scale(1.05);
}

/* =====================
   SECTION
===================== */

.section{
padding:80px 20px;
max-width:1100px;
margin:auto;
}

.section h2{
text-align:center;
margin-bottom:50px;
font-size:32px;
}

/* =====================
   GRID
===================== */

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

/* =====================
   CARDS
===================== */

.card{
background:white;
padding:30px;

border-radius:12px;

box-shadow:0 10px 30px rgba(0,0,0,0.1);

transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* =====================
   IMPRESSUM
===================== */

.impressum{
max-width:850px;
margin:80px auto;
padding:40px;

background:white;

border-radius:12px;

box-shadow:0 10px 30px rgba(0,0,0,0.1);

line-height:1.7;
}

.impressum h1{
margin-bottom:20px;
font-size:32px;
color:#5c3a21;
}

.impressum strong{
color:#5c3a21;
}

.impressum a{
color:#8b5e3c;
}

.impressum hr{
margin:30px 0;
border:none;
height:1px;
background:#ddd;
}

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

footer{
background:#2b2b2b;
color:white;
text-align:center;

padding:30px;
margin-top:60px;
}

footer a{
color:#e0b27a;
margin:0 10px;
}

footer a:hover{
text-decoration:underline;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:768px){

.header-container{
flex-direction:column;
}

.nav{
margin-top:10px;
}

.nav a{
margin:10px;
display:inline-block;
}

.hero h1{
font-size:36px;
}

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

.impressum{
margin:40px 15px;
padding:25px;
}

}