/* === GLOBAL RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: #000;
  background: linear-gradient(180deg, #f9f9f9, #f1f1f1, #eaeaea);
}

/* === CONTAINER === */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* === HEADER === */
.header-logo {
  height: 100px;
  width: auto;
  display: block;
  margin: 0 20px;
}
.logo,
.site-title {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #333;
}
.logo {
  font-size: 70px;
  letter-spacing: 10px;
}
.site-title {
  font-size: 70px;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #333;
  letter-spacing: 10px;
}
.main-nav .nav-list,
.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.main-nav a,
.nav-list a {
  text-decoration: none;
  color: #201f1f;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}
.nav-list a.active {
  border-bottom: 2px solid #333;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 700px;
  margin-bottom: 60px;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  transition: left 1s ease-in-out;
}
.hero-slide.active { left: 0; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
}
.hero-prev { left: 10px; }
.hero-next { right: 10px; }
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
  cursor: pointer;
}
.hero-dot.active { background: #000; }

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 0 50px;
  width: 100%;
}
/* === PRODUCT CARD === */
.product-card h3 {
  font-size: 17px;
  margin: 12px 0 1px;
  font-weight: 400; /* normal */
  font-style: normal; /* zusätzlich */
  font-family: 'Inter', sans-serif; /* oder deine Schrift */
}

/* Elternelement für h3 + price "simulieren" */
.product-card h3::after {
  content: attr(data-price); /* optional, falls Preis im H3 angezeigt werden soll */
}

.product-card {
  display: flex;
  flex-direction: column;
}

/* Flexbox Trick für Name + Preis nebeneinander */
.product-card h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card h3::after {
  content: ""; /* leer, weil wir den echten Preis nehmen */
}

.product-card h3 + .price {
  align-self: flex-end; /* Preis rechts ausrichten */
  margin-top: -20px; /* Preis auf Höhe des Titels ziehen */
}




/* === PRODUCT SLIDER === */
/* Elegante, einfache Slider-Pfeile */
/* Minimalistischer Slider-Pfeil, nur ein Pfeil, kein Hintergrund */
.product-card.slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;      /* kein Hintergrund */
  border: none;          /* keine Ränder */
  color: #333;           /* dezente Pfeilfarbe */
  font-size: 18px;       /* kleine, elegante Größe */
  cursor: pointer;
  z-index: 10;
  width: auto;
  height: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.product-card.slider .slider-btn:hover {
  color: #000;           /* etwas dunkler beim Hover */
}

.product-card.slider .slider-btn.prev { left: 5px; }
.product-card.slider .slider-btn.next { right: 5px; }

/* Pfeile als Unicode-Symbole */
.product-card.slider .slider-btn.prev::before { content: ""; }
.product-card.slider .slider-btn.next::before { content: ""; }

/* Pfeile als Unicode */
.product-card.slider .slider-btn.prev::before { content: ""; }
.product-card.slider .slider-btn.next::before { content: ""; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 30px;
  }
}
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
}

