 body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #000;
  color: #fff;
}

/* ---------- HEADER ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 40px;
  border-bottom: 1px solid #444;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}

.logo {
  height: 120px;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: #d5b262;
  cursor: pointer;
}

nav ul {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
  padding: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

nav ul.show {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

nav a,
nav a:visited {
  color: #d5b262 !important;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;

}

nav a:visited {
  color: #d5b262;  /* Dein Goldton */
}


/* ---------- HERO ---------- */
.hero {
  background-color: black;
  color: white;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #d5b262;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 0;
}

/* ---------- SLIDER ---------- */
.slider {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slider-container {
  position: relative;
  height: 600px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05) translateX(100%);
  transition: opacity 2s ease, transform 2s ease;
  border-radius: 12px;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  transform: scale(1.02) translateX(0);
  z-index: 1;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 2;
}

.slider-nav span {
  cursor: pointer;
  font-size: 2rem;
  color: #d5b262;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px 15px;
  border-radius: 50%;
  user-select: none;
  opacity: 0.7;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.slider-nav span:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
  opacity: 1;
}

/* ---------- LEISTUNGEN ---------- */
.leistungen {
  background-color: #000;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.leistungen-title {
  font-size: 2.2rem;
  color: #d5b262;
  margin-bottom: 40px;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.leistung {
  background-color: #111;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.leistung:hover {
  transform: translateY(-5px);
}

.leistung img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(52%) saturate(458%) hue-rotate(3deg) brightness(88%) contrast(85%);
}

.leistung h3 {
  color: #d5b262;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.leistung p {
  font-size: 1rem;
  color: #ccc;
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 40px;
  background-color: #111;
  font-size: 0.9rem;
  color: #555;
}
footer a,
footer a:visited {
  color: #d5b262 !important;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}


/* ---------- MOBIL ---------- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .logo {
    height: 90px;
    margin-bottom: 10px;
  }

  .hamburger {
    display: block;
    margin: 10px auto;
    text-align: center;
  }

  nav ul {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    padding: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      max-height 0.4s ease,
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  nav ul.show {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .slider-container {
    height: auto;
    aspect-ratio: 3 / 2;
    width: 100%;
  }

  .slide {
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .slide.active {
    opacity: 1;
    transform: scale(1.02) translateX(0);
    z-index: 1;
  }

  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 20px;
    font-size: 0.9rem;
  }
}

/* ---------- DESKTOP ---------- */
@media (min-width: 769px) {
  nav ul {
    display: flex !important;
    flex-direction: row;
    list-style: none;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    max-height: none !important;
    text-align: left;
  }
}
.kontakt-short {
  text-align: center;
  margin-top: 40px;
}

.mail-button {
  display: inline-block;
  background-color: #d5b262;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.mail-button:hover {
  background-color: #e6c776;
  transform: scale(1.05);
}