
@media (max-width: 768px) {
  .nav-bar {
    display: none !important;
  }
}
/* === Globale Variablen === */
:root {
  --gold: #d4af37;
  --black: #111;
  --white: #fff;
}
html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  background-color: #111;
  font-family: 'Montserrat', sans-serif;
}
/* === Text in Gold === */
.golden-text {
  background: linear-gradient(90deg, #f5e5a3, #e6c65b, #d4af37, #e6c65b, #f5e5a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === PARALLAX HERO === */
.hero {
  background: url('/assets/images/friseur1.jpg') center center / cover no-repeat fixed;
  height: 100vh;
  display: flex;
  align-items: center; /* vertikale Zentrierung */
  justify-content: center; /* horizontale Zentrierung */
  text-align: center;
  position: relative;
  padding-top: 150px; /* Bild nach unten schieben */
  box-sizing: border-box;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dunkle Überlagerung */
  z-index: 0;
}

.hero-welcome {
  position: relative;
  z-index: 1;
  color: white;
  padding: 2rem;
  max-width: 90%;
}

.hero-welcome h2 {
  font-size: 2rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  border-bottom: 2px solid white;
  padding-bottom: 0.5rem;
}

.hero-welcome span {
  display: block;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}
.hero-subtext {
  font-size: 24px;   /* größer z. B. 2rem oder 24px */
  font-weight: 1000;
  color: white;
  display: block;
  margin-top: 1rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === GLOBAL === */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: white;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === MODERN HEADER === */
/* Standardheader (alle Seiten) */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  z-index: 999;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #222;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

/* Auf der Startseite: transparenter Header */
body.home .main-header {
  background: rgba(0, 0, 0, 0.2); /* halbtransparentes Schwarz */
  border-bottom: none;
  box-shadow: none;
}

/* Optional: weiße Schrift + hover Anpassung */
body.home .main-header a {
  color: white;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.logo-image img {
  height: 90px; /* oder z.B. 60px je nach Optik */
  width: auto;
  display: block;
}
.logo-text span {
  color: var(--gold);
  font-weight: 700;
}

.nav-bar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.nav-bar a {
  font-weight: 600;
  color: white;
  position: relative;
}
.nav-bar a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: var(--gold);
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.nav-bar a:hover::after {
  width: 100%;
}

/* Burger-Button: Desktop ausblenden, Mobile anpassen im Media Query unten */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
}

@media (max-width: 768px) {
  .burger {
    display: block !important;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
    z-index: 1001;
  }
  .burger img {
    content: url('/assets/icons/menu.svg');
    width: 32px;
    height: 32px;
    display: block;
    filter: brightness(2);
  }

  .nav-bar {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111;
    padding: 1rem 2rem;
  }

  .nav-bar.active {
    display: block !important;
  }

  .nav-bar ul {
    flex-direction: column;
    gap: 1.2rem;
  }

  /* Header adjustments */
  .main-header {
    padding: 1rem;
  }

  .logo-image img {
    height: 50px;
  }

}


.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.hero-welcome {
  z-index: 1;
  color: white;
  padding: 2rem;
}

.hero-welcome h1 {
  font-family: 'Roboto', cursive;
  font-size: 3rem;
  font-weight: 400;
  margin: 0;
}

.hero-welcome h2 {
  font-size: 2rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  border-bottom: 2px solid white;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}

.hero-welcome span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* === SCROLL-PFEIL === */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  opacity: 0.7;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* === BUTTONS === */
.btn, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.btn {
  background: var(--gold);
  color: var(--black);
  border: none;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold), 0 0 30px var(--gold);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold), 0 0 30px var(--gold);
}

/* === SECTION GLOBAL === */
section {
  padding: 4rem 2rem;
}

section h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}

/* === ABOUT === */
.about-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.about-preview .content {
  flex: 1;
}

.about-preview img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* === SERVICES PREVIEW === */
.services-preview {
  text-align: center;
}

