:root {
  --yellow: #f6d230;
  --orange: #ff8a00;
  --red: #e44b3a;
  --green: #2cab74;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui;
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.topbar {
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
  list-style: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  height: 100px;
  width: auto;
}

.section {
  padding: 20px 0;
}

.hero {
  min-height: 60vh;
  display: grid;
  place-items: center;
  background: radial-gradient(1200px 500px at 80% -10%, rgba(255, 138, 0, 0.08), transparent 60%),
              radial-gradient(1200px 500px at 10% 110%, rgba(44, 171, 116, 0.12), transparent 60%),
              linear-gradient(180deg, #fff, #fafafa);
  position: relative;
  overflow: hidden;
}

.cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
  border-radius: 14px;
  border: 0;
  font-weight: 800;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red), var(--green));
  color: #0b0b0b;
  text-decoration: none;
}

.cta.secondary {
  background: #111;
  color: #fff;
}

.hero-photos {
  position: relative;
  inset: auto 0 0 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  pointer-events: none;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.18));
  margin-top: 50px;
  margin-bottom: 20px;
}

.hero-photos .card-photo {
  position: relative;
  width: calc(50% - 11px);
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #eee;
}

.hero-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid white;
  transform: none;
  border-radius: 18px;
}

/* Cartes de prestations améliorées */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--yellow), var(--orange));
  border-radius: 16px 0 0 16px;
}

.card h3 {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.card p {
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.5;
}

.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

.pill {
  background: #f3f4f6;
  color: #4b5563;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.card-link:hover .card {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.card-link:hover .card::before {
  width: 6px;
}

/* Galerie */
.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, 1fr);
}

.gallery a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .w-8 {
  grid-column: span 8;
}

.gallery .w-4 {
  grid-column: span 4;
}

/* À propos */
.about {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: start;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
}

/* Filtres */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 16px;
  border: none;
  background: #f3f4f6;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
}

.tab-btn.active {
  background: #000;
  color: #fff;
}

.tab-btn:hover {
  background: #e5e7eb;
}



/* Menu */
.nav a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: var(--orange);
}

/* Kicker */

/* Responsive */
@media (max-width: 920px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery .w-8 {
    grid-column: span 12;
  }

  .gallery .w-4 {
    grid-column: span 6;
  }

  .about {
    grid-template-columns: 1fr;
  }

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

  .hero-photos {
    display: none;
  }
}

@media (max-width: 520px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery .w-8 {
    grid-column: span 6;
  }

  .gallery .w-4 {
    grid-column: span 6;
  }
}

.marge {
  margin-top: 50px;
}

/* Style pour la section À propos */
.about-text {
  margin: 16px 0;
}

.short-text {
  margin-bottom: 0;
}

.full-text {
  margin-bottom: 16px;
}

/* Style pour le bouton "En lire plus" */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 138, 0, 0.1);
}

.read-more:hover {
  color: var(--red);
  background: rgba(228, 75, 58, 0.1);
  transform: translateY(-1px);
}