/* === BANNER === */
.banner {
  position: relative;
  width: 100%;
  margin: 50px 0;
  padding: 0;
}
.banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.banner-content { position: relative; }
.banner-text {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #0b0b0b;
}
.banner-text h2 {
  font-size: 3rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.banner-text span {
  font-size: 1.2rem;
  border: 1px solid white;
  padding: 8px 20px;
  margin-top: 15px;
  display: inline-block;
}
.banner-btn {
  display: inline-block;
  font-size: 1.2rem;
  text-decoration: none;
  color: white;
  padding: 10px 25px;
  margin-top: 15px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(270deg, #e0c4ce, #dd9038, #ff4081);
  background-size: 800% 800%;
  animation: pulseEffect 2s infinite ease-in-out,
             gradientShift 8s ease infinite;
}
.banner-btn:hover { filter: brightness(1.2); }
.banner-btn:active { filter: brightness(0.9); }

/* === BANNER ANIMATIONEN === */
@keyframes pulseEffect {
  0% { transform: scale(1); box-shadow: 0 0 5px rgba(255,255,255,0.3); opacity: 1; }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255,255,255,0.8); opacity: 0.95; }
  100% { transform: scale(1); box-shadow: 0 0 5px rgba(255,255,255,0.3); opacity: 1; }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === FOOTER === */
.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 150px 375px 50px;
  background: transparent;
}
.footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-left li { margin-bottom: 8px; }
.footer-left li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}
.footer-left li a:hover { color: rgb(197, 174, 0); }
.footer-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.footer-center p {
  margin: 0;
  font-size: 16px;
  color: #000;
}
.footer-right { flex: 1; text-align: right; }
.footer-right .social-row-inner {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.footer-right .social-row-inner a {
  font-size: 25px;
  color: #000;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-right .social-row-inner a:hover {
  transform: scale(1.2);
  color: rgb(185, 178, 93);
}




/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 5px rgba(0,0,0,0.1); transform: scale(1); }
  50% { box-shadow: 0 0 20px rgba(0,0,0,0.25); transform: scale(1.05); }
  100% { box-shadow: 0 0 5px rgba(0,0,0,0.1); transform: scale(1); }
}

/* Nur für die letzten beiden Bilder */
.product-grid-large {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* genau 2 Spalten */
  gap: 20px;
  margin: 40px 0;
  padding: 0 50px;
}

.product-grid-large img {
  width: 100%;
  height: 450px; /* Höhe nach Geschmack */
  object-fit: cover;
}

/* Responsive: 1 Bild pro Reihe auf Handy */
@media (max-width: 600px) {
  .product-grid-large {
    grid-template-columns: 1fr;
  }
}

.site-title a {
  text-decoration: none; /* Unterstrich entfernen */
  color: inherit;        /* Farbe vom H1 übernehmen */
}

/* Produkt-Slider */
.product-card .slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.product-card .slider-images {
  display: flex;
  transition: transform 0.5s ease;
}

.product-card .slider-images img {
  width: 100%;       /* Bild passt in Produktkarte */
  flex-shrink: 0;    /* verhindert, dass Bilder kleiner werden */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.product-card .slider-btn.prev { left: 10px; }
.product-card .slider-btn.next { right: 10px; }

.product-card .slider-btn:hover {
  background: none;
}

/* === HOME MODE PRODUKTGRID === */
.homemode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* nur 2 Spalten */
  gap: 20px;
  margin: 40px 0;
  padding: 0 50px;
  width: 100%;
}

/* Responsive nur für HomeMode */
@media (max-width: 1024px) {
  .homemode-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 Spalten */
    padding: 0 30px;
  }
}
@media (max-width: 600px) {
  .homemode-grid {
    grid-template-columns: 1fr; /* Handy: 1 Spalte */
    gap: 20px;
    padding: 0 16px;
  }
}

/* === HOME MODE BILDER === */
.homemode-grid .product-card img {
  width: 100%;
  height: 500px;        /* gleiche Höhe für alle Bilder */
  object-fit: cover;    /* Bild bleibt proportional */
  border-radius: 8px;   /* kleine Abrundung (optional) */
}

/* Slider-Buttons nur für HomeMode */
.homemode-grid .product-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #333;          /* einfache graue Pfeile */
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}
.homemode-grid .product-slider button:hover {
  color: #000;          /* Hover-Effekt */
}

/* Handy: Bilder nicht zu hoch */
@media (max-width: 600px) {
  .homemode-grid .product-card img {
    height: 350px;
  }
}
/* SEO */

.seo-text-section {
  background: transparent;
  padding: 40px 20px;
  margin: 30px 0;
  text-align: center;
}

.seo-text-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;       /* kompakter */
  color: #c5ae00;          /* goldener Akzent */
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.seo-text-container p {
  font-size: 0.95rem;      /* kleiner */
  line-height: 1.6;
  color: #555;
  max-width: 750px;
  margin: 0.5rem auto;
}

