/* Variables CSS */
:root {
  --primary-yellow: #FFD700;
  --secondary-yellow: #FFC700;
  --light-yellow: #FFF8DC;
  --dark-yellow: #DAA520;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --white: #FFFFFF;
  --gray-light: #F8F8F8;
  --gray-medium: #E5E5E5;
  --overlay-dark: rgba(0, 0, 0, 0.6);
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header et Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: var(--dark-yellow);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-item {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: width 0.3s ease;
}

.navbar-item:hover::after {
  width: 100%;
}

.navbar-contact {
  background: var(--primary-yellow);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  color: var(--text-dark);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.navbar-contact::after {
  display: none;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.navbar-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* Contenu principal */
.main {
  margin-top: 100px;
  min-height: calc(100vh - 100px);
}

/* Hero Section avec Slideshow */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--primary-yellow);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.2s both;
}

.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.slide-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  backdrop-filter: blur(5px);
}

.slide-btn:hover {
  background: rgba(255, 215, 0, 0.3);
}

.slideshow-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--primary-yellow);
}

/* Section Présentation */
.presentation-section {
  padding: 80px 0;
  background: var(--gray-light);
}

.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.presentation-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.presentation-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.presentation-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-yellow);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--dark-yellow);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
  background: var(--primary-yellow);
}

.btn-cta {
  background: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
  padding: 16px 40px;
}

.btn-cta:hover {
  background: var(--primary-yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Actualités */
.actualites-section {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-yellow);
}

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

.actualite-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.actualite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.actualite-card.upcoming {
  border-left: 4px solid var(--primary-yellow);
}

.actualite-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: var(--light-yellow);
  border-radius: 8px;
  min-width: 60px;
}

.actualite-date .month {
  font-weight: 600;
  color: var(--dark-yellow);
  font-size: 1.2rem;
}

.actualite-date .year {
  font-size: 0.9rem;
  color: var(--text-light);
}

.actualite-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.actualite-content .role {
  color: var(--dark-yellow);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.actualite-content .lieu {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Section Services */
.services-section {
  padding: 80px 0;
  background: var(--light-yellow);
}

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

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--dark-yellow);
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-link:hover {
  transform: translateX(5px);
}

/* Section CTA */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-yellow), var(--primary-yellow));
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--primary-yellow);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--primary-yellow);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-yellow);
  color: var(--text-dark);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page Biographie */
.bio-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--light-yellow), var(--white));
  text-align: center;
}

.bio-content {
  padding: 60px 0;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.bio-sidebar {
  position: sticky;
  top: 120px;
}

.bio-image {
  margin-bottom: 30px;
}

.bio-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bio-info {
  background: var(--gray-light);
  padding: 30px;
  border-radius: 10px;
}

.bio-info h3 {
  color: var(--dark-yellow);
  margin-bottom: 1rem;
}

.bio-info ul {
  list-style: none;
}

.bio-info li {
  margin-bottom: 0.8rem;
  padding-left: 20px;
  position: relative;
}

.bio-info li::before {
  content: '♪';
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
}

.bio-text h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.bio-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-light);
}

.timeline {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--gray-medium);
}

.timeline-item {
  margin-bottom: 2rem;
  padding-left: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--primary-yellow);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 14px;
  top: 15px;
  width: 2px;
  height: calc(100% + 10px);
  background: var(--gray-medium);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-date {
  color: var(--dark-yellow);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Page Galerie */
.galerie-section {
  padding: 80px 0;
}

.galerie-filters {
  text-align: center;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--gray-medium);
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--text-dark);
}

.galerie-grid {
  column-count: 3;
  column-gap: 20px;
}

.galerie-grid-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

@media (max-width: 900px) {
  .galerie-grid {
    column-count: 2;
  }
}

@media (max-width: 550px) {
  .galerie-grid {
    column-count: 1;
  }
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  break-inside: avoid;
  margin-bottom: 20px;
}

.galerie-item:hover {
  transform: scale(1.02);
}

.galerie-item img {
  width: 100%;
  height: auto;
  display: block;
}

.galerie-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.galerie-item:hover .galerie-item-overlay {
  transform: translateY(0);
}

.galerie-item-hidden {
  display: none;
}

/* Page Services détaillée */
.services-detail {
  padding: 80px 0;
}

.service-detail-card {
  background: var(--white);
  border-radius: 15px;
  padding: 60px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-card h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-detail-card h2::before {
  content: '';
  width: 5px;
  height: 40px;
  background: var(--primary-yellow);
}

.repertoire-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.repertoire-item {
  background: var(--gray-light);
  padding: 20px;
  border-radius: 10px;
  border-left: 3px solid var(--primary-yellow);
}

/* Page Répertoire - Tableau */
.repertoire-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.repertoire-table thead th {
  background: var(--light-yellow);
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 3px solid var(--primary-yellow);
}

.repertoire-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-medium);
  vertical-align: top;
}

.repertoire-table tbody tr:nth-child(even) td {
  background: var(--gray-light);
}

.repertoire-table tbody tr:hover td {
  background: var(--light-yellow);
}

.role-scene {
  color: var(--dark-yellow);
  font-weight: 700;
}

@media (max-width: 768px) {
  .repertoire-table {
    font-size: 0.85rem;
  }
  .repertoire-table thead th,
  .repertoire-table tbody td {
    padding: 8px 10px;
  }
}

/* Page Contact */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray-medium);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-yellow);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info {
  background: var(--light-yellow);
  padding: 40px;
  border-radius: 15px;
  height: fit-content;
}

.contact-info h3 {
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item h4 {
  color: var(--dark-yellow);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-info-item a:hover {
  color: var(--dark-yellow);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .navbar-toggle {
    display: flex;
  }

  .presentation-grid,
  .bio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}