:root {
  --gold: #b89b5e;
  --dark: #1d1d1d;
  --light: #f7f5f2;
  --text: #444;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--dark);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 60px 0;
}

.header {
  background: white;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: clamp(20px, 6vw, 40px);
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--gold);
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

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

.hero {
  min-height: 100svh;
  padding: 120px 20px 80px;
  background: url("images/hero.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.hero h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #9f844e;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card h3 {
  padding: 20px 20px 10px;
}

.card p {
  padding: 0 20px 25px;
}

.about {
  background: var(--light);
}

.about-text {
  max-width: 700px;
}

.contact {
  text-align: center;
}

.map-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  font-family: sans-serif;
  color: #555;
}
.map-placeholder:hover {
  background-color: #d0d0d0;
}

.footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 30px 0;
}

.footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 30px 0;
}

.footer a {
  color: white;
  text-decoration: none;
}

.gdpr ul {
  margin-left: 40px;
}

.impressum h2 {
  font-size: 1.2em;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .nav ul {
    font-size: 0.9rem;
  }

  .logo {
    display: none;
  }
}
