/* CSS in Customizer oder via Spectra Customizer einfügen */
.hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.background-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1rem;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hero-overlay p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.btn-primary {
  padding: 0.8rem 1.8rem;
  border: 2px solid white;
  color: white;
  background: transparent;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

/* Reduzierte Höhe des Hero-Videos */
.hero-video {
  position: relative;
  height: 65vh; /* vorher 100vh – jetzt angenehmer und kompakter */
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* ===== DEZENTES VIDEO-OVERLAY ===== */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25); /* Hauchdunkles Schwarz (25% Deckkraft) */
  z-index: 1; /* liegt über dem Video, aber unter dem Text */
}

/*HIER LESBAR ANFANG*/
/* ===== HERO-HEADLINE: Noch größer, noch kräftiger ===== */
.hero-overlay h1 {
  font-size: 4.5rem;                     /* Extrem groß für maximale Präsenz */
  font-weight: 900;                      /* Extra fett */
  color: #a94442;                        /* Dein Wunsch-Rot */
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Stärkerer Schatten für klaren Kontrast */
  margin-bottom: 1.2rem;
  letter-spacing: 1px;                   /* Etwas mehr Raum zwischen Buchstaben */
  line-height: 1.1;
}

/* ===== UNTERTITEL: Gut lesbar, freundlich betont ===== */
.hero-overlay p {
  font-size: 1.6rem;                     /* Noch größer */
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}
/*HIER LESBAR ENDE*/


/* Block 2 STAY SOFTHEARTED */
.about-section {
  padding: 6rem 2rem;
  background-color: #fdf8f6;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2f2f2f;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* NEU: Styling für das Bild */
.about-image img {
  width: 100%;
  border-radius: 16px; /* abgerundete Ecken */
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(.33,1.45,.44,1), box-shadow 0.3s;
  object-fit: cover;
}

/* Hover-Effekt: sanft zoomen und Schatten verstärken */
.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

/*Block 3 Tattoos*/
.tattoo-gallery {
  background-color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}
.gallery-heading h2 {
  font-size: 2.5rem;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.gallery-heading p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}
.gallery-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}
.tattoo-item {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.tattoo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 12px;
}
.tattoo-item:hover img {
  transform: scale(1.05);
}


/* Hover-Effekt: leichtes Zoomen */
.tattoo-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.gallery-btn-wrap {
  margin: 2.5rem 0 2rem 0;
  text-align: center;
}

/* === Block 4: Kunst === */

.art-section {
  padding: 5rem 2rem;
  background-color: #fff9f7;
  text-align: center;
}

.art-content h2 {
  font-size: 2.5rem;
  color: #2f2f2f;
  margin-bottom: 1rem;
}

.art-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.art-content img {
  max-width: 300px; /* Bild wird maximal 300px breit */
  width: 100%; /* Skaliert bei kleineren Bildschirmen */
  border-radius: 12px; /* Sanfte Rundung */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Leichter Schatten */

  /* Animation beim Hover vorbereiten */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.art-content img:hover {
  transform: scale(1.03) translateY(-4px); /* Zoom + leicht anheben */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12); /* Stärkerer Schatten beim Hover */
}

.art-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.art-images img {
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover-Effekt bleibt wie gehabt */
.art-images img:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}



/*Block 5 Gasttätowierer*/
.guests-info-section {
  background-color: #f8f3f1;
  padding: 5rem 2rem;
}
.guest-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.guest-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.guest-block.reverse {
  flex-direction: row-reverse;
}
.guest-block img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.guest-text {
  flex: 1;
}
.guest-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2f2f2f;
}
.guest-text p {
  font-size: 1.1rem;
  color: #555;
}

.guest-block img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.35s cubic-bezier(.33,1.45,.44,1), box-shadow 0.3s;
  object-fit: cover;
}

.guest-block img:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 32px rgba(0,0,0,0.17);
}

/*Block 6 News */
.news-section {
  background-color: #fdf8f6;
  padding: 5rem 2rem;
  text-align: center;
}
.news-container {
  max-width: 800px;
  margin: 0 auto;
}
.news-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2f2f2f;
}
.news-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Dünner Trennstrich zwischen Titel und Untertitel im Hero-Bereich */
.hero-divider {
  width: 80px;
  height: 2px;
  background-color: #ffffff; /* weiße Linie */
  margin: 15px auto;
  opacity: 0.7;
  border-radius: 1px;
}

/* Hintergrund aller Blöcke anpassen */
:root {
  --block-bg-1: #f7f2ec;   /* Helles, cremiges Weiß, super soft */
  --block-bg-2: #f3ebe6;   /* Sanftes Rosé-Beige, sehr dezent */
  --accent-rot: #b65e5a;   /* Dein schönes Rot für Headlines */
}

/* === Grundstruktur & Card-Optik für alle Inhaltsblöcke === */
.about-section,
.tattoo-section,
.art-section,
.guests-info-section,
.news-section {
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
  margin-bottom: 1.7rem;
  padding: 3.2rem 2rem;
  background: var(--block-bg-1);
}

