body {
  margin: 0;
  background: #09041f;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}

.prog-hero {
  min-height: 65vh;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,61,127,.22), transparent 32%),
    linear-gradient(rgba(9,4,31,.35), rgba(9,4,31,.10)),
    url("images/progV2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 150px 8% 110px;
}
.prog-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 180px;

  background: linear-gradient(
    transparent,
    #09041f
  );
}

.prog-hero-content {
  max-width: 900px;
  position: relative;
  z-index:2;
}

.prog-hero-content span {
  display: inline-block;
  background: #84db41;
  padding: 8px 24px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-2deg);
  color: #180ea5;
  letter-spacing: .04em;
}
.prog-intro span,
.prog-info span,
.prog-ticket span {
  color: #84db41;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .85rem;
}

.prog-hero-content h1 {
  margin: 18px 0;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  line-height: .85;
  letter-spacing: -.06em;
  text-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.prog-hero-content p {
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.prog-page {
  background:
    linear-gradient(rgba(9,4,31,.85), rgba(9,4,31,.80)),
    url("images/fondprog.png") center center / cover fixed;
}

.prog-intro {
  padding: 100px 8% 40px;
}

.prog-intro h2 {
  margin-top: 15px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.prog-timeline {
  padding: 30px 8% 100px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.prog-card {
  display: grid;
  grid-template-columns: 130px 1.15fr 1fr;
  align-items: center;
  gap: 35px;
  position: relative;
}


.prog-card:last-child::before {
  display: none;
}

.prog-hour {
  background: none;
  box-shadow: none;
  width: auto;
  height: auto;

  color: #84db41;

  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;

  letter-spacing: -.08em;
  transform: rotate(-3deg);
  transition: transform .35s ease;
   z-index: 3;
}

.prog-image {
  height: 430px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #130825;
  overflow: hidden;
  transition: transform .45s ease, filter .45s ease;
  position: relative;
}

.prog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.45));
}

.prog-info {
  padding: 20px;
  transform: rotate(-2deg);
}

.prog-info h3 {
  margin: 10px 0 20px;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: -.07em;
}

.prog-info p {
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

.prog-card.reverse {
  grid-template-columns: 130px 1fr 1.15fr;
}

.prog-card.reverse .prog-image {
  order: 3;
}

.prog-card.reverse .prog-info {
  order: 2;
}

.prog-ticket {
  margin: 0 8% 100px;
  padding: 45px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,61,127,.95), rgba(255,159,28,.9));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 35px 80px rgba(255,61,127,.22);
}

.prog-ticket h2 {
  margin: 10px 0;
  font-size: clamp(2rem, 4vw, 4rem);
  text-transform: uppercase;
  line-height: .95;
}

.prog-ticket p {
  color: rgba(255,255,255,.85);
}

.prog-ticket a {
  flex-shrink: 0;
  background: white;
  color: #111;
  padding: 17px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
}

.prog-hero-content span,
.prog-hero-content h1,
.prog-hero-content p,
.prog-intro,
.prog-card,
.prog-ticket {
  opacity: 0;
  animation: progReveal .8s ease forwards;
}

.prog-hero-content span {
  animation-delay: .1s;
}

.prog-hero-content h1 {
  animation-delay: .25s;
}

.prog-hero-content p {
  animation-delay: .4s;
}

.prog-intro {
  animation-delay: .55s;
}

.prog-card:nth-child(1) {
  animation-delay: .7s;
}

.prog-card:nth-child(2) {
  animation-delay: .85s;
}

.prog-card:nth-child(3) {
  animation-delay: 1s;
}

.prog-ticket {
  animation-delay: 1.15s;
}

.prog-card:hover .prog-image {
  transform: scale(1.025) rotate(-1deg);
  filter: brightness(1.08);
}

.prog-card:hover .prog-hour {
  transform: rotate(-6deg) translateY(-6px);
}

.prog-ticket a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
}
.teaser-link {
  margin-top: 28px;
  width: min(100%, 430px);
  height: 155px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  transform: rotate(1.5deg);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.teaser-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,61,127,.35), rgba(255,159,28,.18)),
    linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.15));
  z-index: 1;
}

.teaser-link::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,.35),
    transparent 65%
  );
  transform: translateX(-80%) rotate(12deg);
  transition: transform .7s ease;
  z-index: 2;
}

.teaser-label {
  position: absolute;
  left: 22px;
  bottom: 44px;
  z-index: 3;
  color: white;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.teaser-link small {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 3;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.teaser-play {
  position: absolute;
  right: 22px;
  top: 50%;
  z-index: 3;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 0 rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: playPulse 1.8s infinite;
}

.teaser-play span {
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #ff3d7f;
}

.teaser-link:hover {
  transform: rotate(0deg) scale(1.035);
  filter: brightness(1.08);
  box-shadow: 0 35px 85px rgba(255,61,127,.25);
}

.teaser-link:hover::after {
  transform: translateX(80%) rotate(12deg);
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,255,255,.35);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255,255,255,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}


@keyframes progReveal {
  from {
    opacity: 0;
    transform: translateY(45px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  }



@media (max-width: 900px) {
  .prog-card,
  .prog-card.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prog-hour {
    width: auto;
    height: auto;
    border-radius: 999px;
    padding: 12px 22px;
    justify-self: start;
  }

  .prog-card.reverse .prog-image,
  .prog-card.reverse .prog-info {
    order: initial;
  }

  .prog-image {
    height: 320px;
  }

  .prog-info {
    padding: 30px;
  }

  .prog-ticket {
    flex-direction: column;
    align-items: flex-start;
  }
 .prog-hero {
    min-height: auto;
    padding: 115px 7% 55px;
    align-items: flex-start;
  }

  .prog-hero-content {
    max-width: 100%;
  }

  .prog-hero-content span {
    font-size: .72rem;
    letter-spacing: .08em;
    padding: 7px 16px;
  }

  .prog-hero-content h1 {
    font-size: clamp(3rem);
    margin: 12px 0 6px;
  }

  .prog-hero-content p {
    font-size: .95rem;
    margin: 0;
  }

  .prog-intro {
    padding: 20px 7% 15px;
  }

  .prog-intro h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    margin: 10px 0 0;
  }

  .prog-timeline {
    padding: 20px 7% 70px;
    gap: 42px;
  }

  .prog-info h3 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .prog-ticket {
    margin: 0 7% 70px;
    padding: 30px;
  }
  
  .teaser-link {
    width: 100%;
    height: 145px;
    border-radius: 22px;
  }
}