* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #09041f;
  color: white;
  overflow-x: hidden;
}

.home-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 4, 35, .35), rgba(10, 4, 35, .95)),
    url("images/concert.jpg") center/cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
 
}




.hero-center {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 7% 90px;
}

/* BLOC DATE + LOGO */

.hero-brand {
  position: absolute;
  top: clamp(18px, 2.8vw, 42px);
  left: clamp(0px, 1vw, 15px);

  display: flex;
  align-items: flex-start;
  gap: clamp(0px, 0.6vw, 12px);

  z-index: 20;
}

/* LOGO */
.split-logo{
  width: clamp(170px,28vw,420px);
  aspect-ratio:1;
  position:relative;
  background:url("images/pef.png") center/contain no-repeat;
  opacity:0;
  --glow:0;
  --bright:.7;

  filter: brightness(var(--bright));
}

.split-logo::before{
  content:"";
  position:absolute;
  inset:22%;
  border-radius:50%;
  z-index:-1;

  background:radial-gradient(
    circle,
    rgba(132,219,65,.55) 0%,
    rgba(132,219,65,.22) 38%,
    transparent 70%
  );

  filter: blur(28px);
  opacity:var(--glow);
  pointer-events:none;
}
.split-logo.neon-alive{
  animation: neonIdle 4.5s infinite;
}

@keyframes neonIdle{
  0%, 100%{
    opacity:1;
    --glow:.55;
    --bright:1.08;
  }

  92%{
    opacity:1;
    --glow:.55;
    --bright:1.08;
  }

  94%{
    opacity:.82;
    --glow:.25;
    --bright:.8;
  }

  95%{
    opacity:1;
    --glow:.9;
    --bright:1.35;
  }

  96%{
    opacity:.88;
    --glow:.35;
    --bright:.9;
  }

  98%{
    opacity:1;
    --glow:.6;
    --bright:1.1;
  }
}
/* DATE */

.hero-date-vc {
  position: relative;

  margin-top: 30px;
  margin-left: clamp(-70px, -4vw, -25px);

  text-align: left;
  text-transform: uppercase;
  color: white;

  opacity: 0;
  animation: dateReveal .8s ease forwards;
  animation-delay: 2s;
}

.hero-date-vc span {
  display: block;
  font-size: clamp(.48rem, .75vw, .72rem);
  font-weight: 900;
  letter-spacing: .34em;
  color: #84db41;
  margin-bottom: clamp(6px, .8vw, 10px);
}

.hero-date-vc strong {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(6px, 1vw, 14px);

  font-size: clamp(.85rem, 1.75vw, 2rem);
  font-weight: 900;
  letter-spacing: .08em;
  color: white;
}

.hero-date-vc strong b {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: clamp(28px, 3.5vw, 54px);
  height: clamp(26px, 3vw, 44px);

  border: clamp(2px, .25vw, 3px) solid #84db41;
  color: #84db41;

  transform: rotate(-7deg);
  font-size: clamp(1rem, 1.8vw, 2rem);
  line-height: 1;
}

.hero-date-vc em {
  display: block;
  margin-top: clamp(7px, 1vw, 12px);

  font-style: normal;
  font-size: clamp(.48rem, .75vw, .72rem);
  font-weight: 800;
  letter-spacing: .24em;
  color: rgba(255,255,255,.75);
}
.home-hero::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:200px;

    z-index:3;
    pointer-events:none;

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

    background: linear-gradient(
        to bottom,
        rgba(9,4,31,0),
        rgba(9,4,31,.25) 35%,
        rgba(9,4,31,.65) 65%,
        #09041f 100%
    );

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 25%,
        black
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        black 25%,
        black
    );
}

/* COUNTDOWN */
.countdown-bottom {
  position: absolute;
  bottom: clamp(70px, 10vh, 130px);
  left: 0;
  width: 100%;
}

.countdown-inline {
  width: 100%;
  margin-top: 34px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  opacity: 0;
  animation: countdownReveal .8s ease forwards;
  animation-delay: 2s;
}