/* === Wechselnde Hintergründe für alle Blocks (odd/even) === */
section:nth-of-type(odd) {
  background: var(--block-bg-1) !important;
}
section:nth-of-type(even) {
  background: var(--block-bg-2) !important;
}
section {
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
  margin-bottom: 1.7rem;
  padding: 3.2rem 2rem;
}

/* === Headlines aller Hauptblöcke im Rot === */
section h2, section h3,
.about-section h2,
.tattoo-section h2,
.art-section h2,
.guests-info-section h2,
.news-section h2 {
  color: var(--accent-rot) !important;
}

/* --- Abstand vor dem ERSTEN Block unter dem Hero --- */
.about-section,
section:nth-of-type(1) {
  margin-top: 2.2rem;
}

/* --- Optional: Zusätzlicher Abstand, falls Kunst zu nah an Tattoos ist --- */
.art-section,
section#block4 {
  margin-top: 1.3rem;
}

/* --- Responsive Anpassung für Mobile --- */
@media (max-width: 900px) {
  secti
 background: rgba(255, 255, 255, 0.2);
}

.home-info-col {
  transition: 
    box-shadow 0.22s cubic-bezier(.4,.01,.19,.99),
    transform 0.19s cubic-bezier(.4,.01,.19,.99);
}

/* Hover-Effekt: sanftes Anheben & Schatten */
.home-info-col:hover {
  box-shadow: 0 10px 32px rgba(180,94,94,0.14), 0 1.5px 9px rgba(120,40,40,0.07);
  transform: translateY(-4px) scale(1.018);
  z-index: 2;
}





.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}
.wp-block-uagb-image{display:flex}.wp-block-uagb-image__figure{position:relative;display:flex;flex-direction:column;max-width:100%;height:auto;margin:0}.wp-block-uagb-image__figure img{height:auto;display:flex;max-width:100%;transition:box-shadow 0.2s ease}.wp-block-uagb-image__figure>a{display:inline-block}.wp-block-uagb-image__figure figcaption{text-align:center;margin-top:0.5em;margin-bottom:1em}.wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__instructions{align-self:center}.wp-block-uagb-image--align-left{text-align:left}.wp-block-uagb-image--align-right{text-align:right}.wp-block-uagb-image--align-center{text-align:center}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;width:100vw;height:auto}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure img{height:auto;width:100% !important}.wp-block-uagb-image--align-wide .wp-block-uagb-image__figure img{height:auto;width:100%}.wp-block-uagb-image--layout-overlay__color-wrapper{position:absolute;left:0;top:0;right:0;bottom:0;opacity:0.2;background:rgba(0,0,0,0.5);transition:opacity 0.35s ease-in-out}.wp-block-uagb-image--layout-overlay-link{position:absolute;left:0;right:0;bottom:0;top:0}.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity:1}.wp-block-uagb-image--layout-overlay__inner{position:absolute;left:15px;right:15px;bottom:15px;top:15px;display:flex;align-items:center;justify-content:center;flex-direction:column;border-color:#fff;transition:0.35s ease-in-out}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.top-center,.wp-block-uagb-image--layout-overlay__inner.top-right{justify-content:flex-start}.wp-block-uagb-image--layout-overlay__inner.bottom-left,.wp-block-uagb-image--layout-overlay__inner.bottom-center,.wp-block-uagb-image--layout-overlay__inner.bottom-right{justify-content:flex-end}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.center-left,.wp-block-uagb-image--layout-overlay__inner.bottom-left{align-items:flex-start}.wp-block-uagb-image--layout-overlay__inner.top-right,.wp-block-uagb-image--layout-overlay__inner.center-right,.wp-block-uagb-image--layout-overlay__inner.bottom-right{align-items:flex-end}.wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{color:#fff;transition:transform 0.35s, opacity 0.35s ease-in-out;transform:translate3d(0, 24px, 0);margin:0;line-height:1em}.wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width:30%;border-top-width:2px;border-top-color:#fff;border-top-style:solid;margin-bottom:10px;opacity:0;transition:transform 0.4s, opacity 0.4s ease-in-out;transform:translate3d(0, 30px, 0)}.wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity:0;overflow:visible;color:#fff;transition:transform 0.45s, opacity 0.45s ease-in-out;transform:translate3d(0, 35px, 0)}.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-heading,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-separator,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-caption{opacity:1;transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1.05)}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{width:calc(100% + 40px) !important;max-width:none !important;transform:translate3d(-40px, 0, 0);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-grayscale img{filter:grayscale(0%);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-grayscale:hover img{filter:grayscale(100%)}.wp-block-uagb-image--effect-blur img{filter:blur(0);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-blur:hover img{filter:blur(3px)}
.uagb-block-1b4ce92d.wp-block-uagb-image{text-align: center;justify-content: center;align-self: center;}.uagb-block-1b4ce92d .wp-block-uagb-image__figure{align-items: center;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;align-self: center;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure img{width: px;height: auto;}.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-default figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay figure:hover img{box-shadow: 0px 0px 0 #00000070;}@media only screen and (max-width: 976px) {.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure img{width: px;height: auto;}}@media only screen and (max-width: 767px) {.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure img{width: px;height: auto;}}