.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

/* Überschrift */
.hero-title {
  position: absolute;
  color: rgb(0, 0, 0);
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-50px);
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

.hero-slide.active .hero-title {
  opacity: 1;
  transform: translateX(0);
}

/* Verschiedene Positionen */
.top-left { 
    top: 15%; left: 15%; 
    text-align: right;
}
.center { 
    top: 20%; left: 15%; 
    transform: translate(-50%, -50%); }
.bottom-right { bottom: 10%; right: 1.5%; }

/* fade-in von links oder rechts */
.hero-slide[data-fade="left"] .hero-title {
  animation-name: fadeInLeft;
}

.hero-slide[data-fade="right"] .hero-title {
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Pfeile */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s;
  
}

.hero-prev:hover,
.hero-next:hover {
  color: rgba(255,176,0,.95);

}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.thinn-text{
    font-weight: 100;
}

body {
    font-family: "Oswald", sans-serif;
    font-style: normal;
    margin: 0;
    
}

h1{
    font-weight: 400;
}

h2 {
    font-weight: 400;
}

.intro-salsa-section {
  padding: 3rem 2rem;
  background: #ffffff;
}

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

/* Links */
.intro-salsa-left {
    text-align: right;
}

.intro-salsa-left h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  text-transform: uppercase;
}

/* Rechts */
.intro-salsa-right h3 {
  font-size: 1.4rem;
  color: #e63946;
  margin-bottom: 1rem;
  font-weight: 600;
}

.intro-salsa-right p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  color: #222;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .intro-salsa-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-salsa-left,
  .intro-salsa-right {
    text-align: center;
  }

  .intro-salsa-right p {
    margin: 0 auto;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Button: nur Position + Fade-In */
/* =========================
   HERO BUTTON POSITION
========================= */

.hero-btn{
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;

  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

/* Nur aktiver Slide klickbar */
.hero-slide:not(.active) .hero-btn{
  pointer-events: none;
  opacity: 0;
  animation: none;
}

/* optional: wenn Slide nicht aktiv ist, Klicks aus */
.hero-slide:not(.active) .hero-btn{
  pointer-events: none;
  opacity: 0;
  animation: none;
}

/* nur im aktiven Slide sichtbar */
.hero-slide:not(.active) .hero-btn {
  display: none;
}

@keyframes fadeUpHeroBtn {
  from { opacity: 0; transform: translate(-50%, 25px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* =========================
   CTA GHOST BUTTON
========================= */

.cta-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;

  padding: .95rem 1.1rem;

  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  white-space: nowrap;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.cta-ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.26);
}

/* =========================
   CTA PRIMARY BUTTON
========================= */

.cta-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;

  padding: .95rem 1.25rem;

  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  white-space: nowrap;

  background: linear-gradient(135deg, #ff3b30, #ffb000);
  color: #1b0b0d;

  border: none;

  box-shadow: 0 12px 28px rgba(255,59,48,.18);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.cta-primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 44px rgba(255,59,48,.24);
}

.hero-slide {
  pointer-events: none;
}

.hero-slide.active {
  pointer-events: auto;
}

/* =========================
   IMAGE LINK SECTION
========================= */

.image-links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 40vh;
}

/* Karte */
.image-link-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Bild */
.image-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Overlay */
.image-link-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(0px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

.image-link-overlay h3 {
  color: white;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  margin: 0 0 0 20px;
  padding-bottom: 1rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.image-link-overlay p {
  display: block;
  color: white;
  font-size: clamp(0.7rem, 1vw, 1.4rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  margin: 0 0 1rem 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Hover Effekt */
.image-link-card:hover img {
  transform: scale(1.08);
  filter: blur(2px);
}

.image-link-card:hover .image-link-overlay {
  background: rgba(0, 0, 0, 0.296);
  backdrop-filter: blur(1px);
}

.image-link-card:hover h3 {
  transform: scale(1.08);
  opacity: 1;
}

.image-link-card:hover p {
  transform: scale(1.03);
  opacity: 1;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .image-links-section {
    grid-template-columns: 1fr;
    height: auto;
  }

  .image-link-card {
    height: 35vh;
  }
}

