/* =========================================
   PURACERÂMICA - Minimalist Index Page
   Consistent with Experiences & Shop Pages
   IMPROVED SLIDESHOW VERSION
   ========================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #000;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==================
   TOPBAR
   ================== */
.topbar {
  background-color: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

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

.language-switch a {
  text-decoration: none;
  margin: 0 8px;
  color: #000;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.language-switch a:hover {
  opacity: 0.6;
}

/* ==================
   HEADER
   ================== */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.logo img {
  height: 60px;
  transition: opacity 0.3s ease;
}

.logo:hover img {
  opacity: 0.8;
}

.navbar {
  position: relative;
}

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

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.6;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0.5rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  min-width: 180px;
  z-index: 999;
  border-radius: 0;
  margin-top: 0;
  padding-top: 15px;
}

.dropdown-menu a.see-all { 
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  font-weight: 600;
}


/* Unsichtbarer Übergangsbereich */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: #000;
  white-space: nowrap;
  font-weight: 300;
  font-size: 13px;
}

.dropdown-menu li:first-child a {
  padding-top: 0.8rem;
}

.dropdown-menu li a:hover {
  background-color: #fafafa;
}

/* HAMBURGER MENU - Animated Icon */
.hamburger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 10001;
  background: transparent;
  border: none;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Default state - drei Linien */
.hamburger span:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.hamburger span:nth-child(2) {
  opacity: 1;
}

.hamburger span:nth-child(3) {
  transform: translateY(0) rotate(0);
}

/* Active state - X */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Hover effect */
.hamburger:hover span {
  background: #666;
}

.close-menu {
  display: none;
}

.mobile-menu-header {
  display: none;
}

.dropdown-toggle::after {
  content: " ▾";
  margin-left: 5px;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.7;
}

.close-menu[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  .main-header {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    height: 50px;
  }

  .navbar {
    display: flex;
    align-items: center;
  }

  /* Mobile Menu Header mit Logo */
  .mobile-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0 2rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1rem;
  }

  .mobile-logo {
    height: 60px;
    opacity: 0.9;
  }

  /* Fullscreen Menu */
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    text-align: left;
    padding: 1.5rem 2rem 2rem;
    box-shadow: none;
    z-index: 10000;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    overflow-y: auto;
    gap: 0;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
  }

  /* Hide close button - hamburger stays as X */
  .close-menu {
    display: none !important;
  }

  /* Simple clean list */
  .nav-links li {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links > li > a {
    font-size: 18px;
    font-weight: 400;
    padding: 1.2rem 0;
    display: block;
    color: #000;
    letter-spacing: 0;
  }

  /* Dropdown arrow - größer und deutlicher */
  .dropdown-toggle::after {
    float: right;
    font-size: 20px;
    font-weight: 700;
    opacity: 1;
    transition: transform 0.3s ease;
  }

  .dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Dropdown submenu */
  .dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu {
    display: none;
    background-color: transparent;
    padding: 0 0 1rem 1.5rem;
    margin: 0;
    position: static;
    box-shadow: none;
    border-radius: 0;
    border-left: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu li {
    border-bottom: none;
  }

  .dropdown-menu li a {
    font-size: 15px;
    font-weight: 300;
    padding: 0.6rem 0;
    color: #666;
  }

  .dropdown-menu li a:hover {
    background-color: transparent;
    color: #000;
  }

  /* No overlay needed for fullscreen */
  body.menu-open::before {
    display: none;
  }
}

/* ==================
   FLOATING BOOKING BUTTON
   ================== */
#floating-booking-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#floating-booking-button button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

#floating-booking-button button:hover {
  opacity: 0.8;
}

/* Hide booking button when mobile menu is open */
body.menu-open #floating-booking-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ==================
   NEWS BANNER
   ================== */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 1rem;
  width: 100%;
}

.marquee {
  display: inline-flex;
  animation: scroll-left 18s linear infinite;
  will-change: transform;
}

