/* ============================================================
   🎨 AREDIUS ART PRODUCTION – STYLE GLOBAL TEMPLATE
   ============================================================ */

/* --- Réinitialisation & base --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url("/fondbronze.png") no-repeat center center fixed;
  background-size: cover;
  background-color: #1a120b;
  color: #fdf5e6;
  display: block;         /* ✅ supprime la flexbox qui crée le voile */
  text-align: center;     /* ✅ garde le centrage du menu */
}


/* ============================================================
   🧭 NAVIGATION GLOBALE
   ============================================================ */
nav {
  width: 100%;
  text-align: center;
  margin-top: 25px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

nav li {
  position: relative;
}

nav a {
  color: #fdf5e6;
  text-decoration: none;
  font-weight: bold;
  padding: 4px 8px;
  transition: color 0.2s ease-in-out;
}

nav a:hover {
  color: #ffa857;
}

/* Sous-menus (desktop) */
nav ul li ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  min-width: 180px;
  z-index: 1000;
  padding: 0;
}

nav ul li:hover > ul.submenu {
  display: block;
}

nav ul li ul.submenu li a {
  display: block;
  padding: 8px 12px;
  font-weight: normal;
  white-space: nowrap;
  transition: background 0.2s ease-in-out;
}

nav ul li ul.submenu li a:hover {
  background: linear-gradient(90deg, #b8860b, #d4af37);
  color: #1a120b;
}

/* ============================================================
   🏛️ EN-TÊTE PAGE
   ============================================================ */
.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 40px auto;
  border-top: 2px solid #ffa857;
  border-bottom: 2px solid #ffa857;
  padding: 25px 15px;
  max-width: 1350px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.logo-title {
  height: 140px;
  width: auto;
}

.page-title h1 {
  font-family: 'Cinzel', serif;
  color: #ffa857;
  margin: 0;
  text-align: left;
  line-height: 1.2;
}

.page-title .subtitle {
  font-size: 1.8em;
  font-weight: bold;
  color: #d9b573;
}

/* ============================================================
   📄 CONTENU PRINCIPAL
   ============================================================ */
main {
  max-width: 1350px;
  width: 90%;
  margin: 40px auto;
  text-align: justify;
  line-height: 1.7;
  font-size: 1.05em;
  background: rgba(0, 0, 0, 0.5); /* ✅ fond noir translucide */
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); /* ✅ effet doux */
}

h2 {
  font-family: 'Cinzel', serif;
  color: #ffa857;
  border-bottom: 1px solid #ffa857;
  padding-bottom: 5px;
  margin-top: 30px;
}

p {
  font-size: 0.95em;
  margin: 10px 0;
  line-height: 1.6;
}

.maintenance {
  font-style: italic;
  font-size: 0.9em;
  color: #ccc;
  margin-bottom: 20px;
}

/* ============================================================
   💡 BLOCS SECONDAIRES (engagements, avantages, etc.)
   ============================================================ */
.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px auto;
  max-width: 1350px;
}

.adv-item {
  background: rgba(255, 168, 87, 0.08);
  border: 1px solid #ffa857;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: justify;
  min-height: 270px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.adv-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(255, 168, 87, 0.4);
}

.adv-item h3 {
  color: #ffa857;
  margin-bottom: 10px;
  font-size: 1.2em;
  text-align: center;
  border-bottom: 1px solid #ffa857;
  padding-bottom: 6px;
}

.cta {
  text-align: center;
  margin: 40px 0 10px;
}

.cta a {
  background: #ffa857;
  color: #1a120b;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.cta a:hover {
  background: #c38b41;
}

/* ============================================================
   🖼️ GALERIES D’IMAGES – CARTES / FLYERS / AFFICHES
   ============================================================ */
.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 1350px;
  flex-wrap: wrap;
}

.card-item {
  text-align: center;
  width: 200px;
}

.card-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border: 2px solid #b8860b;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.3s;
}

.card-item img:hover {
  transform: scale(1.05);
}

.card-item p {
  margin-top: 6px;
  font-size: 14px;
  color: #ffa857;
  font-weight: bold;
}

/* Flyers */
.flyer-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px auto;
  max-width: 1350px;
  flex-wrap: wrap;
}

.flyer-item {
  text-align: center;
  width: 300px;
}

.flyer-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 2px solid #b8860b;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.3s;
}

.flyer-item img:hover {
  transform: scale(1.05);
}

.flyer-item p {
  margin-top: 6px;
  font-size: 14px;
  color: #ffa857;
  font-weight: bold;
}

/* Affiches */
.photo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px auto;
  max-width: 1350px;
}

.photo-item {
  width: 160px;
  height: 220px;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid #b8860b;
  box-shadow: 0 0 6px rgba(0,0,0,0.5);
  transition: transform 0.3s;
  background: rgba(0,0,0,0.3);
}

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