.service-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.service-icon {
  font-size: 2.5rem;
  background: transparent;
  border: 2px solid var(--gold);
  padding: 1.5rem;
  border-radius: 12px;
  color: var(--gold);
  transition: transform 0.3s ease, background 0.3s ease;
  text-align: center;
}

.service-icon:hover {
  transform: scale(1.05);
  background: var(--gold);
  color: var(--black);
}

/* === GALLERY === */
.gallery-preview {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* === TESTIMONIALS === */
.testimonial-preview {
  background: #1a1a1a;
  padding: 5rem 2rem;
  color: #fff;
  text-align: center;
}

.testimonial-heading {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #222;
  padding: 2rem;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--gold), 0 0 25px var(--gold);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-name {
  display: block;
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}


/* === FOOTER === */
footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--black);
  color: var(--gold);
  font-size: 0.9rem;
}

/* === LEISTUNGEN === */
.leistungen-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
  font-size: 2rem;
  
  background: linear-gradient(to right, #1a1a1a, #111);
  
}
.leistungs-section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
  position: center;
  border-top: 1px solid #444;
}
.leistungen-einleitung
    {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.1rem;
    }

.leistungs-heading {
  text-align: center;
  font-size: 5rem; /* größer als vorher */
  color: white;
  margin: 2rem 0;
  margin-top: 7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leistungs-title {
  font-size: 1.4rem;
  font-family: 'Dancing Script', cursive;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #f5e5a3 0%,
    #e6c65b 25%,
    #d4af37 50%,
    #e6c65b 75%,
    #f5e5a3 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Montserrat', sans-serif;
}

.leistungs-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.leistungs-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px dotted #555;
  padding-bottom: 0.8rem;
}

.leistungs-item strong {
  color: #fff;
}

.leistungs-note {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 0.3rem;
}

.leistungs-price {
  font-weight: bold;
  color: var(--gold);
  white-space: nowrap;
}
.contact-page {
  background: #111;
  color: white;
  padding-bottom: 4rem;
}

.kontakt-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.kontakt-hero h1 {
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 7rem;
  margin-bottom: 1rem;
}

.leistungen-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(to right, #1a1a1a, #111);
}





.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder {
  color: #999;
}

.kontakt-form button {
  align-self: flex-start;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px var(--gold);
}

.kontakt-form button:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold), 0 0 30px var(--gold), 0 0 40px var(--gold);
  transition: all 0.3s ease-in-out;
}


.kontakt-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.kontakt-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.box-heading {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}
/* === Fade In Animationen === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.fade-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === GALLERY SLIDER === */
.gallery-slider {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.gallery-track {
  display: flex;
  animation: scrollGallery 20s linear infinite;
  gap: 1rem;
}

.gallery-track img {
  height: 200px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

*, *::before, *::after {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  display: block;
}
/* === About Page === */
.about-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(to right, #1a1a1a, #111);
}

.about-title {
  font-size: 2.8rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 7rem;
  letter-spacing: 0.1em;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
  color: #eee;
  line-height: 1.7;
}

.about-text h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-image {
  flex: 1;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* Animationen werden nun global am Ende der Datei definiert */

/* Mobile Optimierung */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}
/* === Footer Section === */
.custom-footer {
  background: #111;
  color: #ddd;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 0.4rem;
  justify-content: space-between;
}

.footer-brand h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #f5e5a3, #e6c65b, #d4af37, #e6c65b, #f5e5a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand h2 span {
  color: var(--gold);
}

.footer-brand a {
  color: var(--red);
  text-decoration: none;
}

.footer-section h3 {
  background: linear-gradient(90deg, #f5e5a3, #e6c65b, #d4af37, #e6c65b, #f5e5a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-opening-hours li {
  color: #ccc;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #ccc;
  text-decoration: none;
}
.footer-section a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(1.5);
  transition: transform 0.3s;
}
.footer-socials img:hover {
  transform: scale(1.1);
}


/* === Footer Logo Centering === */
.footer-logo-centered {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo-centered img {
  height: 60px;
  width: auto;
}
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  color: #777;
}
.opening-hours-list .extra-hour {
  display: none;
}

.opening-hours-list.expanded .extra-hour {
  display: flex;
}

.toggle-hours {
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 0.85rem;
  box-shadow: 0 0 5px var(--gold);
}

.toggle-hours:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold), 0 0 30px var(--gold);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .footer-brand,
  .footer-section {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
.intro-section, .highlight-boxes, .testimonial-preview, .cta-section {
  padding: 4rem 2rem;
  text-align: center;
}

.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.highlight {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  max-width: 300px;
  flex: 1;
}

.cta-section .btn {
  margin-top: 2rem;
}
.testimonial-preview {
  background: #1a1a1a;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.testimonial {
  background: #222;
  padding: 2rem;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: var(--white);
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: var(--gold);
}


body.contact main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}


