/* css/style.css */

:root {
  --dark-bg: #0a0a0a;
  --dark-secondary: #0a0a0a;
  --card-bg: #141416;
  --card-bg-elevated: #1a1a1d;
  --light-text: #ffffff;
  --dark-text: #000000;
  --gold-accent: rgb(245, 203, 112);
  --gold-hover:  rgb(235, 190,  90);
  --dark-gray:  #333333;
  --medium-gray:#bbbbc2;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Animierte Custom Property für rotierende Conic-Borders */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  color: var(--light-text);
  background-color: var(--dark-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245, 203, 112, 0.04), transparent 60%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(120, 130, 160, 0.025), transparent 70%);
  background-attachment: fixed;
}

/* Header */
/* DIESEN GESAMTEN CODE in die style.css kopieren und alle bisherigen Header/Navigation-Styles ersetzen */
/* Header und Navigation */
header {
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(245, 203, 112, 0);
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.65);
  border-bottom-color: rgba(245, 203, 112, 0.18);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}

/* CSS für die korrekte Ausrichtung des Language-Buttons */

/* Stelle sicher, dass die Sprachumschaltung dieselbe Ausrichtung hat wie die anderen Navigationselemente */
.language-toggle {
  display: flex;
  align-items: center; /* Vertikale Ausrichtung in der Mitte */
  height: 90%; /* Volle Höhe des nav-links Containers */
}

/* Verbesserte Styles für den Sprachumschalter-Button */
.lang-button {
  background: none;
  border: none;
  color: var(--medium-gray);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: normal;
  padding: 0.3rem;
  transition: color 0.3s ease;
  vertical-align: middle;
  display: inline-block;
  line-height: 70px;
}

/* Stile für den Hover-Zustand konsistent mit den anderen Nav-Links */
.lang-button:hover {
  color: var(--gold-accent);
}



/* Desktop Navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--light-text);
  font-size: 1.5rem;
  font-weight: 500;
}

.logo img {
  height: 100px;
  width: auto;
  margin-right: 10px;
}

.logo span:first-of-type {
  color: var(--gold-accent);
}




.nav-links a {
  color: var(--medium-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--light-text);
}

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


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* Höherer z-index für den Hamburger-Button */
.hamburger {
  position: relative;
  z-index: 10000; /* Muss höher sein als das mobile-menu-overlay (10000) */
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: var(--gold-accent);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85%, 420px);
  height: 100%;
  background-color: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-left: 1px solid rgba(245, 203, 112, 0.15);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease,
              visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-content {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding-top: 60px;
}

.mobile-menu-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-overlay li {
  margin: 25px 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-menu-overlay.active li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-overlay.active li:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu-overlay.active li:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu-overlay.active li:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu-overlay.active li:nth-child(4) { transition-delay: 0.30s; }
.mobile-menu-overlay.active li:nth-child(5) { transition-delay: 0.36s; }
.mobile-menu-overlay.active li:nth-child(6) { transition-delay: 0.42s; }
.mobile-menu-overlay.active li:nth-child(7) { transition-delay: 0.50s; }

.mobile-menu-overlay a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: block;
  padding: 10px;
  transition: color 0.3s ease;
}

.mobile-menu-overlay a:hover {
  color: var(--gold-accent);
}

/* No-scroll für Body */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  scroll-behavior: auto;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  .navbar{
    flex-direction: row !important;
  }

  .logo{
    margin-bottom: 0 !important;
  }
}


/* Responsive Anpassungen */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
}
/* Hero */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.loaded { opacity: 1; }

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.55) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

