/* --- Globale Variablen: Dark Premium Tattoo Theme --- */
:root {
  --color-bg: #0d0d0d;
  --color-primary: #ffffff;
  --color-secondary: #888888;
  --color-border: #222222;

  /* Typografie */
  --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-primary);
  position: relative;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.hero-title,
.artist-name,
.location-headline,
.booking-headline,
.faq-headline {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.site-footer {
  font-family: var(--font-mono);
  background-color: #050505;
  border-top: 1px solid var(--color-border);
}

/* --- Header Styling: Dark Premium Centered --- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  border-bottom: none;

  padding: 30px 40px;
  box-sizing: border-box;
}

/* Das 3-Spalten-Layout */
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-left {
  display: flex;
  justify-content: flex-start;
}

.header-center {
  display: flex;
  justify-content: center;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

/* --- Typografie & Links im Header --- */
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  max-height: 85px;
  width: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-secondary);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav a:hover {
  color: var(--color-primary);
}

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

/* --- Social Icons Rechts --- */
.header-socials-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-social {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.header-social:hover {
  transform: scale(1.1);
  color: var(--color-secondary);
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.menu-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s ease-in-out;
}

/* --- Responsive Design (Mobile Ansicht unter 900px) --- */
@media (max-width: 900px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-center {
    flex-grow: 1;
    justify-content: flex-start;
  }

  .header-right {
    gap: 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
  }

  /* Menu-Open State aus altem Code übernehmen, falls nicht vorhanden */
  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .main-nav a {
    font-size: 1.5rem;
  }

  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* --- Hero Video Background --- */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content.text-center {
  text-align: center;
  margin: 0 auto;
}
.hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.subheadline.mono-text {
  display: block;
  font-family: var(--font-mono);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  padding: 18px 40px;
  text-decoration: none;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #fff;
  color: #000;
}

/* --- Hero Video Background --- */

/* --- Modul: Artist About (Portfolio) --- */
.section-artist-about {
  padding: 120px 0;
  background-color: var(--color-bg);
  color: var(--color-primary);
}

.artist-about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

/* Das Portrait Styling */
.artist-image-wrapper {
  position: relative;
  overflow: hidden;
}

.artist-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  transition:
    filter 0.5s ease,
    transform 0.8s ease;
}

.artist-image-wrapper:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.03);
}

/* Die Texte */
.subheadline.mono-text {
  display: block;
  font-family: var(--font-mono);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.artist-name {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 15px 0;
}

.artist-styles {
  font-family: var(--font-mono);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-left: 2px solid var(--color-secondary);
  padding-left: 15px;
  margin-bottom: 40px;
}

.artist-bio {
  color: var(--color-secondary);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 50px;
}

.btn-primary {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  padding: 18px 40px;
  text-decoration: none;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #fff;
  color: #000;
}

/* Mobile Anpassungen */
@media (max-width: 900px) {
  .artist-about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .artist-name {
    font-size: 2.8rem;
  }

  .artist-image-wrapper img {
    filter: grayscale(80%); /* Auf Mobile nicht komplett s/w */
  }
}
/* --- Modul: Artist About (Portfolio) --- */

/* --- Modul: Tattoo Galerie (Masonry) --- */
.section-tattoo-gallery {
  padding: 120px 0;
  background-color: var(--color-bg);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-header h2 {
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 10px 0 0 0;
}

.tattoo-masonry-grid {
  column-count: 3;
  column-gap: 20px;
}

.tattoo-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background-color: #111;
}

.tattoo-item a {
  display: block;
}

.tattoo-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(80%) brightness(0.8);
  transition:
    filter 0.5s ease,
    transform 0.8s ease;
}

.tattoo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tattoo-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.02);
}

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

.tattoo-overlay svg {
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

@media (max-width: 900px) {
  .tattoo-masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .tattoo-masonry-grid {
    column-count: 1;
  }
}

/* Hilfsklasse Layouts */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Modul: Location & Studio --- */
.section-location {
  padding: 120px 0;
  background-color: #080808;
  color: var(--color-primary);
  border-top: 1px solid #141414;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  border: 1px solid var(--color-border);
}

.location-headline {
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 50px 0;
  text-align: center;
  width: 100%;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 50px;
}

.detail-block {
  border-left: 2px solid var(--color-secondary);
  padding-left: 20px;
}

.detail-label.mono-text {
  display: block;
  font-family: var(--font-mono);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.detail-block .text-formatted p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-primary);
}

