/* ============================================================
   🎨 AREDIUS ART PRODUCTION – STYLE GLOBAL OPTIMISÉ
   ============================================================ */

/* --- 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;
  text-align: center;
}

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

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 12px;
  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;
  font-size: 0.95em;
}

nav a:hover {
  color: #ffa857;
}

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: 30px;
  margin: 30px auto;
  border-top: 2px solid #ffa857;
  border-bottom: 2px solid #ffa857;
  padding: 20px 15px;
  max-width: 1100px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

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

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

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

/* ============================================================
   📄 CONTENU PRINCIPAL
   ============================================================ */
main {
  max-width: 1100px;
  width: 90%;
  margin: 30px auto 0;
  text-align: justify;
  line-height: 1.6;
  font-size: 1em;
  background: rgba(0, 0, 0, 0.5);
  padding: 25px 35px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

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

h3 {
  font-size: 1.1em;
  margin-top: 15px;
}

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

/* ============================================================
   💡 BLOCS SECONDAIRES
   ============================================================ */
.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 35px auto;
  max-width: 1100px;
}

.adv-item {
  background: rgba(255, 168, 87, 0.08);
  border: 1px solid #ffa857;
  border-radius: 12px;
  padding: 20px 18px;
  text-align: justify;
  min-height: 250px;
  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.1em;
  text-align: center;
  border-bottom: 1px solid #ffa857;
  padding-bottom: 6px;
}

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

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

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

/* ============================================================
   🖼️ GALERIES D'IMAGES
   ============================================================ */
.card-container,
.flyer-container {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 20px auto;
  max-width: 1100px;
  flex-wrap: wrap;
}

.card-item,
.flyer-item {
  text-align: center;
  max-width: 250px;
}

.card-item img,
.flyer-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  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,
.flyer-item img:hover {
  transform: scale(1.05);
}

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

/* ============================================================
   🎬 MONTAGE – formats d'origine
   ============================================================ */
.section {
  margin: 18px 0;
  position: relative;
}
.section::after {
  content: "";
  display: table;
  clear: both;
}

.img-left,
.img-right {
  max-width: 240px;
  width: 100%;
  display: block;
  border-radius: 6px;
}

.img-left  { float: left;  margin: 0 18px 12px 0; }
.img-right { float: right; margin: 0 0 12px 18px; }

.text-guard-right  { margin-right: 260px; }
.text-guard-left   { margin-left: 260px;  }
.video-guard-right { margin-right: 300px; }

.materiel-list {
  margin: 0;
  padding: 0;
  list-style-position: outside;
}
.materiel-list li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-item-small {
  width: 280px;
  color: #fdf5e6;
  text-align: center;
}
.video-item-small iframe {
  width: 100%;
  height: 170px;
  border-radius: 6px;
  border: none;
}

.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;
}

@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;
  }
}

/* ============================================================
   TABLEAU PRODUITS IMPRIMABLES
   ============================================================ */
.produits-section {
  margin: 40px auto;
  padding: 25px;
  max-width: 1100px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

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

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

/* ============================================================
   SECTION IMPRIMERIE - CATALOGUE
   ============================================================ */
.catalog-intro {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #a86b2a;
  background: rgba(0, 0, 0, 0.35);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.catalog-item {
  border: 1px solid #a86b2a;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  background: rgba(0, 0, 0, 0.35);
}

/* ============================================================
   TARIFS & DEVIS
   ============================================================ */
.intro-pricing {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: left;
}

.intro-pricing h2 {
  text-align: center;
  margin-bottom: 10px;
}

.pricing-includes {
  list-style: none;
  padding-left: 0;
  margin: 14px 0;
}

.pricing-includes li {
  margin-bottom: 4px;
  font-size: 0.93rem;
}

.pricing-context {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
  line-height: 1.55rem;
  color: #e6e0cf;
  text-align: justify;
}

.pricing-context p {
  margin-bottom: 10px;
}

.pricing-section {
  max-width: 1000px;
  margin: 0 auto 30px;
}

.pricing-section h2 {
  text-align: left;
  margin-bottom: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.pricing-card {
  border: 1px solid #a86b2a;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  padding: 1rem 1.2rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: scale(1.015);
  box-shadow: 0 0 14px rgba(255,168,87,0.35);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
}

.pricing-main {
  flex: 2;
}

.pricing-main h3 {
  font-size: 1em;
  color: #e0aa6a;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
}

.pricing-icon {
  display: inline-block;
  margin-right: 6px;
  font-size: 1.1rem;
}

.pricing-main ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.88rem;
  line-height: 1.3rem;
}

.pricing-side {
  flex: 1;
  text-align: right;
}

.pricing-price {
  margin: 0;
}

.pricing-price strong {
  font-size: 1.25rem;
  color: #ffd27a;
}

.pricing-units {
  margin-top: 3px;
  font-size: 0.82rem;
  color: #e6d6b8;
}

.pricing-note-center {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  text-align: center;
  color: #d0d0d0;
  opacity: 0.9;
}

.pricing-info-note {
  max-width: 950px;
  margin: 25px auto 35px;
  padding: 15px 20px;
  border: 1px solid rgba(255,168,87,0.55);
  border-radius: 8px;
  background: rgba(0,0,0,0.35);
  color: #e9e0cf;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  font-style: italic;
  box-shadow: 0 0 8px rgba(0,0,0,0.45);
}

.pricing-info-note strong {
  color: #ffa857;
  font-style: normal;
}

.cta-pricing {
  max-width: 900px;
  margin: 40px auto 35px;
  padding: 22px 30px;
  border-top: 1px solid #a86b2a;
  border-bottom: 1px solid rgba(255,168,87,0.35);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.45);
  text-align: center;
}

.cta-pricing h2 {
  margin-bottom: 10px;
}

.cta-pricing p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #eadfc7;
}

