/* CSS Reset und Basisstil */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #dfdfde; /* Ecru als Hauptfarbe */
  --secondary-color: #aaa9a8; /* Helleres Ecru */
  --accent-color: #000; /* Warmes Braun */
  --light-color: #dfdfde; /* Sehr helles Ecru */
  --dark-color: #6a645f; /* Dunkles Warmgrau */
  --contrast-color: #594f47; /* Warmes Terrakotta */
  --shadow: 0 4px 6px rgba(139, 115, 85, 0.1);
  --gradient-primary: linear-gradient(
    145deg,
    var(--primary-color),
    var(--contrast-color)
  );
}

/* Hintergrund für verschiedene Sektionen */
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #6a645f;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
  color: rgb(0, 0, 0);
}

a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button Styling und Animationen */
.btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--light-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    145deg,
    var(--contrast-color),
    var(--primary-color)
  );
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Pulsierender Effekt für wichtige Buttons */
.btn.primary {
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--accent-color-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--accent-color-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-color-rgb), 0);
  }
}

/* Hover Text Animation */
.btn span {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn:hover span {
  animation: moveText 0.4s ease-out;
}

@keyframes moveText {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
  margin-top: 60px;
}

.section-title h2 {
  display: inline-block;
  color: rgb(0, 0, 0);
}

.section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
}

/* Verbesserte Navigation */

/* Allgemeine Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow);
  background: #f9f8f7;
}

/* Abstand für den Content unter der fixed Navbar */
main,
section:first-of-type {
  padding-top: 80px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 24px;
  min-height: 70px;
  background: #6a645f;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  color: #fff;
}

/* Sprachumschalter */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.language-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  padding: 5px 4px;
  opacity: 0.6;
  transition: opacity 0.3s;
  color: #fff !important;
}

.language-btn.active {
  opacity: 1;
  font-weight: 700;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.language-btn:hover {
  opacity: 1;
}

/* Hero-Bereich */
.hero {
  height: 100vh;
  background: url("img/about-image.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 80px;
  margin-left: -167px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Sekundärer Hero-Bereich */
.hero-secondary {
  height: 80vh;
  background: url("img/about-image.png");
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-size: auto;
  background-size: 2127px;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

@media (max-width: 768px) {
  .hero-secondary {
    background-position-x: -371px;
  }
}

.hero-secondary .hero-content {
  max-width: 900px;
  padding: 0 20px;
  margin-top: -140px;
}

.hero-secondary h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  transition-delay: 0.2s;
}

.hero-secondary p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  transition-delay: 0.4s;
}

.hero-secondary .btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: black;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  margin-bottom: -17px;
}

.hero-secondary.visible .btn {
  opacity: 1;
  transform: translateY(200px);
}

.hero-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Über uns */
.about {
  background-color: var(--light-color);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
  height: 583px;
  background: url("img/492152867_1219860683473932_2883062628744867363_n.jpg")
    center/cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-image.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Über uns Text Styling */
.about-text p {
  margin-bottom: 1.8rem;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.about-text p:first-child {
  font-size: 1.3rem;
  font-weight: 500;
  color: black;
  border-left: 3px solid black;
  padding-left: 15px;
  margin-left: -20px;
  font-size: 1.3rem;
}

.about-text p:nth-child(2) {
  position: relative;
  font-weight: 500;
  color: black;
  padding-left: 15px;
  margin-left: -20px;
  border-left: 3px solid black;
}

.about-text p:first-child,
.about-text p:last-child {
  cursor: default;
  font-style: italic;
  color: #555;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-text p:first-child:hover,
.about-text p:last-child:hover {
  background: linear-gradient(to right, rgba(241, 200, 255, 0.4), transparent);
  transform: translateX(5px);
}

/* Animation für Text beim Scrollen */
.about-text.visible p {
  opacity: 1;
  transform: translateY(0);
}

.about-text.visible p:nth-child(1) {
  transition-delay: 0.2s;
  color: rgb(0, 0, 0);
}

.about-text.visible p:nth-child(2) {
  transition-delay: 0.4s;
  color: rgb(0, 0, 0);
}

.about-text.visible p:nth-child(3) {
  transition-delay: 0.6s;
}

/* Hover-Effekt für Texte */
.about-text p:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

/* Dienstleistungen */
.services {
  background-color: var(--secondary-color);
}

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

.service-card {
  background-color: var(--light-color);
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

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

.service-card:nth-child(1) {
  transition-delay: 0.3s; /* Erhöht von 0.1s */
}

.service-card:nth-child(2) {
  transition-delay: 0.5s; /* Erhöht von 0.3s */
}

.service-card:nth-child(3) {
  transition-delay: 0.7s; /* Erhöht von 0.5s */
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  color: black;
}

/* Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.gallery-item:nth-child(-n + 3) {
  transition-delay: 0.2s;
}

.gallery-item:nth-child(n + 4) {
  transition-delay: 0.2s;
}

.gallery-item:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* Kontakt */
.contact {
  background-color: #aaa9a8;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  transition: all 0.3s ease;
  background: linear-gradient(
    145deg,
    var(--light-color),
    var(--secondary-color)
  );
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--contrast-color);
}

.contact-info-item:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--accent-color);
}

.contact-info-item i {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-info-item:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--accent-color);
}

.contact-info-item h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 12px;
  position: relative;
}

