/* Grunddesign */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    font-family: "Poppins", sans-serif;
    background-color: #faf6f2;
    color: #3b302b;
    line-height: 1.6;
}


/* Header */

header {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: sticky;
    top: 0;
    z-index: 10;
}


.logo img {
    width: 130px;
}


nav a {
    text-decoration: none;
    color: #3b302b;
    margin-left: 25px;
    font-size: 15px;
}


nav a:hover {
    color: #b8906f;
}



/* Startbereich */

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;

    background:
    linear-gradient(
    rgba(250,246,242,0.85),
    rgba(250,246,242,0.95)
    );
}


.hero h1 {
    font-size: 55px;
    letter-spacing: 2px;
}


.hero h2 {
    font-size: 25px;
    font-weight: normal;
    margin: 20px 0;
}


.hero p {
    max-width: 600px;
    margin-bottom: 35px;
}



/* Buttons */

.button {
    background: #b8906f;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}


.button:hover {
    background: #8f684c;
}



/* Bereiche */

section {
    padding: 80px 8%;
    text-align: center;
}


section h2 {
    font-size: 35px;
    margin-bottom: 40px;
}



/* Karten */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}


.card {

    background:white;
    padding:35px 25px;
    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

}


.card h3 {
    margin-bottom:15px;
}


.card strong {

    display:block;
    margin-top:15px;
    font-size:22px;
    color:#b8906f;

}



/* Kontakt */

#kontakt {

background:white;

}



/* Footer */

footer {

background:#3b302b;
color:white;
padding:25px;
text-align:center;

}



/* Handy Ansicht */

@media(max-width:700px){


header {

flex-direction:column;

}


nav {

margin-top:20px;

}


nav a {

margin:10px;

}


.hero h1 {

font-size:40px;

}


}

.hero-logo {
    width: 220px;
    margin-bottom: 25px;
}


.highlight {
    margin: 25px 0;
    padding: 12px 25px;
    border-radius: 30px;
    background: #ffffff;
    color: #b8906f;
    font-size: 18px;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.booking-box {

background:white;
padding:35px;
margin:25px auto;
max-width:500px;
border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,0.05);

}


.booking-box h3 {

color:#b8906f;
margin-bottom:20px;

}


.small {

font-size:14px;

}

.gallery {

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:40px;

}


.gallery img {

width:100%;
height:300px;
object-fit:cover;
border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,0.08);

transition:0.3s;

}


.gallery img:hover {

transform:scale(1.03);

}

.contact-box {

background:white;
max-width:500px;
margin:0 auto 30px;
padding:35px;
border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,0.05);

}


.contact-box h3 {

font-family:"Cormorant Garamond", serif;
font-size:32px;
color:#b8906f;

}


.contact-box a {

color:#3b302b;
text-decoration:none;

}

.about-box {

background:white;
max-width:700px;
margin:auto;
padding:40px;
border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,0.05);

}


.about-box p {

margin-bottom:15px;

}

.footer-links {

margin-top:15px;

}


.footer-links a {

color:white;
text-decoration:none;
margin:0 10px;
font-size:14px;

}


.footer-links a:hover {

color:#b8906f;

}