.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.text-side {
  flex: 1;
  min-width: 300px;
  color: #eee;
}

.image-side {
  flex: 1;
  max-width: 500px;
}

.image-side img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .hero {
    padding-top: 100px;
    height: auto;
    flex-direction: column;
    text-align: center;
  }

  .hero-welcome {
    padding: 1rem;
  }

  .hero-welcome h1 {
    font-size: 2rem;
  }

  .hero-welcome h2 {
    font-size: 1.3rem;
  }

  .hero-welcome span {
    font-size: 0.85rem;
  }

  .highlight {
    max-width: 100%;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-quote {
    font-size: 0.95rem;
  }

  .testimonial-name {
    font-size: 0.85rem;
  }

  .split-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }

 @media (max-width: 768px) {
  .split-section.reverse {
    flex-direction: column-reverse;
  }
}

  .image-side {
    max-width: 100%;
  }

  .text-side {
    text-align: center;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .highlight p {
    font-size: 0.95rem;
  }

  .kontakt-hero h1 {
    font-size: 2rem;
  }

  .kontakt-formular {
    padding: 1rem;
  }

  .main-header {
    padding: 1rem;
  }

  .logo-image img {
    height: 50px;
  }

  .nav-bar {
    padding: 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .footer-container {
    gap: 2rem;
    flex-direction: column;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 150px;
  }

  .gallery-track img {
    height: 150px;
  }

  .btn, .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .leistungen-heading {
    font-size: 2.5rem;
  }

  .leistungs-title {
    font-size: 1.2rem;
  }

  .leistungs-section {
    padding: 2rem 1rem;
  }

  .leistungs-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .leistungs-price {
    margin-top: 0.3rem;
  }

  .map-wrapper iframe {
    height: 200px;
  }
}
/* Optional: Für bessere UX - Body fixieren, wenn Mobile-Navigation offen */
body.nav-open {
  overflow: hidden;
}

/* Hinweis: Stelle sicher, dass der .burger-Button im HTML vorhanden ist (z.B. in Header.astro). */

/* === Mobile Navigation === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #111;
  color: white;
  padding: 4rem 2rem;
  transition: right 0.4s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu ul li {
  margin: 1.5rem 0;
}

.mobile-menu ul li a {
  font-size: 1.3rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.mobile-menu ul li a:hover {
  color: var(--gold);
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.mobile-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(2);
}
/* Ensure .burger is always visible on mobile */
.burger {
  display: none;
}
@media (max-width: 768px) {
  .burger {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .leistungs-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.4rem;
  }
}
/* === Öffnungszeiten Tabelle (Hours Table) === */
.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 1rem;
  color: #ccc;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.hours-row span {
  display: inline-block;
  min-width: 110px;
  font-weight: 400;
}

.hours-day {
  font-weight: 500;
  color: #fff;
}

