/* Pinocchio Production - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* Base styles */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
}

.bg-image {
  background-image: url('/images/bande.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

.bg-image-cat {
  background-image: url('/images/background_cat.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Typography - Titres decoratifs en Sacramento, texte en police normale */
.big {
  font-family: 'Sacramento', cursive;
  font-size: 4rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.big-1 {
  font-family: 'Sacramento', cursive;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Texte de contenu - police normale et lisible */
.card-text,
.card-body p,
p.card-text,
body p,
ul,
li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  font-size: 1rem;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', Arial, sans-serif;
}

h3 {
  font-size: 1.2rem;
  margin: 0;
}

h2 {
  font-size: 1.4rem;
  margin: 0;
}

h5.card-title {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Navbar Modern - Couleurs crème/caramel */
.navbar {
  padding: 10px 30px;
  background: linear-gradient(135deg, #c79b78 0%, #d4a574 100%) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(199, 155, 120, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 80px;
}

.navbar-nav {
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 10px;
}

.navbar-nav .nav-item {
  margin: 0 8px;
}

.navbar-nav .nav-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
  border-radius: 5px;
  color: #3a2a1a !important;
}

.navbar-nav .nav-link:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link h2,
.navbar-nav .nav-link h3 {
  font-size: 0.95rem !important;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-brand {
  padding: 0;
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.navlink-logo {
  height: 70px;
  width: auto;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.navlink-logo:hover {
  transform: scale(1.05);
}

/* Logo responsive sur mobile */
@media (max-width: 576px) {
  .navlink-logo {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
  }

  .navbar {
    padding: 8px 10px;
    min-height: 60px;
  }

  .navbar-brand {
    margin-right: 10px;
    max-width: calc(100% - 60px);
  }
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  padding: 10px 0;
  margin-top: 10px;
}

.dropdown-item {
  padding: 12px 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #c79b78 0%, #b08968 100%);
  color: white !important;
  padding-left: 30px;
}

.navbar-toggler {
  border: 2px solid rgba(255,255,255,0.5);
  padding: 8px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Espace pour la navbar fixe */
body.bg-image {
  padding-top: 80px;
}

/* Hero Section */
.hero-section {
  padding: 100px 20px 60px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-text {
  padding-right: 40px;
}

.hero-title {
  font-family: 'Sacramento', cursive;
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #5a4030;
  margin-bottom: 25px;
}

.hero-description {
  font-size: 1.2rem;
  color: #6a5040;
  margin-bottom: 35px;
  line-height: 1.8;
}

.btn-hero {
  background: linear-gradient(135deg, #c79b78 0%, #b08968 100%);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(199, 155, 120, 0.4);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(199, 155, 120, 0.6);
  color: white;
  text-decoration: none;
}

.hero-video {
  padding-left: 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* Gallery Section */
.gallery-section {
  padding: 40px 0;
}

/* Titres de section */
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Bloc principal des ateliers cinema */
.ateliers-main-block {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 30px auto;
  gap: 30px;
  padding: 0 20px;
  align-items: center;
}

.ateliers-carousel-container {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.ateliers-content-container {
  flex: 1;
  min-width: 300px;
}

.ateliers-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
}

.ateliers-info h4 {
  text-align: center;
  margin-bottom: 20px;
  color: #4a3728;
}

.ateliers-info p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Section Ateliers Cinema - Layout principal */
.ateliers-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  align-items: flex-start;
}

.ateliers-gallery {
  flex: 0 0 400px;
  position: sticky;
  top: 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}

.gallery-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item.large img {
  height: 200px;
}

.ateliers-content {
  flex: 1;
}

.ateliers-section {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
}

.ateliers-section h4 {
  color: #4a3728;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.ateliers-section p {
  line-height: 1.7;
  margin-bottom: 12px;
}

.ateliers-section ul {
  margin: 10px 0;
  padding-left: 20px;
}

.ateliers-section ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Responsive ateliers */
@media (max-width: 992px) {
  .ateliers-container {
    flex-direction: column;
  }

  .ateliers-gallery {
    flex: none;
    width: 100%;
    position: static;
  }

  .gallery-grid {
    max-width: 500px;
    margin: 0 auto;
  }

  .gallery-item img {
    height: 100px;
  }

  .gallery-item.large img {
    height: 160px;
  }
}

/* Carousel principal */
#mainCarousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#mainCarousel .carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

#mainCarousel .carousel-control-prev,
#mainCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  opacity: 0.7;
}

#mainCarousel .carousel-control-prev {
  left: 10px;
}

#mainCarousel .carousel-control-next {
  right: 10px;
}

#mainCarousel .carousel-control-prev:hover,
#mainCarousel .carousel-control-next:hover {
  opacity: 1;
}

/* Carousel link */
.carousel-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-link:hover {
  transform: scale(1.02);
}

/* Content blocks */
.content-block {
  padding: 40px 20px;
}

.content-text {
  padding: 20px;
}

.content-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.content-text ul {
  margin: 15px 0;
  padding-left: 20px;
}

.content-text ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Contact block */
.contact-block {
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
}

.contact-block h5 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.contact-block p {
  margin-bottom: 15px;
}

/* Footer section */
.footer-section {
  padding: 40px 20px 60px;
}

/* Content sections */
.content-section {
  padding: 60px 20px;
  scroll-margin-top: 80px; /* Pour compenser la navbar fixe */
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

.team-member {
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #c79b78;
}

.team-member h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4a3728;
  margin-bottom: 5px;
}

.team-member .role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #c79b78;
  margin-bottom: 5px;
}

.team-member .desc {
  font-size: 0.8rem;
  color: #6a5a4a;
  margin: 0;
}

/* Charte block */
.charte-block {
  max-width: 800px;
  margin: 30px auto;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.charte-block h3 {
  text-align: center;
  color: #4a3728;
  margin-bottom: 20px;
}

.charte-block > p {
  text-align: center;
  color: #5a4a3a;
  margin-bottom: 30px;
}

.charte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.charte-item {
  background: linear-gradient(135deg, #feeec4 0%, #f5e6d3 100%);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.charte-item:hover {
  transform: scale(1.03);
}

.charte-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.charte-item p {
  margin: 0;
  color: #4a3728;
  font-size: 0.9rem;
}

/* Lieux grid */
.lieux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}

.lieu-card {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.lieu-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.lieu-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4a3728;
  margin-bottom: 5px;
}

.lieu-city {
  font-size: 1rem;
  font-weight: 600;
  color: #c79b78;
  margin-bottom: 15px;
}

.lieu-desc {
  font-size: 0.9rem;
  color: #5a4a3a;
  line-height: 1.6;
  margin: 0;
}

.btn-voir-films {
  display: inline-block;
  background: linear-gradient(135deg, #c79b78 0%, #b08968 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(199, 155, 120, 0.4);
}

.btn-voir-films:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(199, 155, 120, 0.6);
  color: white;
  text-decoration: none;
}

/* Prevention block */
.prevention-block {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.prevention-block h3 {
  color: #4a3728;
  margin-bottom: 25px;
  font-weight: 700;
}

.prevention-block p {
  color: #5a4a3a;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Liens de page dans la navbar (redirection) */
.nav-link-page {
  background: rgba(0, 0, 0, 0.15) !important;
  border: 2px solid rgba(0, 0, 0, 0.4) !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  color: #3a2a1a !important;
}

.nav-link-page:hover {
  background: rgba(0, 0, 0, 0.25) !important;
  border-color: rgba(0, 0, 0, 0.6) !important;
  color: #1a0a00 !important;
}

/* Bouton CTA dans la navbar */
.nav-link-cta {
  background: linear-gradient(135deg, #8b5a3c 0%, #6d4930 100%);
  border-radius: 25px;
  padding: 10px 20px !important;
  margin-left: 10px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 90, 60, 0.4);
  transition: all 0.3s ease;
}

.nav-link-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 90, 60, 0.6);
  background: linear-gradient(135deg, #6d4930 0%, #8b5a3c 100%);
}

/* Cards */
.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-index {
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  border: none;
}

.card-img-index .card-body {
  display: none;
}

.card-img-index img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.card-deck {
  margin: 20px auto;
  max-width: 90%;
}

/* Video cards */
.video-card {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.video-card .card-body {
  padding: 15px;
}

/* Forms */
.form-control {
  border-radius: 5px;
  border: 2px solid #ddd;
  padding: 10px 15px;
}

.form-control:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: #e74c3c;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
  background-color: #c0392b;
}

.btn-light {
  border-radius: 25px;
  padding: 10px 25px;
}

.btn-danger {
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.8rem;
}

/* Sort dropdown */
.sort-dropdown {
  display: inline-block;
  margin-bottom: 20px;
}

.sort-dropdown .dropdown-menu {
  min-width: 200px;
}

/* Team cards */
.card-deck .card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Partner logos */
.partner-card {
  background: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.partner-card img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

/* Partner logos in home page section */
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partner-logo img {
  max-width: 120px;
}

/* Accordeon lieux d'intervention */
.lieu-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.lieu-item:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.lieu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lieu-header:hover {
  background: rgba(199, 155, 120, 0.1);
}

.lieu-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #4a3728;
}

.lieu-info .lieu-ville {
  font-size: 0.85rem;
  color: #c79b78;
  font-weight: 500;
}

.lieu-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #4a3728;
  transition: transform 0.3s ease;
  width: 30px;
  text-align: center;
}

.lieu-item.open .lieu-toggle {
  transform: rotate(45deg);
}

.lieu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.lieu-item.open .lieu-content {
  max-height: 1000px;
  padding: 0 25px 25px;
}

.lieu-content p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #5a4a3a;
}

.lieu-content h6 {
  margin-top: 15px;
  margin-bottom: 10px;
  color: #4a3728;
}

.lieu-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.lieu-content ul li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #5a4a3a;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .ateliers-main-block {
    flex-direction: column;
    text-align: center;
  }

  .ateliers-carousel-container {
    max-width: 100%;
    margin: 0 auto;
  }

  #mainCarousel .carousel-item img {
    height: 250px;
  }

  .navbar {
    padding: 10px 15px;
  }

  .navbar-collapse {
    background: linear-gradient(135deg, #c79b78 0%, #b08968 100%);
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(199, 155, 120, 0.4);
  }

  .navbar-nav {
    background: transparent;
    padding: 0;
  }

  .navbar-nav .nav-item {
    margin: 5px 0;
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 12px 20px !important;
  }

  .nav-link-cta {
    margin: 15px auto 0;
    display: inline-block;
  }

  /* Hero responsive */
  .hero-section {
    padding: 100px 15px 40px;
    min-height: auto;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }

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

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

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

  .hero-video {
    padding-left: 0;
  }

  .big {
    font-size: 2.5rem;
  }

  .big-1 {
    font-size: 2rem;
  }

  .card-deck {
    flex-direction: column;
  }

  .card-deck .card {
    margin-bottom: 20px;
  }

  .bg-image-cat {
    min-height: 50vh;
  }
}

@media (max-width: 768px) {
  .big {
    font-size: 2rem;
  }

  .card-img-index img {
    height: 150px;
  }

  h3 {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.2rem;
  }
}

/* Utility classes */
.responsive {
  width: auto;
  height: auto;
  max-width: 100%;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Page specific styles */
.masthead {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1200px;
}

/* Authentication forms */
.auth-form {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.auth-form h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form label {
  font-weight: bold;
  color: #555;
}

.alert {
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* Video form */
.video-form {
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
}

.video-form h1 {
  text-align: center;
  margin-bottom: 30px;
}

/* Delete button */
.delete-btn {
  color: #dc3545;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.delete-btn:hover {
  color: #c82333;
}

/* Boutons ateliers - Section "Où intervenons-nous" */
.ateliers-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn-atelier {
  padding: 15px 25px;
  border-radius: 10px;
  border: 2px solid #4a3728;
  background: transparent;
  color: #4a3728;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: all 0.3s ease;
  min-width: 160px;
}

.btn-atelier:hover {
  background: rgba(199, 155, 120, 0.2);
  border-color: #c79b78;
  transform: translateY(-2px);
}

.btn-atelier.active {
  background: linear-gradient(135deg, #c79b78 0%, #b08968 100%);
  border-color: #c79b78;
  color: white;
  box-shadow: 0 5px 15px rgba(199, 155, 120, 0.4);
}

.btn-atelier small {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Contenu des ateliers - cache par defaut */
.atelier-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.atelier-content.active {
  display: block;
}

.atelier-content h5 {
  margin-bottom: 20px;
  color: #4a3728;
}

.atelier-content h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #4a3728;
}

.atelier-content p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.atelier-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.atelier-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Responsive boutons ateliers */
@media (max-width: 768px) {
  .ateliers-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-atelier {
    width: 100%;
    max-width: 280px;
  }
}