/* Staged Hero Entrance: Video läuft 2s allein, dann Text gestaffelt */
.hero-stage > * {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-stage > h1 { animation-delay: 2.5s; }
.hero-stage > p  { animation-delay: 2.5s; }
.hero-stage > .btn { animation-delay: 4s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage > * {
    animation-delay: 0s !important;
    animation-duration: 0.01s !important;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 32;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -2.5px;
  line-height: 1.05;
  background: linear-gradient(
    110deg,
    #ffffff 0%,
    #ffffff 35%,
    #ffe9b8 48%,
    #fff6df 52%,
    #ffffff 65%,
    #ffffff 100%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Hero-Headline kombiniert: erst Reveal (verzögert wie hero-stage > h1),
   dann Shimmer dauerhaft loopen */
.hero-stage > h1 {
  animation:
    heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 2s forwards,
    heroShimmer 35s ease-in-out 3s infinite;
}

@keyframes heroShimmer {
  0%, 100% { background-position: 200% 0; }
  50%      { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage > h1 {
    animation: heroReveal 0.01s forwards;
    background-position: 50% 0;
  }
}

.hero p { font-size:1.5rem; color:var(--medium-gray); margin-bottom:2rem; }
.btn {
  background: var(--gold-accent); color: var(--dark-bg);
  padding:12px 28px; border-radius:30px; text-decoration:none; font-size:1.1rem;
  transition: all .3s;
}
.btn:hover { background: var(--gold-hover); transform: scale(1.05); }

/* Sections allgemein */
section { padding:6rem 0; position: relative; }

/* Vercel-Style: alle Sections nutzen denselben dunklen Body-Hintergrund.
   Die Trennung übernehmen Cards, Spacing und Akzente. */

/* Titel & Untertitel – mit metallischem Gradient-Fill */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 32;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -1.2px;
  background: linear-gradient(180deg, #ffffff 0%, #d4d4d8 45%, #8a8a90 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-subtitle {
  text-align:center; margin:0 auto 3rem; max-width:700px; font-size:1.2rem; color:var(--medium-gray);
}

/* Schwarzweiß-Filter für alle Content-Bilder außer dem Hero – auch im Hover-Zustand */
.about-image,
.service-image,
.masonry-item img {
  filter: grayscale(100%);
}

.masonry-item.visible:hover img {
  filter: grayscale(100%) brightness(1.06);
}

/* About */
.about { overflow:hidden; }
.about-content { display:flex; flex-wrap:wrap; gap:2rem; align-items:center; }
.about-text { flex:1; min-width:300px; }
.about-text p { margin-bottom:1.5rem; color:var(--medium-gray); }
.about-image {
  flex:1; min-width:300px; height:500px;
  background: url('../IMG/2. Unser Studio - Black New Regie.JPG') center/cover no-repeat;
  border-radius:10px;
}

/* Services */
.services { background: var(--dark-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: linear-gradient(160deg, rgba(38,38,42,0.7), rgba(18,18,20,0.85));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 25px 50px rgba(0,0,0,0.45);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 0%,
    rgba(245, 203, 112, 0.7) 12%,
    rgba(255, 240, 200, 0.9) 18%,
    rgba(245, 203, 112, 0.7) 24%,
    transparent 36%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}
.service-card:hover::before {
  opacity: 1;
  animation: borderRotate 4s linear infinite;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,203,112,0.25);
  box-shadow: 0 35px 60px rgba(0,0,0,0.5),
              0 0 50px rgba(245,203,112,0.1);
}
.service-image {
  width: 100%;
  aspect-ratio: 9 / 16;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image {
  transform: scale(1.04);
}

/* Einzel‑Bilder für jede Card */
.service-card.recording .service-image {
  background-image: url("../IMG/3. Dienstleistung Recording - Drums People.jpg");
}

.service-card.mixing .service-image {
  background-image: url("../IMG/3. Dienstleistung Mixing - Original Regie New.JPG");
}

.service-card.mastering .service-image {
  background-image: url("../IMG/3. Dienstleistung Mastering - Speaker.jpeg");
}

.service-card.production .service-image {
  background-image: url("../IMG/3. Dienstleistung Production - Booty Jive.jpeg");
}
.service-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}
.service-content h3 {
  color: var(--light-text);
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 28;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.service-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold-accent);
  transition: width 0.4s ease;
}
.service-card:hover .service-content h3::after {
  width: 90px;
}
.service-content p {
  color: var(--medium-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  .service-content {
    padding: 2rem;
  }
  .service-content h3 {
    font-size: 1.5rem;
  }
}


/* Equipment */
.equipment {
  padding: 4rem 0;
}
.equipment .section-title { margin-bottom: 1rem; font-size: 2.2rem; }
.equipment .section-subtitle { margin-bottom: 2rem; font-size: 1.05rem; }
.equipment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .equipment-list {
    grid-template-columns: 1fr;
  }
}
.equipment-item {
  position: relative;
  background: linear-gradient(160deg, rgba(38,38,42,0.85), rgba(18,18,20,0.75));
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  overflow: hidden;
}
.equipment-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 0%,
    rgba(245, 203, 112, 0.7) 12%,
    rgba(255, 240, 200, 0.9) 18%,
    rgba(245, 203, 112, 0.7) 24%,
    transparent 36%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.equipment-item:hover::before {
  opacity: 1;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  to { --angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .equipment-item:hover::before,
  .service-card:hover::before,
  .price-card:hover::before {
    animation: none;
  }
}
.equipment-item:hover {
  transform: translateY(-8px);
  border-color: rgba(245,203,112,0.25);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 20px 45px rgba(0,0,0,0.5),
    0 0 40px rgba(245,203,112,0.12);
}
.equipment-item:hover i {
  transform: scale(1.15);
  text-shadow: 0 0 20px rgba(245,203,112,0.6);
}
.equipment-item h3 {
  color:var(--light-text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.2px;
  display:flex;
  align-items:center;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.equipment-item i {
  color:var(--gold-accent);
  margin-right: 10px;
  font-size: 1.1rem;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}
.equipment-item ul { list-style:none; }
.equipment-item li {
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--medium-gray);
}
.equipment-item li:before {
  content:"•"; position:absolute; left:0; color:var(--gold-accent);
}

/* Prices */
.prices { background: var(--dark-bg); }
.price-cards {
  display:flex; flex-wrap:wrap; justify-content:center; gap:2.5rem;
}
.price-card {
  position: relative;
  background: linear-gradient(160deg, rgba(38,38,42,0.85), rgba(18,18,20,0.9));
  width: 320px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 20px 40px rgba(0,0,0,0.45);
  transition: transform .4s, border-color .4s, box-shadow .4s;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 0%,
    rgba(245, 203, 112, 0.7) 12%,
    rgba(255, 240, 200, 0.9) 18%,
    rgba(245, 203, 112, 0.7) 24%,
    transparent 36%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}
.price-card:hover::before {
  opacity: 1;
  animation: borderRotate 4s linear infinite;
}
.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 203, 112, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 30px 50px rgba(0,0,0,0.55),
    0 0 40px rgba(245,203,112,0.08);
}
.price-header { padding:2rem; border-bottom:1px solid rgba(110,110,115,0.2); }
.price-header h3 {
  color: var(--light-text);
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 24;
  font-weight: 600;
  letter-spacing: -0.4px;
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.price { font-size:2.5rem; font-weight:600; color:var(--gold-accent); }
.price-features { list-style:none; padding:2rem; }
.price-features li {
  padding:1rem 0; color:var(--medium-gray);
  border-bottom:1px solid rgba(110,110,115,0.1);
}
.price-features li:last-child { border-bottom:none; }

/* Gallery - Masonry Collage */

.masonry-gallery {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
  align-items: flex-start;
}

.gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .masonry-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .gallery-col:nth-child(3) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 560px) {
  .masonry-gallery {
    display: flex;
    flex-direction: column;
  }
  .gallery-col:nth-child(3) {
    display: flex;
    flex-direction: column;
  }
}

.masonry-item {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  /* Scroll-Reveal: startet unsichtbar von unten */
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease,
              border-color 0.45s ease;
}

/* Collage-Varietät: leicht unterschiedliche Radien je Position */
.masonry-item:nth-child(3n+1) { border-radius: 14px 10px 13px 11px; }
.masonry-item:nth-child(3n+2) { border-radius: 10px 14px 11px 13px; }
.masonry-item:nth-child(3n)   { border-radius: 12px 11px 14px 10px; }

/* Beim Hochscrollen: Item kommt von oben */
.masonry-item.from-top {
  transform: translateY(-55px);
}

/* Sichtbar-Zustand */
.masonry-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover nur wenn bereits sichtbar */
.masonry-item.visible:hover {
  transform: translateY(-7px);
  border-color: rgba(245,203,112,0.3);
  box-shadow: 0 28px 55px rgba(0,0,0,0.55),
              0 0 40px rgba(245,203,112,0.12);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.masonry-item.visible:hover img {
  transform: scale(1.05);
  filter: brightness(1.06);
}

.masonry-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.2rem 1rem;
  color: var(--light-text);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.masonry-item.visible:hover figcaption,
.masonry-item.touch-show figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Legacy Swiper (ungenutzt) */
.swiper {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 60px;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.85);
  opacity: 0.6;
  transition: transform 0.4s ease, opacity 0.4s ease;
  position: relative;
}

.swiper-slide-active {
  transform: scale(1.5) !important;
  opacity: 1 !important;
  z-index: 2;
}

.swiper-slide-prev,
.swiper-slide-next {
  transform: scale(0.85) !important;
  opacity: 0.8 !important;
  z-index: 1;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

/* Caption Style */
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(245, 200, 123, 0);
  color: var(--light-text);
  padding: 1rem;
  font-size: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;

}

.swiper-slide:hover .caption,
.swiper-slide.touch-show .caption {
  opacity: 1 !important;
  transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold-accent) !important;
  transition: color 0.3s ease;
  z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--gold-hover) !important;
  transform: scale(1.2);
}

.swiper-pagination-bullet {
  background-color: var(--gold-accent);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Revert Swiper navigation buttons to use arrows */
.swiper-button-next::after {
  content: '\003E'; /* Unicode for '>' */
  font-size: 1.5rem;
  color: var(--gold-accent);
  scale: 1,2;
}

.swiper-button-prev::after {
  content: '\003C'; /* Unicode for '<' */
  font-size: 1.5rem;
  color: var(--gold-accent);
}

/* Ensure Swiper navigation buttons are visible */
.swiper-button-next,
.swiper-button-prev {
  display: block;
  width: 44px;
  height: 44px;
  background: var(--gold-accent);
  border-radius: 50%;
  color: var(--gold-accent) !important;
  font-size: 1.5rem;
  justify-content: center;
  align-items: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Update Swiper navigation buttons to match the attached design */
.swiper-button-next,
.swiper-button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  color: var(--dark-bg);
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.swiper-button-next::after {
  content: '\003E'; /* Unicode for '>' */
}

.swiper-button-prev::after {
  content: '\003C'; /* Unicode for '<' */
}

/* Contact */
.contact { background: var(--dark-bg); }
.contact-container { display:flex; flex-wrap:wrap; gap:3rem; }
.contact-info h3 { color:var(--light-text); margin-bottom:2rem; }
.contact-details { list-style:none; }
.contact-details li {
  display:flex; align-items:center; margin-bottom:1.5rem; color:var(--medium-gray);
}

/* Logo in der Contact‑Spalte */
.contact-logo {
  margin-top: 2rem;    /* Abstand zur Adresse */
  max-width: 400px;    /* Logo‑Breite begrenzen */
}

.contact-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: -50px;
  margin-top: -30px;
}

.contact-details i { color:var(--gold-accent); margin-right:15px; }
.contact-form { flex:1; min-width:300px; }
.form-group { margin-bottom:1.5rem; }
label { display:block; margin-bottom:.8rem; color:var(--medium-gray); }
input, textarea {
  width:100%; padding:12px 15px;
  background: rgba(30,30,32,0.7);
  border:1px solid var(--dark-gray);
  border-radius:10px; color:var(--light-text);
  transition:border-color .3s;
}
input:focus, textarea:focus {
  outline:none; border-color:var(--gold-accent);
}
textarea { height:150px; resize:vertical; }
.btn-submit {
  background:var(--gold-accent); color:var(--dark-bg);
  padding:12px 28px; border:none; border-radius:30px;
  cursor:pointer; transition: all .3s;
}
.btn-submit:hover { background:var(--gold-hover); transform: scale(1.05); }

/* Footer */
footer {
  background: linear-gradient(180deg, rgba(20,20,22,0.6), rgba(10,10,12,1));
  border-top: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  color: var(--medium-gray);
  padding:1rem 0; 
  text-align:center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo {
  max-width: 250px;  /* anpassen, wie breit dein Logo sein soll */
  height: auto;
  display: block;    /* oder inline-block, je nach Layout */
  margin: 0 auto;    /* zentriert, falls gewünscht */
}

.footer-content h3 { color:var(--light-text); margin-bottom:1rem; }
.social-links { display:flex; justify-content:center; list-style:none; margin-bottom:2rem; }
.social-links li { margin:0 15px; }
.social-links a { color:var(--medium-gray); font-size:1.5rem; transition: color .3s; }
.social-links a:hover { color:var(--gold-accent); }

.footer-legal {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.footer-legal a {
  color: var(--medium-gray);
  text-decoration: none;
  margin: 0 0.3rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold-accent);
}

.footer-legal span {
  margin: 0 0.2rem;
}



.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 2rem; /* Platz unter dem Button */
}

.price-card .btn {
  align-self: center;
  margin-top: auto;
  margin-bottom: 1rem;
  padding: 12px 28px;
  background-color: var(--gold-accent);
  color: var(--dark-bg);
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.price-card .btn:hover {
  background-color: var(--gold-hover);
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  visibility: visible;
  opacity: 1;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10002;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  background: none;
  border: none;
  color: var(--gold-accent);
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 10002;
}
.lightbox-prev {
  left: 40px;
}
.lightbox-next {
  right: 40px;
}


/* Füge diese Styles zu deiner CSS-Datei hinzu */

.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin: 1rem 0;
}

.footer-link {
  color: var(--medium-gray);
  cursor: pointer;
  font-size: 0.8rem;
  transition: color 0.3s;
}

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

.footer-seperator{
  display: flex;
}

/* Verbesserte Modal-Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100000; /* Extrem hoher z-index */
  visibility: hidden;
  opacity: 0;
  display: flex;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s, visibility 0.3s;
}
/* Damit der Modal‑Inhalt bei vielen Fragen scrollt */
.modal .modal-content {
  max-height: 75vh;      /* Höhe auf 75 % der Viewport‑Höhe begrenzen */
  overflow-y: auto;      /* Vertikales Scrollen erlauben */
  padding-right: 1rem;   /* Platz für die Scroll‑Bar (optional) */
}
.modal.active{
  visibility: visible;
  opacity: 1;
  display: flex;
  pointer-events: auto;
}


.modal-content {
  background: linear-gradient(160deg, rgba(38,38,42,0.95), rgba(20,20,22,0.95));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 30px 60px rgba(0,0,0,0.6);
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  z-index: 1001;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.modal.active .modal-content{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--medium-gray);
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease, transform 0.2s ease;
}

.modal-close:hover {
  color: var(--gold-accent);
  transform: scale(1.2);
}


/* FAQ Accordion Styles */
.faq-accordion .faq-item {
  margin-bottom: 1.5rem;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  color: var(--light-text);
  cursor: pointer;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
}
.faq-question[aria-expanded="true"] {
  color: var(--gold-accent);
}
.faq-answer {
  display: none;
  padding: 0.5rem 0 1rem;
  color: var(--medium-gray);
}
.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}
@media screen and (max-width: 480px) {
  .modal-close {
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
  }
}

/* Mobile Sprachumschaltung Styles */
.mobile-language-toggle {
  margin: 35px 0 !important;
  display: flex;
  justify-content: center;
}

.mobile-lang-button {
  background: rgba(245, 203, 112, 0.08);
  border: 1.5px solid var(--gold-accent);
  color: var(--gold-accent);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 10px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 1px;
}

.mobile-lang-button:hover,
.mobile-lang-button:active {
  background-color: var(--gold-accent);
  color: var(--dark-bg);
  transform: scale(1.05);
}

/* Fade‑In Animation */
.fade-in {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Neue Delay-Klassen */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.delay-700 {
  transition-delay: 700ms;
}

.delay-1000 {
  transition-delay: 1200ms;
}

.delay-800 {
  transition-delay: 800ms;
}

.delay-1100 {
  transition-delay: 1100ms;
}

.delay-1400 {
  transition-delay: 1400ms;
}

/* ======== Subpage Layout (Impressum, AGB, FAQ) ======== */
.subpage {
  min-height: 100vh;
  padding-top: 70px;
}

.subpage-hero {
  padding: 70px 0 50px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245, 203, 112, 0.05), transparent 60%);
  border-bottom: 1px solid rgba(245, 203, 112, 0.08);
}

.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.subpage-back:hover { opacity: 0.7; }

.subpage-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--light-text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.subpage-content {
  padding: 60px 0 100px;
}

.legal-body {
  max-width: 760px;
}

.subpage-content h2 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 2.5rem 0 0.75rem;
}