.countdown-inline span {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 85px;
  color: rgba(255,255,255,.65);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.countdown-inline strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

/* BOUTONS */
.main-btn,
.second-btn {
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.main-btn {
  background: linear-gradient(135deg, #ff3d7f, #ff9f1c);
  color: white;
  box-shadow: 0 18px 45px rgba(255, 61, 127, .35);
}

.second-btn {
  color: white;
  border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
}

/* PROGRAMMATION */
.lineup-home {
  background: #09041f;
}

.section-title {
  padding: 120px 8% 80px;
}

.section-title span {
  color: #84db41;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 700;
}

.section-title h2 {
  margin-top: 15px;
  font-size: clamp(2rem,5vw,4.5rem);
}

.home-band {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.band-1 {
  background: url("images/UPGDC.jpg") center center/cover no-repeat;
}

.band-2 {
  background: url("images/sidi.jpg") center center/cover no-repeat;
}

.band-3 {
  background: url("images/lesgenoux.jpg") center center/cover no-repeat;
}

.band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.8));
}

.band-content {
  position: absolute;
  left: 8%;
  bottom: 80px;
  z-index: 2;
}

.band-content span {
  font-size: 1rem;
  color: #ff9f1c;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.band-content h3 {
  font-size: clamp(3rem,8vw,7rem);
  line-height: .9;
  text-transform: uppercase;
}

/* FESTIVAL */
.festival-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  align-items: stretch;
}

.story-image {
  min-height: 620px;
  background: url("images/pefaccueil.jpg") center top/cover no-repeat;
}

.story-text {
  background: #130825;
  padding: 45px 100px 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.story-text span {
  color: #ff9f1c;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.story-text h2 {
  margin: 25px 0;
  font-size: clamp(2rem,4vw,4rem);
}

.story-text p {
  line-height: 1.8;
  color: rgba(255,255,255,.8);
}

.story-text a {
  margin-top: 40px;
  color: white;
  font-weight: 700;
}

/* BILLETTERIE */
.home-ticket {
  padding: 150px 8%;
  background: #09041f;
}

.ticket-inner {
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.ticket-prices{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin:70px 0 60px;
}

.price-card{
    background:#130825;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-8px);
    border-color:#ff9f1c;
}

.price-card small{
    display:block;
    color:#ff9f1c;
    letter-spacing:.18em;
    font-weight:700;
    margin-bottom:15px;
}

.price-card strong{
    display:block;
    font-size:4rem;
    line-height:1;
    margin-bottom:18px;
    color:white;
}

.price-card p{
    color:rgba(255,255,255,.75);
    line-height:1.6;
}

.price-card.featured{
    border:2px solid #84db41;
    transform:rotate(-2deg);
}

.price-card.featured strong{
    color:#84db41;
}

.ticket-inner span {
  color: #ff9f1c;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.ticket-inner h2 {
  font-size: clamp(4rem,10vw,8rem);
  margin: 20px 0;
}

.ticket-inner p {
  margin-bottom: 40px;
  color: rgba(255,255,255,.75);
}

.ticket-inner a {
  display: inline-block;
  padding: 18px 35px;
  background: #84db41;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

a:focus-visible {
  outline: 3px solid #ff9f1c;
  outline-offset: 4px;
}

/* ANIMATIONS */
@keyframes dateReveal {
  to {
    opacity: 1;
  }
}

@keyframes assembleLogo {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes countdownReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (max-width:700px) {
  .hero-center {
    padding: 160px 7% 60px;
  }

  .ticket-prices {
    grid-template-columns: 1fr;
  }

  .hero-brand {
    top: clamp(20px, 6vw, 45px);
    left: clamp(12px, 4vw, 24px);
    gap: clamp(0px, 1vw, 6px);
  }

  .split-logo {
    width: clamp(145px, 42vw, 210px);
  }

  .hero-date-vc {
    margin-top: clamp(0px, 2vw, 12px);
    margin-left: clamp(-30px, -3vw, -15px);
  }

  .hero-date-vc strong {
    font-size: clamp(.72rem, 3.2vw, 1rem);
  }

  .hero-date-vc strong b {
    width: clamp(24px, 7vw, 34px);
    height: clamp(22px, 6vw, 30px);
    font-size: clamp(.9rem, 4vw, 1.2rem);
  }

  .hero-date-vc span,
  .hero-date-vc em {
    font-size: clamp(.42rem, 2vw, .55rem);
  }

  .countdown-bottom {
    bottom: clamp(95px, 14vh, 160px);
  }

  .countdown-inline {
    gap: 10px;
    transform: scale(.85);
    transform-origin: center;
    font-size: .68rem;
  }

  .festival-story {
    grid-template-columns: 1fr;
  }

  .story-image {
    height: 350px;
    min-height: 350px;
  }

  .story-text {
    padding: 60px 30px;
  }

  .home-band {
    height: 55vh;
  }
}