.read-more::after {
  content: "→";
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.read-more:hover::after {
  transform: translateX(2px);
}

/* Conteneur pour la vidéo dans la section À propos */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-wrapper {
  margin: 20px 0;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: #000;
}

.video-container video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.video-caption {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

/* Responsive pour la vidéo */
@media (max-width: 768px) {
  .video-container {
    max-width: 100%;
  }
}

/* Style pour le footer */
.site-footer {
  background: #dfdfdf;
  padding: 40px 0 20px;
  border-top: 1px solid #e5e7eb;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-logo {
  height: 100px;
  width: auto;
}

.footer-tagline {
  margin: 0;
  color: #6b7280;
  font-weight: 500;
}

/* Style pour le menu Joomla dans le footer */
.footer-nav .mod-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav .mod-menu > li {
  position: relative;
}

.footer-nav .mod-menu > li > a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s ease;
  border-bottom: 2px solid transparent;
}

.footer-nav .mod-menu > li > a:hover {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.footer-nav .mod-menu > li.current > a,
.footer-nav .mod-menu > li.active > a {
  color: #1f2937;
  font-weight: 600;
  border-bottom-color: #3b82f6;
}

.footer-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title {
  color: #1f2937;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-icon {
  font-size: 1.2rem;
}

.footer-contact address {
  font-style: normal;
  color: #6b7280;
  margin-bottom: 16px;
}

.footer-contact p {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: inline-block;
  font-size: 1.4rem;
  color: #6b7280;
  transition: color 0.2s ease;
}

.social-icon:hover {
  color: #3b82f6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Responsive pour le footer */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-middle {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-nav .mod-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Page scuplture */

.hero-sculpture {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(1200px 500px at 80% -10%, rgba(255, 138, 0, 0.08), transparent 60%),
                radial-gradient(1200px 500px at 10% 110%, rgba(44, 171, 116, 0.12), transparent 60%),
                linear-gradient(180deg, #fff, #fafafa);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

.sculpture-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 40px;
}

/* Cartes de catégories principales */
.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.category-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.category-header {
    padding: 40px 35px 30px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay sombre pour améliorer la lisibilité du texte sur l'image */
.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Pour les enseignes - overlay vert */

.category-header > * {
    position: relative;
    z-index: 2;
}

.category-icon {
    font-size: 56px;
    margin-bottom: 16px;
    display: block;
}

.category-header h2 {
    color: white;
    margin: 0 0 12px 0;
    font-size: clamp(28px, 4vw, 36px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.category-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.category-content {
    padding: 35px;
}

.category-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.category-highlight {
    background: #fffbeb;
    padding: 18px;
    border-radius: 12px;
    font-style: italic;
    color: #92400e;
    font-size: 15px;
    line-height: 1.6;
}

/* Extension de la galerie existante */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

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

/* Section CTA */
.cta-section {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 24px;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: #d1d5db;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .category-cards {
        grid-template-columns: 1fr;
    }
}

/* Page Fresque */

.hero-fresque {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(1200px 500px at 80% -10%, rgba(246, 210, 48, 0.08), transparent 60%),
                radial-gradient(1200px 500px at 10% 110%, rgba(255, 138, 0, 0.12), transparent 60%),
                linear-gradient(180deg, #fff, #fafafa);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

/* Section principale avec image */
.fresque-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.fresque-intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.fresque-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.fresque-intro-content {
    padding: 20px;
}

.fresque-intro-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.fresque-intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Cartes de types de supports */
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.support-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.support-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.support-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.support-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Section processus avec fond */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: #111;
    font-weight: 800;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.process-step p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

/* Highlight box */
.highlight-box {
    background: linear-gradient(135deg, rgba(246, 210, 48, 0.1), rgba(255, 138, 0, 0.1));
    padding: 30px;
    border-radius: 16px;
    margin: 40px 0;
}

.highlight-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.highlight-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Extension de la galerie existante */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

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

/* Section CTA */
.cta-section {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 24px;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: #d1d5db;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 968px) {
    .fresque-intro-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fresque-intro-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .support-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* === STYLES SPÉCIFIQUES PAGE CRÉATION DE DÉCORS === */
/* Les styles de base (container, section, cta, etc.) sont déjà dans styles.css */

.hero-decors {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(1200px 500px at 80% -10%, rgba(228, 75, 58, 0.08), transparent 60%),
                radial-gradient(1200px 500px at 10% 110%, rgba(44, 171, 116, 0.12), transparent 60%),
                linear-gradient(180deg, #fff, #fafafa);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

/* Cartes de services principaux */
.service-main-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    margin: 60px 0;
}

.service-main-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

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

.service-header {
    padding: 50px 40px 40px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: white;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay pour améliorer la lisibilité */
.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(228, 75, 58, 0.85), rgba(255, 138, 0, 0.85));
    z-index: 1;
    opacity: 0.2;
}

/* Overlay vert pour parcs d'attraction */
.service-header.header-parcs::before {
    background: linear-gradient(135deg, rgba(44, 171, 116, 0.85), rgba(30, 142, 94, 0.85));
}

.service-header > * {
    position: relative;
    z-index: 2;
}

.service-header-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.service-header h2 {
    color: white;
    margin: 0 0 16px 0;
    font-size: clamp(30px, 4vw, 40px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-header-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-main-content {
    padding: 40px;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

/* Liste de prestations */
.prestations-list {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.prestations-list h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prestations-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prestations-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prestations-list li::before {
    content: "✓";
    color: var(--orange);
    font-weight: 800;
    font-size: 18px;
}

/* Références clients */
.references-box {
    background: linear-gradient(135deg, rgba(228, 75, 58, 0.05), rgba(255, 138, 0, 0.05));
    padding: 25px;
    border-radius: 12px;
}

.references-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.references-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.references-box strong {
    color: var(--red);
}

/* Section avantages */
.advantages-section {
    background: #fafafa;
    padding: 70px 0;
    margin: 60px 0;
    border-radius: 24px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.advantage-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.advantage-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Extension de la galerie existante */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

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

/* Section CTA */
.cta-section {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 24px;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: #d1d5db;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 968px) {
    .service-main-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* === STYLES SPÉCIFIQUES PAGE LOCATION ÉVÉNEMENTIELLE === */
/* Les styles de base (container, section, cta, etc.) sont déjà dans styles.css */

.hero-location {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(1200px 500px at 80% -10%, rgba(255, 138, 0, 0.08), transparent 60%),
                radial-gradient(1200px 500px at 10% 110%, rgba(246, 210, 48, 0.12), transparent 60%),
                linear-gradient(180deg, #fff, #fafafa);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

/* Section intro avec image */
.location-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.location-intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.location-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.location-intro-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.location-intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Section tarifs avec tableau */
.tarifs-section {
    background: #fafafa;
    padding: 70px 0;
    margin: 60px 0;
    border-radius: 24px;
}

.pricing-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.pricing-table thead th {
    color: white;
    padding: 20px 25px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.pricing-table tbody tr:hover {
    background: #fafafa;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 20px 25px;
    color: #4b5563;
    font-size: 15px;
}

.pricing-table td:first-child {
    font-weight: 700;
    color: #111;
    font-size: 16px;
}

.pricing-table td:last-child {
    color: var(--orange);
    font-weight: 700;
    font-size: 17px;
}

/* Notes importantes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.info-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-box.info-box-green {
    border-left-color: var(--green);
}

.info-box.info-box-yellow {
    border-left-color: var(--yellow);
}

.info-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 6px 0;
    font-size: 15px;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-box li::before {
    content: "→";
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Highlight box pour infos importantes */
.highlight-banner {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(246, 210, 48, 0.1));
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--orange);
    margin: 40px 0;
    text-align: center;
}

.highlight-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.highlight-banner p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Cartes d'événements */
.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.event-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.event-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* Extension de la galerie existante */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

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

/* Section CTA */
.cta-section {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 24px;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: #d1d5db;
    margin-bottom: 30px;
    font-size: 18px;
}

.flexloc{
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 968px) {
    .location-intro-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-table {
        overflow-x: auto;
    }

    .pricing-table thead th,
    .pricing-table td {
        padding: 15px 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .info-boxes {
        grid-template-columns: 1fr;
    }

    .event-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === STYLES SPÉCIFIQUES PAGE ANIMATION COLLECTIVE === */
/* Les styles de base (container, section, cta, etc.) sont déjà dans styles.css */

.hero-animation {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(1200px 500px at 80% -10%, rgba(44, 171, 116, 0.08), transparent 60%),
                radial-gradient(1200px 500px at 10% 110%, rgba(246, 210, 48, 0.12), transparent 60%),
                linear-gradient(180deg, #fff, #fafafa);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

/* Section intro avec image */
.animation-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.animation-intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.animation-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.animation-intro-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.animation-intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Cartes de publics */
.public-cards {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.public-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.public-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.public-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.public-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.public-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Section processus */
.process-animation-section {
    background: #fafafa;
    padding: 70px 0;
    margin: 60px 0;
    border-radius: 24px;
}

.process-animation-steps {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.process-animation-step {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
    position: relative;
}

.process-animation-step:hover {
    transform: translateY(-5px);
}

.step-animation-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    color: #111;
    font-weight: 800;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-animation-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.process-animation-step p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

/* Section matériaux */
.materials-section {
    margin: 60px 0;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.material-card {
    background: linear-gradient(135deg, rgba(44, 171, 116, 0.05), rgba(246, 210, 48, 0.05));
    padding: 35px;
    border-radius: 16px;
    border-left: 4px solid var(--green);
    transition: transform 0.3s;
}

.material-card:hover {
    transform: translateX(5px);
}

.material-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 12px;
}

.material-icon {
    font-size: 32px;
}

.material-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Highlight box personnalisé */
.highlight-animation {
    background: linear-gradient(135deg, rgba(44, 171, 116, 0.1), rgba(246, 210, 48, 0.1));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--green);
    margin: 50px 0;
    text-align: center;
}

.highlight-animation h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.highlight-animation p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Extension de la galerie existante */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

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

/* Section CTA */
.cta-section {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 24px;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: #d1d5db;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 968px) {
    .animation-intro-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .animation-intro-image img {
        height: 400px;
    }
  .public-cards{
    flex-wrap : wrap;
  }

  .process-animation-steps{
    flex-wrap : wrap;
  }
}

@media (max-width: 768px) {

    .materials-grid {
        grid-template-columns: 1fr;
    }
}

/* === STYLES SPÉCIFIQUES PAGE COIN PRESSE === */
/* Les styles de base (container, section, cta, etc.) sont déjà dans styles.css */

.hero-presse {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(1200px 500px at 80% -10%, rgba(228, 75, 58, 0.08), transparent 60%),
                radial-gradient(1200px 500px at 10% 110%, rgba(255, 138, 0, 0.12), transparent 60%),
                linear-gradient(180deg, #fff, #fafafa);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

/* Section intro */
.presse-intro {
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.presse-intro h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.presse-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Grille d'articles de presse */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin: 60px 0;
}

.press-article {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.press-article:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.press-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.press-article:hover .press-image img {
    transform: scale(1.05);
}

.press-content {
    padding: 25px;
}

.press-date {
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
}

.press-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.4;
}

.press-source {
    color: #6b7280;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 12px;
}

.press-excerpt {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s;
}

.press-link:hover {
    gap: 12px;
}

/* Section années */
.years-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 50px 0;
    padding: 30px;
    background: #fafafa;
    border-radius: 16px;
}

.year-tag {
    padding: 10px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s;
}

.year-tag:hover,
.year-tag.active {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    border-color: var(--orange);
}

/* Stats presse */
.press-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, rgba(228, 75, 58, 0.05), rgba(255, 138, 0, 0.05));
    border-radius: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--orange);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #4b5563;
    font-weight: 600;
}

/* Citation / Highlight */
.press-highlight {
    background: linear-gradient(135deg, rgba(228, 75, 58, 0.1), rgba(255, 138, 0, 0.1));
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--orange);
    margin: 60px 0;
    text-align: center;
}

.press-highlight blockquote {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.press-highlight cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #6b7280;
    font-style: normal;
}

/* Galerie photos journaux */
.newspaper-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.newspaper-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background: white;
}

.newspaper-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.newspaper-item img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
    padding: 15px;
    background: white;
}

.newspaper-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px 15px 15px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.newspaper-item:hover .newspaper-caption {
    transform: translateY(0);
}

.newspaper-caption p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

/* Section CTA */
.cta-section {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 24px;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: #d1d5db;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 968px) {
    .press-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    .press-image {
        height: 350px;
    }

    .press-stats {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
    }

    .newspaper-gallery {
        grid-template-columns: 1fr;
    }

    .years-filter {
        gap: 10px;
    }

    .year-tag {
        padding: 8px 16px;
        font-size: 14px;
    }

    .press-highlight blockquote {
        font-size: 20px;
    }
}

/* Lightbox pour agrandir les images */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    color: #111;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.logos-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.logos-kicker .logo-kicker {
  height: 55px; /* taille ajustable */
  width: auto;
  object-fit: contain;
}

.kicker {
  font-size: 22px;
  font-weight: 600;
}