.cta-btn {
  display: inline-block;
  background: #ffa857;
  color: #1a120b;
  font-weight: bold;
  padding: 12px 30px;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
  transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover {
  background: #c38b41;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-row {
    flex-direction: column;
  }
  .pricing-side {
    text-align: left;
  }
}

/* ============================================================
   🎖️ CLUB AAP - CARTES STATUTS
   ============================================================ */
.club-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 30px auto;
}

.club-card {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.club-card.standard {
  border: 2px solid #8b6f47;
}

.club-card.club {
  border: 2px solid #c9a961;
  box-shadow: 0 0 15px rgba(201,169,97,0.3);
}

.club-card.or {
  border: 2px solid #d4af37;
  box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

.club-card.espace {
  border: 2px solid #ffa857;
  box-shadow: 0 0 15px rgba(255,168,87,0.3);
}

.club-card-title {
  text-align: center;
  margin: 0 0 14px 0;
  font-size: 1.1em;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
}

.club-card.standard .club-card-title {
  color: #ffa857;
}

.club-card.club .club-card-title {
  color: #ffd27a;
}

.club-card.or .club-card-title {
  color: #ffd700;
}

.club-card.espace .club-card-title {
  color: #ffa857;
}

.club-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.club-card-content p {
  margin: 0;
  font-size: 0.92em;
  line-height: 1.55;
}

.club-card-content strong {
  color: #ffc98a;
}

.club-card-content ul {
  margin: 5px 0;
  padding-left: 16px;
  list-style: none;
}

.club-card-content li {
  margin-bottom: 4px;
  position: relative;
  padding-left: 8px;
}

.club-card-content li:before {
  content: "•";
  position: absolute;
  left: -10px;
  color: #ffa857;
}

.club-card-remise {
  text-align: center;
  margin-top: auto;
  padding-top: 11px;
  font-size: 1.1em;
  font-weight: bold;
}

.club-card.standard .club-card-remise {
  color: #ffa857;
}

.club-card.club .club-card-remise {
  color: #ffd27a;
}

.club-card.or .club-card-remise {
  color: #ffd700;
}

.club-card-note {
  text-align: center;
  font-size: 0.8em;
  color: #c9c0b0;
  font-style: italic;
  margin-top: 6px;
  opacity: 0.9;
}

.club-card-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 11px;
}

.club-card-btn a {
  background: #ffa857;
  color: #1a120b;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
  font-size: 0.92em;
}

.club-card-btn a:hover {
  background: #c38b41;
}

@media (max-width: 900px) {
  .club-status-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .club-card {
    min-height: auto;
  }
}

/* ============================================================
   📚 OUVRAGES – PAGE LIVRES
   ============================================================ */
.books-wrapper {
  max-width: 1000px;
  margin: 35px auto 20px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.book-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.55);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.75);
}

.book-cover {
  position: relative;
  flex-shrink: 0;
}

.book-cover img {
  width: 170px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.book-cover .ribbon {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%) rotate(-25deg);
  background: rgba(180, 0, 0, 0.9);
  color: #fff;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 0 8px rgba(0,0,0,0.7);
}

.book-text {
  flex: 1;
  text-align: justify;
}

.book-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15em;
  color: #ffa857;
  margin-bottom: 8px;
  text-align: left;
}

.book-desc {
  font-size: 0.93em;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .book-item {
    flex-direction: column;
    text-align: center;
  }

  .book-text {
    text-align: justify;
  }

  .book-cover img {
    margin: 0 auto;
  }
}

/* ============================================================
   🔍 LIGHTBOX
   ============================================================ */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(255,255,255,0.35);
  object-fit: contain;
  pointer-events: none;
}

/* ============================================================
   🔥 GALERIE GRAVURE LASER
   ============================================================ */
.laser-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px auto;
  max-width: 1100px;
}

.laser-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.laser-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 2px solid #b8860b;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: box-shadow 0.3s ease;
}

.laser-item img:hover {
  box-shadow: 0 8px 20px rgba(255, 168, 87, 0.5);
}

.laser-item p {
  margin-top: 8px;
  font-size: 0.9em;
  color: #ffa857;
  font-weight: bold;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-band {
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  padding: 14px 0;
  text-align: center;
  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: 0.95em;
  color: #fdf5e6;
}

.footer-band strong {
  color: #ffd27f;
}

/* ============================================================
   STRUCTURE PAGE WRAPPER
   ============================================================ */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper main {
  flex: 1;
}