.marquee-content {
  display: inline-flex;
  gap: 2rem;
  padding-right: 2rem;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-content span {
  display: inline-block;
  white-space: nowrap;
}

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

.clickable-marquee {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.clickable-marquee:hover {
  background-color: #f5f5f5;
}

/* Mobile: Schnellere Animation */
@media (max-width: 768px) {
  .marquee {
    animation: scroll-left 20s linear infinite;
  }
  
  .marquee-content {
    font-size: 0.85rem;
    gap: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 600px) {
  .marquee {
    animation: scroll-left 20s linear infinite;
  }
  
  .marquee-content {
    font-size: 0.8rem;
    gap: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .marquee-container {
    padding: 0.8rem;
  }
}

/* ==================
   SLIDESHOW - IMPROVED HERO STYLE
   ================== */
.slideshow-container {
  width: 100%;
  height: 50vh;
  max-height: 500px;
  min-height: 350px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  background-color: #000;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.slideshow-container:active {
  cursor: grabbing;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  background-color: #000;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
  transform: scale(1);
}

.slide.active img {
  transform: scale(1.08);
  filter: brightness(0.75);
}

/* Caption Box - Safari-optimierte Version mit hoher Opazität */
.slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(30px);
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  padding: 2rem 3rem;
  max-width: 700px;
  width: 85%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  will-change: transform, opacity;
}

.slide.active .slide-caption {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) translateY(0);
  transition-delay: 0.3s;
}

.slide-caption h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  margin: 0 0 0.8rem 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.slide-caption p {
  font-size: 1rem;
  color: #333;
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
}

/* PROGRESS DOTS - Zentriert unten */
.slide-indicators {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.slide-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
}

.slide-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.slide-dot.active {
  background-color: #fff;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .slideshow-container {
    height: 45vh;
    min-height: 320px;
    max-height: 400px;
  }

  .slide-caption {
    padding: 1.5rem 2rem;
    max-width: 85%;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
  }

  .slide-caption h2 {
    font-size: 1.4rem;
  }

  .slide-caption p {
    font-size: 0.9rem;
  }

  .slide-indicators {
    bottom: 20px;
  }
}

@media (max-width: 600px) {
  .slideshow-container {
    height: 40vh;
    min-height: 280px;
    max-height: 350px;
  }

  .slide-caption {
    padding: 1.2rem 1.5rem;
    max-width: 88%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
  }

  .slide-caption h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .slide-caption p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .slide-indicators {
    bottom: 15px;
    gap: 8px;
    padding: 6px 12px;
  }

  .slide-dot {
    width: 8px;
    height: 8px;
  }

  .slide-dot.active {
    width: 20px;
  }
}



/* FIRE BADGE */
.circle-wrapper {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 130px;
  height: 130px;
  border: 2px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .circle-wrapper {
    top: 20px;
    right: 20px;
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 600px) {
  .circle-wrapper {
    top: 15px;
    right: 15px;
    width: 95px;
    height: 95px;
  }
}

.rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 25s linear infinite;
}

.text-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: #000;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.5px;
}

.text-circle text {
  fill: #000;
}

.emblem {
  position: absolute;
  width: 40%;
  height: 40%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url('../img/icons/fire.jpg') no-repeat center;
  background-size: contain;
}

.circle-container {
  position: relative;
  width: 100%;
  height: 100%;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ==================
   INTRO SECTION
   ================== */
.intro-header {
  text-align: center;
  padding: 5rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
}

.intro-header h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin: 0 0 1.5rem;
  letter-spacing: 0;
}

.intro-header h3 {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #444;
  letter-spacing: 0;
}

.intro-header p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  font-weight: 300;
  margin: 0 0 1.5rem;
  text-align: justify;
}

.intro {
 text-align: center;
  padding: 5rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  }

.intro p{
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  font-weight: 300;
  margin: 0 0 1.5rem;
  text-align: justify;
}

.black-link,
.black-link:visited,
.black-link:hover {
  color: #000;
  text-decoration: underline;
}


/* ==================
   HOW IT WORKS
   ================== */
.howitworks {
  padding: 4rem 2rem 5rem;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  position: relative;
}

.howitworks-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 3rem 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  aspect-ratio: 1 / 1;
  min-height: 280px;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #000 0%, #666 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #f0f0f0;
}

.step-number {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  width: 32px;
  height: 32px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: rotate(360deg) scale(1.1);
  background: #333;
}

.step-media {
  width: 100%;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  position: relative;
  flex-shrink: 0;
}

.step-media img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(15%);
}

.step:hover .step-media img {
  transform: scale(1.12) rotate(2deg);
  filter: grayscale(0%);
}

.step-body h3 {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.step:hover .step-body h3 {
  color: #333;
}

.step-body p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
  color: #666;
  font-weight: 300;
  transition: color 0.3s ease;
}

.step:hover .step-body p {
  color: #444;
}

/* Mobile Navigation - Hidden on Desktop */
.steps-prev, .steps-next {
  display: none;
}

.steps-indicators {
  display: none;
}

/* ==================
   FAQ SECTION
   ================== */
.faq {
  background-color: #fafafa;
  color: #000;
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'Montserrat', sans-serif;
}

.faq h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.faq p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* FAQ Button - Pillenform wie bei Shop */
.faq-button {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  border: 2px solid #000;
}

.faq-button:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq {
  margin-top: 3rem;
}

/* ==================
   OPENING HOURS
   ================== */
