@font-face {
  font-family: "Sansplomb";
  src: url("/static/fonts/SansPlomb-98.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad";
  src: url("/static/fonts/MyriadPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MyriadLight";
  src: url("/static/fonts/MyriadPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bleu: #2B2A5E;
  --orange: #ff5b1a;
  --turquoise: #1fcfc3;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body.page-detail-artiste {
  margin: 0;
  background: var(--bleu);
  color: white;
  font-family: Myriad, Arial, sans-serif;
}

/* HERO */

.concert-hero {
  min-height: 100vh;
  padding: 120px 24px 48px;
  background: var(--bleu);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  text-align: center;
  overflow: hidden;
}

.artist-photo-wrap {
  display: block;
  width: clamp(230px, 32vw, 390px);
  height: clamp(230px, 32vw, 390px);
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.artist-photo-wrap:hover {
  transform: scale(1.06) rotate(-2deg);
}

.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  transition: transform 0.35s ease;
}

.artist-photo-wrap:hover .artist-photo {
  transform: scale(1);
}

.concert-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concert-date {
  margin: 0 0 18px;
  font-family: Myriad, Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700;
  color: white;
}

.concert-title {
  margin: 0;
  font-family: Sansplomb, Impact, sans-serif;
  font-size: clamp(56px, 11vw, 150px);
  line-height: 0.9;
  text-transform: uppercase;
  color: white;
  letter-spacing: 1px;
}

.scroll-down {
  margin-top: 34px;
  color: white;
  text-decoration: none;
  font-size: 34px;
  animation: bounce 1.4s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

/* SECTIONS */

.section-white {
  background: white;
  color: var(--bleu);
  padding: 20px 8vw;
  text-align: center;
}

.section-white h2 {
  color: #2B2A5E;
  font-size: clamp(44px, 7vw, 60px);
  margin-bottom: 32px;

  }
.section-blue h2 {
  margin: 0 0 48px;
  font-family: Sansplomb, Impact, sans-serif;
  font-size: clamp(44px, 7vw, 90px);
  line-height: 0.95;
  text-align: center;
}

.lineup-box {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 48px;
  border: 1px solid rgba(2, 21, 137, 0.2);
  background: rgba(2, 21, 137, 0.04);
}

.lineup-box h2 {
  font-size: clamp(36px, 5vw, 58px);
  color: #2B2A5E;
  margin-bottom: 32px;
}

.lineup-box p {
  margin: 0;
  font-size: clamp(19px, 2vw, 24px);
  color: #2B2A5E;
  line-height: 1.55;
}

.bio-text {
  max-width: 1400px;
  margin: 0 auto;
  font-family: MyriadLight, Arial, sans-serif;
  font-size: clamp(23px, 2.6vw, 28px);
  color: #2B2A5E;
  line-height: 1.45;
  text-align: center;
}

.bio-text p {
  margin-bottom: 16px;
  color: #2B2A5E;
}

.section-blue {
  background: var(--bleu);
  color: white;
  padding: 70px 2vw;
  text-align: center;
}

.video-wrapper {
  max-width: 1066px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.infos-section p {
  margin: 0 auto;
  max-width: 1000px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
}

.infos-section strong {
  font-weight: 700;
  color: var(--bleu);
}

/* RESPONSIVE */

@media screen and (max-width: 768px) {
  .concert-hero {
    min-height: 82vh;
    padding: 96px 18px 42px;
    gap: 26px;
  }

  .artist-photo-wrap{
    width: min(68vw, 260px);
    height: min(68vw, 260px);
  }

  .concert-date{
    font-size: 20px;
    line-height: 1.25;
  }

  .concert-title{
    font-size: clamp(48px, 16vw, 78px);
    overflow-wrap: anywhere;
  }

  .section-white,
  .section-blue {
    padding: 48px 18px;
  }

  .lineup-box {
    padding: 28px 18px;
  }

  .bio-text {
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
  }
}