.contact-info-item h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.contact-info-item:hover h3::after {
  width: 50%;
}

.contact-info-item p {
  font-size: 1.2rem;
  color: #636363;
  transition: all 0.3s ease;
}

.contact-info-item:hover p {
  color: var(--primary-color);
}

/* Verzögerte Animation für die Items */
.contact-info-item:nth-child(1) {
  transition-delay: 0.1s;
}

.contact-info-item:nth-child(2) {
  transition-delay: 0.2s;
}

.contact-info-item:nth-child(3) {
  transition-delay: 0.3s;
}

/* Animate in view */
.contact.visible .contact-info-item {
  animation: fadeInUp 0.8s forwards;
}

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

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  text-align: left;
  margin-top: 30px;
}

.contact-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}

contact-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Öffnungszeiten */
.hours {
  background-color: #aaa9a8;
  color: white;
  padding: 40px 0;
}

.hours h2::after {
  background-color: white;
}

.hours-list {
  max-width: 500px;
  margin: 0 auto;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#footer-impressum-link {
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #dfdfde;
  color: var(--light-color);
  padding: 60px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, #ffffff, #2c2b2d);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.social-links i:hover {
  transform: translateY(-3px) rotate(8deg);
  background: linear-gradient(145deg, #f1c8ff, #ffffff);
  color: #e1306c; /* Instagram Farbe */
}

.social-links i.ri-facebook-circle-line:hover {
  color: #0094f7; /* Facebook Farbe */
}

.social-links i {
  transition: all 0.3s ease;
  color: black;
}

social-links a:hover i {
  transform: scale(1.2);
}

.social-links .whatsapp-link i {
  color: #000000;
  background: linear-gradient(145deg, #ffffff, #000000);
  transition: all 0.3s ease;
}

.social-links .whatsapp-link i:hover {
  transform: translateY(-3px) rotate(8deg);
  background: linear-gradient(145deg, #e1ffe8, #25d366);
  color: #128c7e;
}

copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 20px;
}

/* Cookie Alert */
.cookie-alert {
  display: none; /* Standard: versteckt */
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #222;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 32px 24px;
  z-index: 9999;
  min-width: 260px;
  max-width: 90vw;
  text-align: center;
  font-size: 1.1rem;
  animation: popIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popIn {
  0% {
    transform: translate(-50%, -60%) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.cookie-alert .btn {
  margin-top: 18px;
  padding: 8px 22px;
  font-size: 1rem;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #fff;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 24px 20px 18px 20px;
  z-index: 9999;
  min-width: 320px;
  max-width: 95vw;
  text-align: left;
  font-size: 1rem;
  animation: fadeIn 0.5s;
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
    min-width: unset;
    max-width: 100vw;
    padding: 18px 8px 12px 8px;
    bottom: 0;
  }
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.cookie-btn.accept-all {
  background: #2ecc71;
  color: #fff;
}

.cookie-btn.accept-essential,
.cookie-btn.decline,
.cookie-btn.settings {
  background: #eee;
  color: #222;
}

.cookie-btn.accept-all:hover {
  background: #27ae60;
}

.cookie-btn.settings {
  margin-left: auto;
}

.cookie-privacy-link {
  color: #0077cc;
  text-decoration: underline;
  margin-left: 8px;
}

/* Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 32px 24px 24px 24px;
  min-width: 300px;
  max-width: 95vw;
}

.cookie-category {
  margin-bottom: 18px;
}

.cookie-category label {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-category small {
  display: block;
  color: #5d5d5d;
  margin-left: 28px;
  margin-top: 2px;
  font-size: 0.95em;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}

.cookie-btn.save {
  background: #2ecc71;
  color: #fff;
}

.cookie-btn.cancel {
  background: #eee;
  color: #222;
}

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

/* Modal für Galerie */
.modal {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 1;
  user-select: none;
}

@media (max-width: 600px) {
  .modal-close {
    top: 16px;
    right: 16px;
    font-size: 2rem;
  }
}

/* Impressum Modal */
.impressum-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(60, 60, 60, 0.45);
  justify-content: center;
  align-items: center;
}

.impressum-modal.active {
  display: flex;
  animation: fadeIn 0.2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.impressum-modal-content {
  background: #fff;
  padding: 2em 2.5em;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(60, 60, 60, 0.18);
  max-width: 350px;
  width: 90vw;
  position: relative;
  color: #393939;
  font-size: 1.08em;
}

.impressum-popup {
  border-radius: 16px !important;
  font-size: 1.08em;
  color: #393939;
}

.swal2-title {
  color: #6a645f !important;
  font-size: 1.3em !important;
}

.swal2-html-container {
  color: #393939 !important;
  text-align: left !important;
  font-size: 1em !important;
}

.impressum-modal-content h2 {
  margin-top: 0;
  font-size: 1.3em;
  margin-bottom: 0.7em;
  color: #6a645f;
}

.impressum-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 1.5em;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}

.impressum-modal-close:hover {
  color: #393939;
}

.impressum-modal-content a {
  color: #6a645f;
  text-decoration: underline;
  word-break: break-all;
}

.nav-menu a {
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: flex;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-toggle {
    display: flex;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
  }

  .nav-toggle:hover span {
    background: var(--accent-color);
  }

  .nav-menu a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    color: #fff !important;
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
  }

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

.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  .nav-menu.open {
    display: block;
  }
}

/*@media (max-width: 900px) {
  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    margin-left: 8px;
    z-index: 1101;
    cursor: pointer;
    transition: background 0.2s;
    position: static;
  }*/
.header-container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  min-height: 56px;
}

/* Hamburger-Menü-Icon auf Desktop ausblenden */
.nav-toggle {
  display: none !important;
}

/* Mobile Navigation & Hamburger-Icon */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 2.2rem;
    position: relative;
    margin-left: 10px;
    z-index: 1101;
    cursor: pointer;
  }

  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #aaa;
    position: fixed;
    top: 56px;
    left: 0;
    width: 80vw;
    max-width: 320px;
    height: calc(100vh - 70px);
    padding: 2rem 1.5rem;
    gap: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.07);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    color: #fff !important;
  }
  .language-switcher {
    position: absolute;
    right: 20px;
    top: 18px;
    margin: 0;
    padding: 0;
    gap: 5px;
    z-index: 1200;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  width: 11px;
  height: 40px;
  padding: 0;
  z-index: 1101;
}

.nav-toggle .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: #222;
  border-radius: 2px;
  display: none;
  /* Ende des Monats Burger Menü hinzufügen! */
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
}

.shop-nav-btn {
  margin-left: 32px;
  margin-right: 12px;
  background: #393939;
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 20px;
  font-weight: bold;
  box-shadow: 0 2px 12px #000000;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
.shop-nav-btn:hover,
.shop-nav-btn:focus {
  background: #797979;
  color: #fff !important;
  transform: scale(1.07);
  text-decoration: none;
}

@media (max-width: 900px) {
  .shop-nav-btn {
    display: none !important;
  }
}

.whatsapp-link i {
  color: #000000;
  transition: color 0.2s;
}
.whatsapp-link i:hover {
  color: #128c7e;
}

@media (max-width: 600px) {
  .hero,
  .hero-secondary {
    background-size: cover !important;
    background-position: center center !important;
    min-height: 270px;
    height: 53vh;
    margin-top: 146px;
  }
  .about-image {
    background-size: cover !important;
    background-position: center center !important;
    min-height: 242px;
    height: 478px;
  }
}