.opening-sections {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  background-color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.hours-box {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 1.5rem;
  border: 2px solid #eee;
  border-radius: 0;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.hours-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hours-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.hours-box h2 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0;
  flex-shrink: 0;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.note {
  font-size: 0.85rem;
  margin-top: auto;
  color: #666;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.3px;
  font-weight: 300;
}

.day {
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #000;
  font-weight: 300;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #eee;
}

.day:last-child {
  border-bottom: none;
}

/* ==================
   VIP SECTION
   ================== */
.vip-section {
  background-color: #fafafa;
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'Montserrat', sans-serif;
}

.vip-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000;
  font-weight: 500;
  letter-spacing: 0;
}

.vip-section p {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
  color: #444;
  font-weight: 300;
  line-height: 1.7;
}

.vip-button {
  display: inline-block;
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  transition: all 0.25s ease;
}

.vip-button:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==================
   CONTACT & FOOTER
   ================== */
.contact-block {
  background-color: #fff;
  padding: 4rem 2rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  color: #000;
  border-top: 1px solid #eee;
}

.contact-inner {
  max-width: 800px;
  margin: auto;
}

.contact-inner h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0;
}

.address {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.contact-info {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 300;
  color: #444;
}

.contact-info a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: opacity 0.2s;
}

.contact-info a:hover {
  opacity: 0.6;
}

.footer-map {
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.footer-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .footer-map iframe {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

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

.footer-social a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.6;
}

.footer-social img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.footer-social a:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.footer-social span {
  margin-top: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 1rem;
  font-weight: 300;
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 900px) {
  .intro-header {
    padding: 4rem 2rem 2.5rem;
  }

  .intro-header h1 {
    font-size: 2rem;
  }

  .intro-header h3 {
    font-size: 1.15rem;
  }

  .intro-header p {
    font-size: 1rem;
  }

  .howitworks-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .step {
    padding: 1.8rem 1.2rem;
    min-height: 260px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
    top: 0.7rem;
    left: 0.7rem;
  }

  .step-media img {
    width: 80px;
    height: 80px;
  }

  .step-body h3 {
    font-size: 1rem;
  }

  .step-body p {
    font-size: 0.9rem;
  }

  .opening-sections {
    padding: 3rem 2rem;
  }

  .vip-section h2 {
    font-size: 1.75rem;
  }
}

/* MOBILE SLIDESHOW - Index Page */
@media (max-width: 600px) {
  .intro-header {
    padding: 3rem 1.5rem 2rem;
  }

  .intro-header h1 {
    font-size: 1.75rem;
  }

  .intro-header h3 {
    font-size: 1rem;
  }

  .howitworks {
    padding: 3rem 1.5rem 5rem;
  }

  .howitworks-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .steps {
    display: block;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
  }
  
  .steps:active {
    cursor: grabbing;
  }

  .step {
    display: none;
    padding: 2rem 1.5rem;
    min-height: 320px;
    opacity: 0;
    transition: opacity 0.5s ease;
    border: none !important;
    overflow: visible;
  }

  /* WICHTIG: Schwarzen Balken auf Mobile entfernen */
  .step::before {
    display: none !important;
  }

  /* WICHTIG: Hover-Effekte auf Mobile deaktivieren */
  .step:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: none !important;
  }

  .step:hover .step-number {
    transform: none !important;
    background: #000;
  }

  .step:hover .step-media img {
    transform: none !important;
    filter: grayscale(15%);
  }

  .step:hover .step-body h3,
  .step:hover .step-body p {
    color: inherit;
  }

  .step.active {
    display: flex;
    opacity: 1;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    top: 1rem;
    left: 1rem;
    transition: none !important;
  }

  .step-media {
    margin-bottom: 1.5rem;
  }

  .step-media img {
    width: 120px;
    height: 120px;
    transition: none !important;
  }

  .step-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    transition: none !important;
  }

  .step-body p {
    font-size: 1rem;
    transition: none !important;
  }

  /* Indicators */
  .steps-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
  }

  .step-indicator {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .step-indicator:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .step-indicator.active {
    background-color: #000;
    width: 24px;
    border-radius: 4px;
  }

  .opening-sections {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
  }

  .vip-section {
    padding: 2.5rem 1.5rem;
  }

  .vip-section h2 {
    font-size: 1.5rem;
  }

  .vip-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .contact-block {
    padding: 2.5rem 1.5rem;
  }

  .contact-inner h3 {
    font-size: 1.5rem;
  }
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* ACCESSIBILITY */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

.complaint-book {
  margin-top: 20px;
  text-align: center;
}

.complaint-book a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.complaint-book img {
  width: 80px;
  height: 40px;
  align-items: center;
}