/* Importing Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;1,500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


:root {
  /* Light Theme Colors */
  --sidebar-bg: #F5F5F5;
  --primary-color: #4F46E5;
  --secondary-color: #3B82F6;
  --background-color: #FFFFFF;
  --border-color: #E5E7EB;
  --text-color: #111827;
  --text-secondary: #6B7280;
}

body.dark-theme {
  /* Dark theme colors */
  --sidebar-bg: #374151;
  --primary-color: #8B5CF6;
  --secondary-color: #60A5FA;
  --background-color: #0d111b;
  --border-color: #374151;
  --text-color: #F9FAFB;
  --text-secondary: #9CA3AF;
}

.main-content {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* Jonas */
.main-view {
  display: flex;
  flex-direction: column;
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)),
              url("images/lager_wiese2.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === NEON ADDRESS GESAMT === */
.neon-address {
  margin: 1.4rem auto;
  position: relative;
  padding: 25px 35px;
  text-align: center;
  border-radius: 15px;
  border: 3px solid;
  border-image: linear-gradient(90deg, #00e5ff, #8a2be2, #00e5ff) 1;
  animation: glow 3s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
}

/* Glow-Animation des Rahmens */
@keyframes glow {
  0% { box-shadow: 0 0 10px #00e5ff, 0 0 20px #8a2be2; }
  50% { box-shadow: 0 0 20px #8a2be2, 0 0 40px #00e5ff; }
  100% { box-shadow: 0 0 10px #00e5ff, 0 0 20px #8a2be2; }
}

/* === INHALT: PokéStop + Text nebeneinander === */
.address-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap; /* für schmale Bildschirme */
}

/* Text-Stile */
.neon-address h3 {
  color: var(--text-color, #222);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.neon-address p {
  color: var(--text-color, #222);
  font-size: 1rem;
  margin: 4px 0;
}

.neon-address .tagline {
  font-style: italic;
  font-weight: 500;
  margin-top: 10px;
  color: #00baff;
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.6);
}

/* === POKÉSTOP === */
.pokestop {
  position: relative;
  width: 90px;
  height: 90px;
  perspective: 800px;
  cursor: pointer;
  transform: rotateX(10deg);
  transition: filter 0.4s ease, transform 0.1s ease;
}

.base {
  position: absolute;
  inset: 0;
  background: url("images/base.png") center/contain no-repeat;
  z-index: 1;
}

.particles1,
.particles2,
.particles3 {
  position: absolute;
  inset: 0;
  background: url("images/particles.png") center/contain no-repeat;
  transform-origin: center center;
  animation: spinParticles 20s linear infinite;
  opacity: 0.75;
  z-index: 2;
  transition: animation-duration 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.particles2 { animation-duration: 16s; opacity: 0.8; z-index: 3; }
.particles3 { animation-duration: 13s; opacity: 0.85; z-index: 4; }

.ring-outer {
  position: absolute;
  inset: 0;
  background: url("images/ring_outer.png") center/contain no-repeat;
  transform-origin: center center;
  animation: spinOuter 10s linear infinite;
  z-index: 5;
  transition: animation-duration 0.3s ease;
}

.ring-middle {
  position: absolute;
  inset: 0;
  background: url("images/ring_middle.png") center/contain no-repeat;
  transform-origin: center center;
  animation: spinMiddle 8s linear infinite;
  z-index: 6;
  transition: animation-duration 0.3s ease;
}

.ring-inner {
  position: absolute;
  inset: 0;
  background: url("images/ring_inner.png") center/contain no-repeat;
  transform-origin: center center;
  animation: spinOuter 6.5s linear infinite;
  z-index: 7;
  transition: animation-duration 0.3s ease;
}

/* === Hover: alle Effekte beschleunigen === */
.pokestop:hover .ring-outer  { animation-duration: 2s; }
.pokestop:hover .ring-middle { animation-duration: 1.6s; }
.pokestop:hover .ring-inner  { animation-duration: 1.3s; }

.pokestop:hover .particles1  { animation-duration: 5s; }
.pokestop:hover .particles2  { animation-duration: 4s; }
.pokestop:hover .particles3  { animation-duration: 3.3s; }

.pokestop:hover .particles1,
.pokestop:hover .particles2,
.pokestop:hover .particles3 {
  opacity: 1;
  filter: brightness(1.2) drop-shadow(0 0 3px rgba(150,200,255,0.6));
}

.pokestop:hover {
  filter:
    drop-shadow(0 0 4px rgba(100,200,255,0.4))
    drop-shadow(0 0 10px rgba(200,200,255,0.2));
}

/* === Animationen === */
@keyframes spinOuter {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

@keyframes spinMiddle {
  from { transform: rotateY(360deg); }
  to   { transform: rotateY(0deg); }
}

@keyframes spinParticles {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .address-content {
    flex-direction: column;
    gap: 15px;
  }

  .pokestop {
    width: 80px;
    height: 80px;
  }

  .neon-address h3 {
    font-size: 1.3rem;
  }

  .neon-address p {
    font-size: 0.95rem;
  }

  .neon-address .tagline {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .neon-address {
    padding: 20px;
  }

  .pokestop {
    width: 70px;
    height: 70px;
  }

  .address-content {
    gap: 10px;
  }

  .neon-address h3 {
    font-size: 1.2rem;
  }

  .neon-address p,
  .neon-address .tagline {
    font-size: 0.85rem;
  }
}


/* Lauflicht-Animation auf dem Rahmen */
@keyframes glow {
  0% {
    border-image: linear-gradient(0deg, #00e5ff, #8a2be2, #00e5ff) 1;
  }
  25% {
    border-image: linear-gradient(90deg, #00e5ff, #8a2be2, #00e5ff) 1;
  }
  50% {
    border-image: linear-gradient(180deg, #00e5ff, #8a2be2, #00e5ff) 1;
  }
  75% {
    border-image: linear-gradient(270deg, #00e5ff, #8a2be2, #00e5ff) 1;
  }
  100% {
    border-image: linear-gradient(360deg, #00e5ff, #8a2be2, #00e5ff) 1;
  }
}


/* ---------- SLIDESHOW ---------- */
.slideshow-container {
  margin: 2rem auto;
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(0,0,0,0.7);
  background: #111;
}

/* Slides */
.slide {
  display: none;
  position: absolute;
  inset: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%) saturate(110%);
  transition: transform 1.5s ease;
}

.slide img:hover {
  transform: scale(1.05);
}

/* Caption mit Blur-Glass Effekt */
.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 25px;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Navigation Buttons */
.nav-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Punkte */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s, transform 0.3s;
}

.dot:hover {
  transform: scale(1.2);
}

.active {
  background-color: #fff;
  box-shadow: 0 0 8px #fff;
}

/* Fade Animation */
.fade {
  animation: fade 1s ease;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- ZITAT ---------- */
.zitat {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-left: 6px solid #ff5252;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  position: relative;
}

.photo {
  flex: 0 0 220px;
  height: 220px;
  border-radius: 10px;
  background: url("images/elg.jpg") center/cover no-repeat;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  background-position: top;
}

.quote {
  flex: 1;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.8;
  position: relative;
  padding: 1rem 1.5rem;
}

/* Anführungszeichen */
.quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 3rem;
  color: #ff5252;
  line-height: 1;
}

.quote::after {
  content: "”";
  position: absolute;
  bottom: -18px;
  right: 10px;
  font-size: 3rem;
  color: #ff5252;
  line-height: 1;
}

.author {
  font-size: 1rem;
  margin-top: 0.6rem;
  color: #777;
  font-style: italic;
  text-align: right;
}

/* ---------- ROOMTOUR ---------- */
.roomtour-container {
  color: var(--text-color);
  max-width: 1000px;
  margin: 20px auto;
  text-align: center;
  padding: 2rem;
}

.roomtour-container h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.roomtour-container p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.roomtour-container video {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
}

.roomtour-container video:hover {
  transform: scale(1.02);
}

/* ---------- ANIMATION ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .slideshow-container {
    max-width: 90%;
    height: 450px;
  }

  .zitat {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .photo {
    width: 100%;
    max-width: 400px;
    height: 180px;
  }

  .quote::before {
    top: -15px;
    left: 10px;
  }

  .quote::after {
    bottom: -15px;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .slideshow-container {
    height: 380px;
  }

  .description {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .quote {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .roomtour-container h2 {
    font-size: 1.8rem;
  }

  .roomtour-container p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 15px;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .slideshow-container {
    height: 280px;
  }

  .description {
    font-size: 0.9rem;
  }

  .dot {
    height: 10px;
    width: 10px;
  }

  .quote {
    font-size: 1rem;
  }

  .photo {
    height: 160px;
  }

  .roomtour-container video {
    max-width: 100%;
  }
}