.subpage-content h2:first-child { margin-top: 0; }

.subpage-content p {
  color: var(--medium-gray);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.subpage-content a {
  color: var(--gold-accent);
  text-decoration: none;
}

.subpage-content a:hover { text-decoration: underline; }

a.footer-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ======== FAQ Page Accordion ======== */
.faq-page-accordion {
  max-width: 760px;
}

.faq-page-item {
  border-bottom: 1px solid rgba(245, 203, 112, 0.12);
}

.faq-page-item:first-child {
  border-top: 1px solid rgba(245, 203, 112, 0.12);
}

.faq-page-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--light-text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-page-question:hover { color: var(--gold-accent); }

.faq-page-question i {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--gold-accent);
  transition: transform 0.3s ease;
}

.faq-page-item.open .faq-page-question i {
  transform: rotate(180deg);
}

.faq-page-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-page-item.open .faq-page-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-page-answer p {
  color: var(--medium-gray);
  line-height: 1.85;
  margin: 0;
}

/* Media Queries */
@media screen and (max-width:768px) {
  .navbar { flex-direction: column; }
  .logo { margin-bottom:1rem; }
  .nav-links { flex-direction: column; text-align:center; }
  .nav-links li { margin: .5rem 0; }
  .hero h1 { font-size:2.5rem; }
  .hero p { font-size:1.2rem; }
  .about-content, .contact-container { flex-direction: column; }
  .gallery-item:nth-child(3n+1) { grid-row: span 1; }
}
