/* Allgemeine Einstellungen */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

.scroll-anchor {
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
  pointer-events: none;
}

/* Body */
body {
  margin: 0;
  padding-top: 120px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #c7ae6a;
}

@media (max-width: 600px) {
  body {
    padding-top: 90px;
  }
}

/* Header-Styling */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0c0c0c;
  color: #d4af37;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
}

/* Container-Layout */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo-left img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.6));
  padding: 5px;
}

@media (max-width: 600px) {
  .logo-left img {
    height: 50px;
  }
}

.logo-link {
  cursor: pointer;
}

/* Navigation Desktop */
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #c7ae6a;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #fff;
}

/* Burger Menü Button */
.burger {
  display: none;
  background: none;
  border: none;
  color: #c7ae6a;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  touch-action: manipulation;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 5;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .burger {
    display: block;
  }
}

/* Banner-Sektion */
.banner {
  background-image: url('../images/banner.png');
  background-size: cover;
  background-position: center;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #0c0c0c;
  text-align: center;
  padding: 3rem 1rem;
  box-sizing: border-box;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.banner-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #f2f2f2;
}

.banner-content .btn {
  background-color: #89784b;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.banner-content .btn:hover {
  background-color: #c7ae6a;
}

@media (max-width: 600px) {
  .banner {
    flex-direction: column;
    padding: 2rem 1rem;
    min-height: unset;
  }

  .banner-content h2 {
    font-size: 1.75rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
}



/* Über uns */
.ueber-uns {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1 1 250px;
  text-align: center;
}

.about-image img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #c7ae6a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .about-image img {
    width: 250px;
    height: 250px;
  }
}

.about-text {
  flex: 2 1 400px;
  color: #111;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #c7ae6a;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    flex: 1 1 100%;
  }
}

/* Leistungen */
.leistungen {
  background-color: #0c0c0c;
  padding: 4rem 1rem;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #c7ae6a;
  margin-bottom: 2rem;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.leistung-card {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leistung-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.leistung-card i {
  font-size: 2.5rem;
  color: #c7ae6a;
  margin-bottom: 1rem;
}

.leistung-card h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.leistung-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .leistung-card {
    padding: 1.5rem 1rem;
  }

  .leistung-card h4 {
    font-size: 1.1rem;
  }

  .leistung-card p {
    font-size: 0.95rem;
  }
}

/* Kontakt */
.kontakt {
  background-color: #fff;
  color: #c7ae6a;
  padding: 3rem 1rem;
  text-align: center;
}

.kontakt-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.kontakt-form,
.kontakt-info {
  flex: 1 1 40%;
  max-width: 400px;
  padding: 1.5rem;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kontakt-form {
  background-color: #0c0c0c;
  border: 2px solid #c7ae6a;
  color: #c7ae6a;
  padding: 1.5rem;
  flex: 1 1 48%;
  width: 100%;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 1px solid #c7ae6a;
  border-radius: 6px;
  background-color: #111;
  color: #fff;
  box-sizing: border-box;
}

.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder {
  color: #bbb;
}

.kontakt-form button.btn {
  background-color: #c7ae6a;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.kontakt-form button.btn:hover {
  background-color: #a8935a;
}

.kontakt-info {
  background-color: #0c0c0c;
  color: #c7ae6a;
  border: 2px solid #c7ae6a;
  padding: 1.5rem;
  text-align: center;
  flex: 1 1 48%;
  box-sizing: border-box;
}

.kontakt-info i {
  color: #c7ae6a;
  margin-right: 0.5rem;
}

.kontakt-info a {
  color: #c7ae6a;
  text-decoration: none;
  font-weight: 500;
}

.kontakt-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .kontakt-form,
  .kontakt-info {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .kontakt-form input,
  .kontakt-form textarea {
    margin-bottom: 1.25rem;
  }
}

/* Footer */
.footer {
  background-color: #0c0c0c;
  color: #c7ae6a;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

.footer a {
  color: #c7ae6a;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer a:hover {
  text-decoration: underline;
}

.footer strong {
  font-weight: bold;
}

.impressum {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.impressum .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #c7ae6a;
  text-align: center;
}

.impressum p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

/* Optional: Maximale Breite für große Bildschirme */
.impressum .container {
  max-width: 800px;
  margin: 0 auto;
}

/* Mobiloptimierung */
@media (max-width: 600px) {
  .impressum {
    padding: 40px 15px;
  }

  .impressum .section-title {
    font-size: 1.5rem;
  }

  .impressum p {
    font-size: 0.95rem;
  }
}


/* Datenschutz */
.datenschutz {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.datenschutz .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #c7ae6a;
  text-align: center;
}

.datenschutz p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

/* Optional: Maximale Breite */
.datenschutz .container {
  max-width: 800px;
  margin: 0 auto;
}

/* Mobiloptimierung */
@media (max-width: 600px) {
  .datenschutz {
    padding: 40px 15px;
  }

  .datenschutz .section-title {
    font-size: 1.5rem;
  }

  .datenschutz p {
    font-size: 0.95rem;
  }
}

.map-wrapper {
  margin: 2rem 0;
}

.datenschutz-hinweis {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.datenschutz-hinweis a {
  color: #0077cc;
  text-decoration: underline;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Verhältnis */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================================
   COOKIE-BANNER – DARK THEME GOLD
   ================================ */

/* Grundlayout */
.cookie-banner {
  position: fixed;
  bottom: -200px; /* Unsichtbar beim Start */
  left: 0;
  width: 100%;
  background-color: #0c0c0c; /* Sehr dunkles Grau */
  color: #f0f0f0; /* Heller Text für Kontrast */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  padding: 15px 20px;
  z-index: 1000;
  transition: bottom 0.5s ease-in-out;
  font-family: "Segoe UI", sans-serif;
}

/* Sichtbar durch JS */
.cookie-banner.show {
  bottom: 0;
}

/* Container */
.cookie-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

/* Text */
.cookie-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 220px;
  color: #f0f0f0;
}

/* Link */
.cookie-content a {
  color: #c7ae6a; /* Gold */
  text-decoration: underline;
}

.cookie-content a:hover {
  text-decoration: none;
  color: #e0c985;
}

/* Button */
.cookie-btn,
.cookie-content button {
  padding: 10px 20px;
  background-color: #c7ae6a;
  color: #0c0c0c;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.cookie-btn:hover,
.cookie-content button:hover {
  background-color: #d8be77;
}

/* Mobilanpassung */
@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content p {
    font-size: 16px;
  }

  .cookie-content button {
    width: 100%;
    margin-top: 10px;
  }
}