:root{

--rot:#b22222;
--gold:#d4af37;
--dunkel:#1e1e1e;
--hell:#f7f6f2;
--grau:#555;
--weiß:#ffffff;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family: 'Segoe UI', Arial, sans-serif;
background:var(--hell);
color:var(--dunkel);
line-height:1.6;

}

/* NAVBAR */

.navbar{

display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:var(--dunkel);
color:white;
position:sticky;
top:0;
z-index:1000;

}

.logo{

font-size:28px;
font-weight:bold;
letter-spacing:1px;

}

.logo span{

color:var(--gold);

}

.nav-links{

list-style:none;
display:flex;
gap:25px;

}

.nav-links a{

color:white;
text-decoration:none;
font-weight:500;
transition:0.3s;

}

.nav-links a:hover{

color:var(--gold);

}

/* HERO */

.hero{

background:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url("https://images.unsplash.com/photo-1513104890138-7c749659a591");

background-size:cover;
background-position:center;
color:white;
text-align:center;
padding:120px 20px;

}

.hero h1{

font-size:50px;
margin-bottom:15px;

}

.hero span{

color:var(--gold);

}

.hero p{

font-size:20px;
max-width:700px;
margin:auto;

}

.hero-buttons{

margin-top:25px;
display:flex;
gap:20px;
justify-content:center;

}

/* BUTTONS */

.btn{

background:var(--rot);
color:white;
padding:14px 26px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
display:inline-block;

}

.btn:hover{

background:#8f1a1a;
transform:translateY(-2px);

}

/* SECTIONS */

.section{

padding:80px 10%;
text-align:center;

}

.section h2{

font-size:36px;
margin-bottom:30px;
color:var(--rot);

}

/* GRID */

.grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;

}

/* CARDS */

.card{

background:var(--weiß);
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;

}

.card:hover{

transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);

}

.card h3{

color:var(--rot);
margin-bottom:10px;

}

/* FORM */

.form{

max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:12px;

}

.form input,
.form select,
.form textarea{

padding:12px;
border-radius:8px;
border:1px solid #ddd;
font-size:15px;

}

.form textarea{

min-height:120px;

}

.form input:focus,
.form select:focus,
.form textarea:focus{

outline:none;
border:1px solid var(--rot);

}

/* GOOGLE MAP */

iframe{

margin-top:30px;
border-radius:10px;

}

/* FOOTER */

footer{

background:var(--dunkel);
color:white;
text-align:center;
padding:25px;
margin-top:40px;

}

/* MOBILE */

@media(max-width:800px){

.navbar{

flex-direction:column;
gap:10px;

}

.hero h1{

font-size:36px;

}

.hero-buttons{

flex-direction:column;

}

.section{

padding:60px 5%;

}

}