/* Reset CSS */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables CSS */
:root {
  --main-dark: #080808;
  --accent-color: #FF4D00;
  --text-light: #f0f0f0;
  --text-medium: #a0a0a0;
  --card-bg: rgba(25, 25, 25, 0.8);
  --card-bg-hover: rgba(35, 35, 35, 0.9);
  --border-radius: 10px;
  --gradient-orange: linear-gradient(45deg, #FF4D00 0%, #FFA800 100%);
  --gradient-violet: linear-gradient(45deg, #8A2BE2 0%, #c38cff 100%);
  --soundcloud-orange: #ff5500;
  --section-padding: 5rem 2rem;
  --transition-speed: 0.3s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--main-dark);
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

/* Amélioration de la sélection de texte */
::selection {
  background-color: var(--accent-color);
  color: var(--main-dark);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(12px);
  padding: 0 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.social-links a {
  display: inline-block;
  transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
  opacity: 0.8;
}

.social-links a:hover {
  transform: scale(1.15);
  opacity: 1;
}

.social-links img {
  width: 28px;
  height: 28px;
  filter: grayscale(30%);
  transition: filter var(--transition-speed) ease;
}

.social-links a:hover img {
  filter: grayscale(0%);
}

/* Main Container */
.presskit-container {
  max-width: 1200px;
  margin: 90px auto 0;
  padding: var(--section-padding);
}

/* Section avec animation d'entrée */
.presskit-section, .gallery-section, .booking-section, .conclusion-section {
  margin-bottom: 4rem;
  padding: 2.5rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSection 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

/* Keyframes pour l'animation d'entrée */
@keyframes fadeInSection {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header de la page */
.presskit-header {
  text-align: center;
  margin-bottom: 4rem;
}

.presskit-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 0.5rem;
  background: var(--gradient-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
}

.presskit-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.4;
}

/* Titres de section */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid;
  border-image: var(--gradient-violet) 1;
  display: inline-block;
}

.section-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.section-content p {
  margin-bottom: 1.2rem;
}

.section-content strong {
  color: #FFA800;
  font-weight: 600;
}

.section-content ul {
  list-style-position: outside;
  margin-left: 0;
  padding-left: 1.5rem;
  margin-top: 1.5rem;
  list-style-type: none;
}

.section-content li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.section-content li i.fa-check {
  position: absolute;
  left: 0;
  top: 5px;
  color: #4CAF50;
  font-size: 1em;
}

.section-content a {
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 1px dotted var(--accent-color);
  transition: all var(--transition-speed) ease;
}

.section-content a:hover {
  color: #FFA800;
  border-bottom-color: #FFA800;
}

/* Bio container avec image */
.bio-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}

.profile-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid;
  border-image: var(--gradient-violet) 1;
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
  transition: transform var(--transition-speed) ease;
}

.profile-image:hover {
  transform: scale(1.03);
}

/* Liste des genres musicaux */
.genre-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.genre-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(30, 30, 30, 0.6);
  border-radius: var(--border-radius);
  transition: transform var(--transition-speed) ease, background var(--transition-speed) ease;
}

.genre-item:hover {
  transform: translateY(-5px);
  background: rgba(40, 40, 40, 0.8);
}

.genre-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
}

/* Grille des highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-card {
  background: rgba(25, 25, 25, 0.7);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all var(--transition-speed) ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-card:hover {
  transform: translateY(-5px);
  background: rgba(35, 35, 35, 0.8);
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #8A2BE2;
}

.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* Grille des réseaux sociaux */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-card {
  background: rgba(25, 25, 25, 0.7);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all var(--transition-speed) ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-card:hover {
  transform: translateY(-5px);
  background: rgba(35, 35, 35, 0.8);
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.social-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.social-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
}

.social-handle {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* Section Booking */
.booking-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/banner.jpg') no-repeat center center/cover;
  padding: 4rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSection 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

.booking-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--gradient-orange);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 5px 15px rgba(255, 77, 0, 0.3);
}

.booking-btn i {
  font-size: 1em;
}

.booking-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 77, 0, 0.5);
}

/* Section Téléchargement */
.download-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.download-card {
  background: rgba(20, 20, 20, 0.8);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.download-card:hover {
  transform: translateY(-5px);
  background: rgba(30, 30, 30, 0.9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.download-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.download-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.download-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  color: var(--text-light);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-orange);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
}

.download-btn i {
  font-size: 1em;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 77, 0, 0.3);
}

/* Style pour les boutons désactivés */
.download-btn.disabled {
  background: grey;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

.download-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Section Conclusion */
.conclusion-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/banner.jpg') no-repeat center center/cover;
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSection 0.6s ease-out forwards;
  animation-delay: 0.4s;
}

.conclusion-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  color: #fff;
}

.conclusion-content {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-light);
}

.conclusion-content p {
  margin-bottom: 1rem;
}

/* Galerie Photos & Vidéos */
.gallery-section {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSection 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  aspect-ratio: 16 / 9;
  background-color: #1a1a1a;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(138, 43, 226, 0.4);
}

.gallery-item img,
.gallery-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

/* Footer */
.footer {
  position: relative;
  width: 100%;
  height: 180px;
  background: var(--main-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  margin-top: 2rem;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  text-align: center;
  padding: 1rem;
}

.footer-container iframe {
  height: calc(100% - 25px);
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0;
}

.footer-copyright {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.5rem;
  color: var(--text-light);
}

/* Media queries */
@media (max-width: 992px) {
  :root {
    --section-padding: 4rem 1.5rem;
  }
  
  .bio-container {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-image {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 1rem;
  }
  
  .presskit-title {
    font-size: 2.5rem;
  }
  
  .presskit-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .presskit-section, .gallery-section {
    padding: 1.5rem;
  }
  
  .booking-section,
  .conclusion-section {
    padding: 2rem 1rem;
  }
  
  .booking-title,
  .conclusion-title {
    font-size: 1.8rem;
  }
  
  .conclusion-content {
    font-size: 1rem;
  }
  
  .download-section,
  .highlights-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 1rem;
  }
  
  .presskit-title {
    font-size: 2rem;
  }
  
  .presskit-subtitle {
    font-size: 0.9rem;
  }
  
  .booking-btn,
  .download-btn {
    width: 100%;
    justify-content: center;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajout après la section .presskit-title */

.artist-name {
  font-size: clamp(4.5rem, 10vw, 7rem);
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1;
  margin: 0 auto 1rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #FF4D00 0%, #FFA800 33%, #8A2BE2 66%, #c38cff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 8s ease infinite;
  text-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.artist-tagline {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.4;
  position: relative;
}

.artist-tagline::after {
  content: '';
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: var(--gradient-violet);
  border-radius: 3px;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Ajout pour l'effet de pulsation sur l'image de profil */
.profile-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid;
  border-image: var(--gradient-violet) 1;
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  animation: pulse 3s infinite ease-in-out;
}

.profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.6);
  animation-play-state: paused;
}

@keyframes pulse {
  0% {
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
  }
  50% {
    box-shadow: 0 15px 35px rgba(255, 77, 0, 0.5);
  }
  100% {
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
  }
}

/* Amélioration de l'intro section */
.presskit-section:first-of-type {
  background: linear-gradient(rgba(8, 8, 8, 0.85), rgba(8, 8, 8, 0.95)), url('images/banner.jpg') no-repeat center center/cover;
  border: none;
  position: relative;
  overflow: hidden;
}

.presskit-section:first-of-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(138, 43, 226, 0.2) 0%, rgba(8, 8, 8, 0) 70%);
  z-index: 0;
}

.bio-container {
  position: relative;
  z-index: 1;
}