.photo-item:hover {
  transform: scale(1.05);
}

/* ============================================================
   🔍 LIGHTBOX – AGRANDISSEMENT D’IMAGES
   ============================================================ */
#lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

#lightbox span {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

#lightbox span:hover {
  color: #ffa857;
}

/* ============================================================
   📚 TABLEAU DES PRODUITS IMPRIMABLES
   ============================================================ */
.produits-section {
  margin: 50px auto;
  padding: 30px;
  max-width: 1350px;
  border-radius: 8px;
  color: #fdf5e6;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.produits-section h2 {
  text-align: center;
  color: #ffa857;
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
}

.intro-produits {
  text-align: center;
  margin-bottom: 25px;
}

.intro-produits a {
  color: #ffa857;
  font-weight: bold;
  text-decoration: none;
}

.intro-produits a:hover {
  text-decoration: underline;
}

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

.colonne h3 {
  color: #ffa857;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffa857;
}

.colonne p {
  margin: 4px 0;
  line-height: 1.4;
}
/* ============================================================
   🎬 MONTAGE – formats d'origine (images + petits players)
   ============================================================ */

/* Sections avec flottants */
.section { margin: 18px 0; position: relative; }
.section::after { content: ""; display: table; clear: both; }

/* Images alignées comme dans l’HTML d’origine */
.img-left,
.img-right {
  max-width: 260px;
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* Flottants + marges identiques à l’ancienne page */
.img-left  { float: left;  margin: 0 20px 12px 0; }
.img-right { float: right; margin: 0 0 12px 20px; }

/* Gardes pour éviter que le texte passe sous l’image/vidéo */
.text-guard-right  { margin-right: 280px; }  /* 260 + 20 */
.text-guard-left   { margin-left: 280px;  }  /* 260 + 20 */
.video-guard-right { margin-right: 320px; }  /* 300 + 20 */

/* Liste matériel (espacement doux) */
.materiel-list { margin: 0; padding: 0; list-style-position: outside; }
.materiel-list li { margin-bottom: 8px; line-height: 1.4; }

/* Lecteur vidéo compact (300×180) + cartouche titre/desc */
.video-item-small { width: 300px; color: #fdf5e6; text-align: center; }
.video-item-small iframe {
  width: 100%;
  height: 180px;
  border-radius: 6px;
}

.titre-video{
  background: rgba(0,0,0,0.7);
  color: #fdf5e6;
  padding: 6px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px 6px 0 0;
  margin-bottom: 5px;
  text-align: center;
}
.desc-video{
  background: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 1.4;
  padding: 6px;
  border-radius: 0 0 6px 6px;
  text-align: center;
}

/* Responsive : on enlève les flottants sous 720px */
@media (max-width: 720px){
  .img-right, .img-left { float: none; margin: 0 auto 12px auto; }
  .text-guard-right, .text-guard-left, .video-guard-right { margin: 0; }
}
/* ============================================================
   🎭 PAGE PIÈCES DE THÉÂTRE
   ============================================================ */
.play-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  background: none !important;     /* ✅ supprime le fond noir */
  border-radius: 8px;
  padding: 15px;
  box-shadow: none !important;     /* ✅ retire aussi l’ombre qui fonce la zone */
}

.play-item img {
  max-width: 240px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 0 6px rgba(0,0,0,0.5);
}

.play-content {
  flex: 1;
  min-width: 280px;
  text-align: justify;
}

.play-content h3 {
  color: #ffa857;
  margin-top: 0;
  font-family: 'Cinzel', serif;
  border-bottom: 1px solid #ffa857;
  padding-bottom: 4px;
}

.play-content p {
  line-height: 1.6;
  margin-bottom: 12px;
}

.download-btn {
  display: inline-block;
  background: #ffa857;
  color: #1a120b;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.download-btn:hover {
  background: #c38b41;
}

/* ============================================================
   ⚡ COMPTEUR VISITEURS – BANDEAU AREDIUS
   ============================================================ */
.footer-band {
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  padding: 16px 0;
  text-align: center;
  margin-top: 60px;
  border-top: 2px solid rgba(255, 168, 87, 0.5);
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.7);
  font-family: 'Cinzel', serif;
  font-size: 1em;
  letter-spacing: 0.5px;
  position: relative;
  color: #fdf5e6;
}

.footer-band strong {
  color: #ffd27f;
  text-shadow: 0 0 5px rgba(255, 200, 120, 0.8), 0 0 10px rgba(255, 200, 120, 0.5);
  font-weight: 700;
}

.footer-band .brand {
  color: #ffa857;
  text-shadow: 0 0 6px rgba(255, 180, 90, 0.8), 0 0 12px rgba(255, 140, 0, 0.6);
  font-weight: bold;
}

.footer-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffa857, transparent);
}

