:root {
  --color-primary:    #1a1a1a;
  --color-background: #EEE4DB;
  --color-accent:     #ccad93;
  --color-muted:      #9a4753;
  --color-highlight:  #ece1d7;
  --color-card-bg:    #fcf8f5;
  --font-heading:     'Lora', serif;
  --font-body:        'Inter', sans-serif;
  --shadow-sm:        0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md:        0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg:        0 12px 32px rgba(154, 71, 83, 0.15);
  --radius-sm:        8px;
  --radius-md:        14px;
  --radius-lg:        24px;
  --transition-fast:  0.25s ease;
  --transition-smooth:0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--color-background);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 17px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- NAVBAR --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(236, 225, 215, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  height: 72px;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(204, 173, 147, 0.3);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-decoration: none;
}

.nav-logo span {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-muted);
}

.nav-links {
  display: flex;
  gap: 1.8vw;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--color-muted);
}

/* --- BURGER-MENÜ BUTTON (Desktop ausgeblendet) --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(204, 173, 147, 0.18);
  border: 1px solid rgba(204, 173, 147, 0.3);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.nav-toggle:hover {
  background: rgba(204, 173, 147, 0.35);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 3px 0;
}

.nav-toggle span:nth-child(1) { width: 20px; }
.nav-toggle span:nth-child(2) { width: 14px; }
.nav-toggle span:nth-child(3) { width: 20px; }

.nav-toggle:hover span:nth-child(2) {
  width: 20px;
}

/* X-Animation beim Öffnen */
.nav-toggle.open span:nth-child(1) {
  width: 20px;
  transform: translateY(8px) rotate(45deg);
  background-color: var(--color-muted);
}

.nav-toggle.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  width: 20px;
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-muted);
}

/* --- HERO BEREICH --- */
.hero {
  min-height: 80svh; 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px; 
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.hero-content {
  position: relative; 
  z-index: 2;
  text-align: center;
  width: 100%; 
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px; 
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 4px; 
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  letter-spacing: 0.5px;
  margin: 0; 
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  font-weight: 500;
}

.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.5;
  font-weight: 300;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-buttons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  margin-top: 15px; 
}

.btn-hero-large {
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-hero-large.btn-primary {
  background-color: var(--color-muted);
  color: #ffffff;
  border: 1px solid var(--color-muted);
}

.btn-hero-large.btn-primary:hover {
  background-color: rgba(154, 71, 83, 0.8); 
  color: #ffffff;
}

.btn-hero-large.btn-secondary {
  background-color: rgba(0, 0, 0, 0.2); 
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-hero-large.btn-secondary:hover {
  background-color: #ffffff;
  color: var(--color-primary);
}

/* --- SECTIONS --- */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.section-white {
  background-color: var(--color-highlight);
  color: var(--color-primary);
}

.section-blue {
  background-color: var(--color-background);
  color: var(--color-primary);
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.5rem 4vw;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-top: 0;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  color: var(--color-muted);
  text-transform: uppercase;
}

.section p.section-sub {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 2.2rem;
  max-width: 750px;
  line-height: 1.5;
}

/* --- GALLERY --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.6);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.gallery-rings .gallery-item {
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(154, 71, 83, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item-overlay svg {
  width: 36px;
  height: 36px;
  color: #ffffff;
  transform: scale(0.8);
  transition: transform var(--transition-fast);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

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

.gallery-item:hover .gallery-item-overlay svg {
  transform: scale(1);
}

.load-more-wrapper {
  text-align: center;
  margin-top: 2.8rem;
  width: 100%;
}

.btn-load-more {
  background-color: transparent;
  color: var(--color-muted);
  border: 2px solid var(--color-muted);
  padding: 13px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-load-more:hover {
  background-color: var(--color-muted);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(154, 71, 83, 0.3);
  transform: translateY(-2px);
}

.btn-load-more svg {
  transition: transform 0.3s ease;
}

.btn-load-more.expanded svg {
  transform: rotate(180deg);
}

/* --- LIGHTBOX --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(15, 12, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--color-muted);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  z-index: 10;
}

.lightbox-nav:hover {
  background: var(--color-muted);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-counter {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 14px;
  letter-spacing: 0.5px;
}

/* --- MARQUEE --- */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marqueeScroll 75s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 70px;
}

.marquee-item img {
  max-width: 300px;
  max-height: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.3s ease;
}

.marquee-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

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

/* --- ABOUT & FAQ --- */
.about .intro {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  margin-top: 1.5rem;
}

.about img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--color-highlight);
  flex-shrink: 0;
}