.hours-time {
  font-weight: 500;
  color: #ccc;
}
@media (max-width: 768px) {
  .hours-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #ccc;
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  }

  .hours-day, .hours-time {
    font-size: 0.95rem;
    min-width: auto;
    flex: 1;
    text-align: left;
  }
}

/* === Beta Banner === */
.beta-banner {
  position: fixed;  /* bleibt immer oben */
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #f5e5a3, #e6c65b, #d4af37, #e6c65b, #f5e5a3);
  color: #111;
  font-weight: 600;
  text-align: center;
  padding: 0.6rem 2rem;
  z-index: 2000; /* über allem */
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* === Datenschutzerklärung Styles === */
/* Impressum-/Datenschutz-Seite (zentrierter Container auf schwarzem Hintergrund) */
.legal-page {
  background-color: #0c0c0c; /* tiefschwarz, wie auf den anderen Seiten */
  color: #f2f2f2;
  padding: 4rem 1rem;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.legal-container {
  max-width: 860px;
  width: 100%;
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f); /* edler grauer Gradient */
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.6s ease-in-out;
}

/* Überschrift */
.legal-container h1 {
  color: #e0c48f;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Abschnittsüberschriften */
.legal-container h2 {
  color: #e0c48f;
  margin-top: 2rem;
  font-size: 1.5rem;
}

/* Text */
.legal-container p {
  margin: 1rem 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
}

/* Listen */
.legal-container ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.legal-container ul li {
  margin-bottom: 0.5rem;
}

/* Copyright oder Footer-Info */
#itkanzlei_txt_copyright {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: #aaaaaa;
  text-align: center;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .legal-container {
    padding: 2rem 1rem;
  }
  .legal-container h1 {
    font-size: 1.8rem;
  }
}
/* === Gallery Slider === */
/* Slider-Container */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  flex-wrap: wrap; /* für mobile Ansicht */
}

.about-text {
  flex: 1;
  color: #fff;
}

.slider-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  min-width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dots button {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  background: #aaa;
  cursor: pointer;
}

.dots button.active {
  background: #e0c48f; /* Gold */
}



/* === Split Section === */
/* Diese Klasse wird für die geteilte Sektion verwendet, z.B. für "Unsere Produkte"*/

.split-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  flex-wrap: wrap;
}

.text-side {
  flex: 1;
  color: #fff;
}

.image-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-side img {
  width: 100%;
  max-width: 500px;
  height: 350px; /* gleiche Höhe wie im Slider */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.g-recaptcha {
  transform: scale(0.95);
  transform-origin: 0 0;
  margin-bottom: 1rem;
}





/* Pop-up Nachricht nach Formularversand */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  max-width: 90%;
  width: 400px;
  text-align: center;
  border: 1px solid #ffd700; /* goldener Rahmen */
}

.popup p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.popup button {
  padding: 0.5rem 1.5rem;
  background: linear-gradient(90deg, #d4af37, #f1c40f);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.popup button:hover {
  background: linear-gradient(90deg, #f1c40f, #d4af37);
}
@media (max-width: 500px) {
  .popup {
    width: 90%;
    font-size: 0.95rem;
  }
}





/* === Kontaktformular === */

.kontakt-formular {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Eingabefelder */
.kontakt-formular input,
.kontakt-formular textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #000000;
  border-radius: 10px;
  background-color: #1e1e1e;
  color: white;
  margin-top: 0px;
  margin-bottom: 10px;
}

.kontakt-formular input::placeholder,
.kontakt-formular textarea::placeholder {
  color: #bbb;
}

/* Checkbox-Reihe */
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  flex-wrap: wrap;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #d4af37; /* Goldfarbe Checkbox */
}

/* Datenschutz-Link */
.checkbox-row a {
  color: #d4af37;
  text-decoration: underline;
}

/* Button */
.kontakt-formular button {
  background-color: #d4af37;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 17px;
}

.kontakt-formular button:hover {
  background-color: #e6c85e;
}