:root {
  --orange: orangered;
  --orange-dark: #cc3700;
  --orange-light: #ff6b35;
  --text: #f4f4f4;
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --bg: #0f0f0f;
  --bg-light: #1a1a1a;
  --bg-card: #111111;
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
  --shadow-light: 0 5px 15px rgba(0, 0, 0, .25);
  --ring: rgba(255, 255, 255, .08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

.promo-ticker {
  background: linear-gradient(90deg, #000000 0%, var(--orange) 50%, #000000 100%);
  color: white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 2px 10px rgba(255, 69, 0, 0.3);
}

.ticker-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  overflow: hidden;
}

.ticker-icon {
  color: white;
  font-size: 1.1rem;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ticker-text {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-text span {
  display: inline-block;
  font-weight: 500;
  font-size: 0.95rem;
  padding-right: 100%;
  animation: ticker-scroll 20s linear infinite;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ticker-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ticker-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}


.accueil.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  background: transparent;
}


.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
}

.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.8vw, 28px);
  align-items: stretch;
  margin-bottom: 30px;
}

.galerie-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.galerie-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.galerie-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.galerie-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  height: 220px;
}

.galerie-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.95);
  transition: transform .4s ease, filter .4s ease;
}

.galerie-card:hover .galerie-media img {
  transform: scale(1.05);
  filter: saturate(1);
}

.galerie-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galerie-card:hover .galerie-hover {
  opacity: 1;
}

.hover-text {
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.galerie-card:hover .hover-text {
  transform: translateY(0);
}

.galerie-caption {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.galerie-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
}

.galerie-link {
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.galerie-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.galerie-empty i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  opacity: 0.5;
}

.galerie-footer {
  text-align: center;
  margin-top: 30px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

/* About Section améliorée */
.about-enhanced {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px;
  margin: 60px 0;
  border: 1px solid var(--border);
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: clamp(30px, 4vw, 50px);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  outline: 1px solid var(--ring);
}

.about-image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 69, 0, 0.1), transparent);
}

.about-caption {
  position: absolute;
  left: 15px;
  bottom: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(255, 69, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-caption::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.about-title {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--orange);
  letter-spacing: .5px;
  text-transform: uppercase;
  position: relative;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.about-text {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-text strong {
  color: var(--orange);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 25px 0 30px;
  padding: 20px;
  background: rgba(255, 69, 0, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 69, 0, 0.1);
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.highlight-item i {
  color: var(--orange);
  font-size: 1.3rem;
}

.highlight-item span {
  font-size: 0.9rem;
  color: var(--text);
}

.about-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 160px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.btn-primary {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--orange);
}

/* Promotions améliorées */
.promotions-section {
  margin: 60px 0;
}

.title-orange {
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
  color: var(--orange);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.title-orange::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.8vw, 28px);
  align-items: stretch;
  margin-top: 30px;
}

.promo-card-enhanced {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.promo-card-enhanced:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.promo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.promo-image-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.promo-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.promo-card-enhanced:hover .promo-image-wrapper img {
  transform: scale(1.05);
}

.promo-ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--orange);
  color: white;
  padding: 6px 35px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.promo-dates-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: white;
}

.promo-dates-badge span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.promo-dates-badge i {
  color: var(--orange);
}

.promo-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-title {
  margin: 0 0 15px;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  flex: 1;
}

.promo-action {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
}

.admin-promo-link {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.btn-admin-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.3);
  color: var(--orange);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-admin-promo:hover {
  background: rgba(255, 69, 0, 0.2);
  transform: translateY(-2px);
}

/* Section Vidéos améliorée */
.videos-section {
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.videos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}

.videos-title {
  color: var(--orange);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 5px;
  font-weight: 600;
}

.videos-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

.video-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-close-btn:hover {
  background: var(--orange);
  color: white;
  transform: rotate(90deg);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--shadow-light);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 20px;
}

.video-card-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 600;
}

.video-description {
  margin: 0 0 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.video-meta i {
  color: var(--orange);
}

.local-video-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}

.local-video {
  width: 100%;
  display: block;
  max-height: 500px;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.7);
  color: var(--orange);
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background-color .3s ease;
  z-index: 2100;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--orange);
  color: white;
}

.scroll-top i {
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1060px) {
  .galerie,
  .promo-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
  
  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .galerie,
  .promo-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-enhanced {
    padding: 30px 20px;
  }
  
  .about-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .videos-section {
    padding: 20px;
    margin: 60px 20px 0;
  }
  
  .ticker-text span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .accueil.container {
    padding: 20px 12px 40px;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .section-title,
  .title-orange {
    font-size: 1.6rem;
  }
  
  .promo-ticker {
    padding: 8px 0;
  }
  
  .ticker-container {
    padding: 0 12px;
  }
}
:root{
  --accent: orangered;
  --dark: #0b0b0c;
}

.hero-pro{
  position: relative;
  min-height: 72vh;            
  border-radius: 18px;
  overflow: hidden;
  margin: 18px auto 44px;
  display: grid;
  place-items: center;
}

.hero-pro__bg{
  position:absolute;
  inset:0;
  background-image:
    url("../image/themes/theme_site/alu_noir.jpg"); /* garde ton esprit */
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: contrast(1.05) saturate(1.05);
}

/* overlay sombre + vibe premium */
.hero-pro__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.35), rgba(0,0,0,0.78)),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.85));
}

.hero-pro__content{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(20px, 5vw, 64px);
  max-width: 980px;
}

.hero-pro__title{
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 74px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0,0,0,.55);
}

.hero-pro__subtitle{
  margin: 0 auto 26px;
  max-width: 720px;
  font-size: clamp(15px, 2.1vw, 22px);
  line-height: 1.55;
  opacity: .92;
}

.hero-pro__actions{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap: wrap;
}

.btn-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12.5px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn-cta--primary{
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 34px rgba(255, 69, 0, 0.28);
}

.btn-cta--ghost{
  background: rgba(0,0,0,0.40);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.80);
}

.btn-cta:hover{ transform: scale(1.06); }
.btn-cta--primary:hover{ box-shadow: 0 0 54px rgba(255, 69, 0, 0.42); }
.btn-cta--ghost:hover{
  background:#fff;
  color:#000;
  border-color:#fff;
}
/* ===== Sections premium ===== */
.accueil.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

.section-header{
  margin: 10px 0 18px;
}

.section-title{
  letter-spacing: .08em;
  text-transform: uppercase;
}

.galerie-card,
.promo-card-enhanced,
.video-card{
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .18s ease, box-shadow .2s ease;
}

.galerie-card:hover,
.promo-card-enhanced:hover,
.video-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,.33);
}

/* boutons "Voir plus / Voir toute la galerie" */
.btn-view-all,
.btn.btn-primary,
.btn.btn-secondary{
  border-radius: 999px !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}
.yt-lite{
  position: relative;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9; /* garde le bon ratio même avant chargement */
}

.yt-lite img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #ff7a00;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.yt-play:hover{
  background: rgba(0,0,0,0.70);
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
}

.modal-content {
  display: block;
  margin: 5% auto;
  max-width: 90%;
  max-height: 90%;
}

#close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}