.about p {
  font-size: 1.15rem;
  color: var(--color-primary);
  line-height: 1.75;
  margin: 0;
}

.faq-list {
  max-width: 900px;
  margin: 2rem auto 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-accent);
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.4);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--color-primary);
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--color-muted);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-question:hover,
.faq-item.open .faq-question {
  background-color: var(--color-muted);
  color: #ffffff;
}

.faq-item.open .faq-question::after {
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-primary);
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 1.4rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 1.2rem 1.4rem;
}

/* --- REVIEWS --- */
.gr-wrapper {
  font-family: var(--font-body);
  background-color: var(--color-card-bg);
  padding: 35px 24px;
  border-radius: var(--radius-lg);
  color: #202124;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(204, 173, 147, 0.3);
}

.gr-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.gr-header-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-heading);
}

.gr-score {
  font-size: 19px;
  font-weight: bold;
  color: #e37400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gr-stars {
  color: #fbbc04;
  font-size: 19px;
  letter-spacing: 2px;
}

.gr-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px 25px 5px;
  -webkit-overflow-scrolling: touch;
}

.gr-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  padding: 24px;
  min-width: 310px;
  max-width: 350px;
  flex: 0 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.gr-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gr-name {
  font-weight: 600;
  font-size: 15px;
  color: #202124;
}

.gr-meta {
  font-size: 12.5px;
  color: #70757a;
}

.gr-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: #3c4043;
}

.gr-footer-link {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #f1f3f4;
  text-align: right;
}

.gr-footer-link a {
  color: #1a73e8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

/* --- FOOTER & COOKIE --- */
.modern-footer {
  padding: 32px 20px 24px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--color-background);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  color: var(--color-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  color: #ffffff;
  background-color: var(--color-muted);
  transform: translateY(-3px);
}

.footer-info {
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-link {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--color-muted);
}

.footer-separator {
  color: var(--color-muted);
  font-size: 12px;
}

.footer-legal {
  font-size: 13.5px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #555;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--color-muted);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 16px 24px;
  z-index: 99999; 
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.cookie-banner.hide {
  transform: translateY(120%);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14.5px;
}

.cookie-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-content button {
  background-color: var(--color-muted);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.cookie-content button:hover {
  background-color: #823844;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
  }

  /* Der neue Drawer, der von rechts einfliegt */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 82vw;
    max-width: 360px;
    height: 100vh;
    background-color: rgba(238, 228, 219, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 100px 35px 40px 35px;
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
    
    /* Startposition: Unsichtbar rechts außerhalb des Bildschirms */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  }

  /* Wenn das Menü geöffnet ist */
  .nav-links.active,
  .navbar:has(.nav-toggle.open) .nav-links {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(204, 173, 147, 0.25);
    padding-bottom: 0.8rem;
  }

  .nav-links li a {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-primary);
    padding: 4px 0;
    background: transparent !important;
    border: none;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .nav-links li a:hover {
    color: var(--color-muted);
    transform: translateX(6px);
  }

  /* Dezentes Backdrop-Abdunkeln im Hintergrund, wenn Menü offen */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  /* Erweiterter Fallback für alle Geräte integriert */
  .navbar:has(.nav-toggle.open) ~ body::after,
  body:has(.nav-links.active)::after,
  body.menu-open::after {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 992px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 820px) {
  .hero {
    padding: 100px 15px 60px 15px; 
  }

  .hero-buttons-wrapper {
    flex-direction: column; 
    gap: 12px;
  }

  .btn-hero-large {
    width: 100%;
    max-width: 280px; 
    padding: 14px 20px;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
  }

  .about .intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  .gallery-item {
    border-radius: var(--radius-sm);
  }
}