.seo-text-container strong {
  color: #000;
  font-weight: 600;
}

.seo-text-container em {
  font-style: normal;
  color: #333;
}






/* ALIA bleibt links mit Menü darunter */
.header-left {
  display: flex;
  flex-direction: column;  /* ALIA oben, Menü darunter */
  align-items: flex-start; /* linksbündig */
}

/* Navigation horizontal unter ALIA */
.nav-list-horizontal {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-list-horizontal a {
  text-decoration: none;
  color: #201f1f;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}

.nav-list-horizontal a.active {
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
}

/* === MEHR VOR ORT === */
.mehr-vor-ort-section {
  position: relative;
  overflow: hidden;
  width: 100%;                /* volle Breite */
  background: linear-gradient(
    135deg,
    #f8f8f8,
    #e6e6e6,
    #f5e6da,
    #e8d5c4,
    #f2d4d6
  );
  padding: 50px 30px;         /* mehr Platz innen */
  text-align: center;
  border-radius: 0;           /* keine runden Ecken mehr, wirkt wie Banner */
  margin: 60px 0 0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
}

/* Schimmer-Effekt */
.mehr-vor-ort-section::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  animation: shimmer 12s linear infinite;
}

/* Inhalt */
.mehr-vor-ort-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;          /* Text bleibt angenehm lesbar */
  margin: 0 auto;
}

.mehr-vor-ort-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #222;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.mehr-vor-ort-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #444;
  margin: 8px 0;
  opacity: 0.9;
}

/* Adresse */
.mehr-vor-ort-content .address {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  font-family: 'Playfair Display', serif;
  pointer-events: none;   /* Klick wird von der ganzen Box übernommen */
}

.mehr-vor-ort-content .address a {
  color: #222;                  /* edles dunkles Grau */
  text-decoration: none;        /* kein Unterstrich */
  font-weight: 600;
  transition: color 0.3s ease;
}

.mehr-vor-ort-content .address a:hover {
  color: #dd9038;               /* elegante Akzentfarbe beim Hover */
  text-decoration: underline;   /* Unterstreichung beim Hover */
}

/* Ganze Box anklickbar */
.mehr-vor-ort-link {
  display: block;
  text-decoration: none; /* kein Link-Style */
  color: inherit;        /* Textfarbe bleibt */
}

/* Animationen */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { transform: rotate(0deg); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: rotate(360deg); opacity: 0.6; }
}

/* ALIA bleibt links mit Menü darunter */
.header-left {
  display: flex;
  flex-direction: column;  /* ALIA oben, Menü darunter */
  align-items: flex-start; /* linksbündig */
}

/* Navigation horizontal unter ALIA */
.nav-list-horizontal {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-list-horizontal a {
  text-decoration: none;
  color: #201f1f;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}

.nav-list-horizontal a.active {
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
}

/* Header-Wrapper */
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;   /* 👈 sorgt für vertikale Mitte */
  padding: 0 40px;
}




/* Sehr eleganter Trennlinien-Effekt */
.site-header {
  background: #f7f7f7;
  border-bottom: none;
  margin-bottom: 45px;
  position: relative;
  padding: 10px 0;      /* 👈 sorgt für gleiche Höhe überall */
  text-align: center;
}


.site-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;                 /* nicht ganz bis zum Rand */
  height: 1px;                /* hauchdünn */
  background: linear-gradient(
    90deg,
    rgba(230,230,230,0),
    rgba(180,180,180,0.9),
    rgba(230,230,230,0)
  );
  box-shadow: 0 0 8px rgba(200,200,200,0.4); /* sanfter Glow */
  border-radius: 2px;
}

.header-center {
  position: absolute;
  top: 50%;               /* immer Mitte */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}

.header-center .banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin: 0;
  line-height: 1;
}


.logo a,
.logo a:link,
.logo a:visited,
.logo a:hover,
.logo a:active {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 70px;
  letter-spacing: 10px;
  color: #333;
  text-decoration: none; /* kein Unterstrich */
}