/* Mobile Anpassung */
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .location-headline {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}

/* --- Modul: Location & Studio --- */

/* ==========================================================================
   MODUL: TATTOO BOOKING FORM
   ========================================================================== */
.section-booking {
  padding: 120px 0;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.booking-header {
  margin-bottom: 60px;
  text-align: center;
}

.booking-headline {
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 20px 0;
}

.booking-subtitle {
  color: var(--color-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.booking-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group {
  margin-bottom: 40px;
  position: relative;
}

/* Die Labels in Schreibmaschinen-Optik */
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

/* Cleane Eingabefelder (nur Rahmen unten) */
.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary);
  font-family: var(--font-main);
  font-size: 1.1rem;
  padding: 10px 0;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.form-control::placeholder {
  color: #333; /* Sehr dunkles Grau für Placeholders */
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--color-primary); /* Wird weiß beim Tippen */
}

.form-control.textarea {
  resize: vertical;
  min-height: 120px;
}

/* Fehlermeldungen */
.error-text {
  display: block;
  color: #ff4444;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-top: 8px;
  text-transform: uppercase;
}

/* Success & Error Banner */
.form-alert {
  padding: 20px;
  margin-bottom: 40px;
  border: 1px solid;
  font-family: var(--font-mono);
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.form-alert.success {
  border-color: #4caf50;
  color: #4caf50;
}

.form-alert.error {
  border-color: #ff4444;
  color: #ff4444;
}

.form-submit {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   FOOTER, LIGHTBOX & BACK TO TOP
   ========================================================================== */

/* --- Footer Layout --- */
.site-footer {
  font-family: var(--font-mono); /* Die gewünschte Schreibmaschinen-Schrift */
  background-color: #050505; /* Etwas dunkler als der restliche Hintergrund */
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px 0;
  color: var(--color-secondary);
  font-size: 0.85rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

/* Footer Typografie & Links */
.footer-logo {
  color: var(--color-primary);
  font-family: var(--font-main);
  font-weight: 300; /* Feine Schrift wie im Hero */
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.footer-headline {
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px 0;
  font-size: 0.9rem;
  font-weight: normal;
}

.footer-text p {
  margin: 0 0 10px 0;
  line-height: 1.6;
}

.footer-text a,
.footer-links a,
.footer-legal a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-text a:hover,
.footer-links a:hover,
.footer-legal a:hover {
  color: var(--color-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

/* Footer Socials */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  color: var(--color-primary);
  display: flex;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  color: var(--color-secondary);
}

/* Footer Bottom (Copyright & Impressum) */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-primary);
  color: #000;
}

/* --- Lightbox (Großansicht der Galerie) --- */
#custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#custom-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--color-primary);
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  font-family: var(--font-main);
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

#lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* --- Mobile Anpassungen --- */
@media (max-width: 900px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-text p {
    margin: 0 auto 10px auto;
  }

  .footer-text a {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

.section-tattoo-gallery {
  background-color: #080808;
  border-top: 1px solid #141414;
}

/* ==========================================================================
   MODUL: GOOGLE REVIEWS (Dark Premium Tattoo Style)
   ========================================================================== */
.section-reviews {
  padding: 120px 0;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.reviews-header {
  margin-bottom: 60px;
  text-align: center;
}

.reviews-header h2 {
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 20px 0;
  color: var(--color-primary);
}

.reviews-header .subheadline {
  display: block;
  font-family: var(--font-mono);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
/* --- Slider Layout --- */
.reviews-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Die Slider-Spur (Track) */
.reviews-slider-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
  padding: 40px 40px;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.reviews-slider-track::-webkit-scrollbar {
  display: none;
}

/* --- Review Karte --- */
.review-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: center;
  background-color: #080808;
  border: 1px solid var(--color-border);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Der Avatar (Initialen) */
.review-avatar {
  width: 45px;
  height: 45px;
  background-color: transparent;
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.review-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.review-author {
  font-family: var(--font-main);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.review-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-secondary);
}

/* --- Sterne --- */
.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-stars svg[fill="#e0e0e0"] {
  fill: #222 !important;
}

/* --- Text --- */
.review-text {
  font-family: var(--font-main);
  color: var(--color-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- Pfeil-Buttons  --- */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--color-primary);
  color: #000;
}

.slider-btn.prev-btn {
  left: 0;
}

.slider-btn.next-btn {
  right: 0;
}

/* --- Rechtlicher Disclaimer --- */
.review-disclaimer {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Mobile & Tablet Anpassungen --- */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .reviews-header h2 {
    font-size: 2.5rem;
  }

  .review-card {
    flex: 0 0 85%;
  }

  .reviews-slider-track {
    gap: 20px;
    padding: 40px 20px;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );
  }
}

/* ==========================================================================
   MODUL: FAQ (Dark Premium Tattoo Style)
   ========================================================================== */
.section-faq {
  padding: 120px 0;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-headline {
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 60px 0;
  text-align: center;
  color: var(--color-primary);
}

/* --- Das Akkordeon (Nur Linien, keine Boxen) --- */
.faq-accordion {
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 30px 0;
  color: var(--color-primary);
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-secondary);
}

/* --- Das animierte Plus/Minus Icon --- */
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 20px;
}

/* Horizontale Linie (Minus) */
.faq-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateY(-50%);
}

/* Vertikale Linie (Zusammen mit Minus = Plus) */
.faq-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: currentColor;
  transform: translateX(-50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* --- Die Antwort --- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.4s ease;
  opacity: 0;
}

.faq-answer-inner {
  padding-bottom: 30px;
  color: var(--color-secondary);
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.6;
}

/* Sichtbar machen beim Klicken */
.faq-item.is-open .faq-answer {
  max-height: 1000px;
  opacity: 1;
}

/* --- Mobile Anpassungen --- */
@media (max-width: 768px) {
  .faq-headline {
    font-size: 2.5rem;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 20px 0;
  }
}

/* ==========================================================================
   GLOBALE MOBILE SCHRIFTGRÖßEN-KORREKTUR
   ========================================================================== */
@media (max-width: 768px) {
  /* Hero Sektion */
  .hero-title {
    font-size: 3.5rem;
  }

  /* Galerie */
  .gallery-header h2 {
    font-size: 2.5rem;
  }

  /* Booking */
  .booking-headline {
    font-size: 2.5rem;
  }

  .container {
    padding: 0 15px;
  }
}

/* ==========================================================================
   KORREKTUR: KEINE TRENNSTRICHE IN ÜBERSCHRIFTEN
   ========================================================================== */
h1,
h2,
h3,
h4,
.hero-title,
.artist-name,
.location-headline,
.booking-headline,
.faq-headline {
  -webkit-hyphens: none !important;
  hyphens: none !important;
}

/* ==================================================

/* ==========================================================================
   MOBILE TATTOO GALERIE (Swipe Slider)
   ========================================================================== */
@media (max-width: 768px) {
  .section-tattoo-gallery .container {
    padding: 0;
    max-width: 100%;
  }

  .section-tattoo-gallery .gallery-header {
    padding: 0 20px;
  }

  .tattoo-masonry-grid {
    column-count: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;

    padding: 10px 20px 40px 20px;

    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );
  }

  /* Scrollbar verstecken */
  .tattoo-masonry-grid::-webkit-scrollbar {
    display: none;
  }

  .tattoo-item {
    break-inside: auto;
    margin-bottom: 0;

    flex: 0 0 75%;
    scroll-snap-align: center;
  }
}

/* ==========================================================================
   GALERIE SLIDER BUTTONS (Nur Mobile)
   ========================================================================== */
/* Auf Desktop unsichtbar, da wir dort ein Masonry-Grid haben */
.gallery-slider-btn {
  display: none;
}

@media (max-width: 768px) {
  .gallery-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  /* Pfeile anzeigen und stylen */
  .gallery-slider-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
  }

  .gallery-slider-btn:hover {
    background: var(--color-primary);
    color: #000;
  }

  /* Leicht nach innen gerückt, damit sie gut klickbar über den Bildern schweben */
  .gallery-prev-btn {
    left: 10px;
  }

  .gallery-next-btn {
    right: 10px;
  }
}
