/* ========================================
   Variables CSS - Luxury Design
   ======================================== */
:root {
  --primary-gold: #c9a961;
  --secondary-gold: #d4af37;
  --cream: #f5f1ea;
  --dark: #010101;
  --black: #000000;
  --white: #ffffff;
  --text-light: #080808;
  --gradient-overlay: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(245, 241, 234, 0.3) 55%, rgba(245, 241, 234, 0.85) 85%, #f5f1ea 100%);
}

/* Champ "Jours" - admin sessions */
.table input[type="number"] {
  min-width: 70px;      /* largeur minimale */
  text-align: center;   /* chiffre bien centré */
  font-weight: 600;
  font-size: 1rem;
}


/* ========================================
   Reset & Base
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Header - Minimalist & Elegant
   ======================================== */
.site-header {
  background: var(--black);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--primary-gold);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}
span{
  color: #d4af37;
}
.promo{
  text-align: center;
  font-size: 4rem;
  margin-bottom: 30px;
}

.logo h1 span {
  color: var(--primary-gold);
  font-weight: 300;
  font-style: italic;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 2px;
  background: var(--primary-gold);
  transition: all 0.3s ease;
}

/* ========================================
   Hero Section - Artistic Fade Effect
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--cream);
  overflow: hidden;
  text-align: center;
  padding-bottom: 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 2;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 1;
}

.hero-text {
  position: relative;
  z-index: 3;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-text h2 {
  font-size: 5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero-text h2 .gold {
  color: var(--primary-gold);
  font-weight: 300;
}

.hero-text .subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: lowercase;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--black);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  border: 2px solid var(--primary-gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.btn {
  display: inline-block;
  padding: 18px 50px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--primary-gold);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gold);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--black);
  border-color: var(--primary-gold);
}

/* ========================================
   Repeating Brand Banner
   ======================================== */
.brand-banner {
  background: var(--black);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--primary-gold);
  border-bottom: 1px solid var(--primary-gold);
}

.brand-scroll {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.brand-scroll span {
  color: var(--primary-gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  padding: 0 3rem;
  font-weight: 300;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   Prestations Section - Cards Style
   ======================================== */
.ft {
  padding: 8rem 0;
  background: var(--cream);
  text-align: center;
}

.ft h2 {
  font-size: 3.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ft .section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 5rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.fts2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.bf {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #e0e0e0;
  position: relative;
}

.bf::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.bf:hover::after {
  transform: scaleX(1);
}

.bf:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bf-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.bf-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.bf-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bf:hover .bf-image img {
  transform: scale(1.1);
}

.tbf {
  padding: 2.5rem 2rem;
  text-align: center;
}

.tbf h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.price {
  font-size: 2.5rem;
  color: var(--primary-gold);
  font-weight: 300;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.call-button {
  margin-top: 3rem;
}

/* ========================================
   Élèves Gallery - Artistic Fade
   ======================================== */
.eleve {
  padding: 8rem 0;
  background: var(--black);
  position: relative;
}

.eleve h2 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.eleve .section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 5rem;
  text-align: center;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.pose {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.elle {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.elle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  opacity: 0.8;
  pointer-events: none;
}

.elle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.elle:hover img {
  transform: scale(1.15);
}

.elle-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.elle-overlay p {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ========================================
   À Propos - Split Layout
   ======================================== */
.apropos {
  padding: 0;
  background: var(--cream);
}

.apropos-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.propos-img {
  position: relative;
  overflow: hidden;
}

.propos-img::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  background: linear-gradient(to right, transparent, var(--cream));
}

.propos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.propos-texte {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.propos-texte h2 {
  font-size: 3.5rem;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.2;
}

.propos-texte h2 .gold {
  color: var(--primary-gold);
}

.propos-content p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.propos-content strong {
  color: var(--dark);
  font-weight: 600;
}

.propos-content em {
  color: var(--primary-gold);
  font-style: italic;
}

.propos-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  padding: 3rem 0;
  border-top: 1px solid var(--primary-gold);
  border-bottom: 1px solid var(--primary-gold);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========================================
   Testimonials - Elegant Cards
   ======================================== */
.testimonials {
  padding: 8rem 0;
  background: var(--white);
}

.testimonials h2 {
  font-size: 3.5rem;
  color: var(--dark);
  margin-bottom: 5rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream);
  padding: 3rem;
  border-left: 3px solid var(--primary-gold);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: var(--white);
  transform: translateX(10px);
}

.stars {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
  text-align: right;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   CTA Section - Bold & Dark
   ======================================== */
.cta {
  padding: 8rem 0;
  background: var(--black);
  text-align: center;
  border-top: 1px solid var(--primary-gold);
  border-bottom: 1px solid var(--primary-gold);
}

.cta-content h2 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 3px;
}

.cta-content h2 .gold {
  color: var(--primary-gold);
}

.cta-content p {
  font-size: 1.3rem;
  color: var(--primary-gold);
  margin-bottom: 3rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--black);
  border-color: var(--primary-gold);
}

.btn-primary::before {
  background: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary::before {
  background: var(--primary-gold);
}

/* ========================================
   Footer - Minimalist
   ======================================== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.footer-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
}

.footer-section h3 span {
  color: var(--primary-gold);
  font-style: italic;
}

.footer-section h4 {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.8;
  font-weight: 300;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--white);
  opacity: 0.7;
  transition: all 0.3s ease;
  font-weight: 300;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--primary-gold);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  opacity: 0.6;
  font-weight: 300;
}

.footer-credit {
  font-style: italic;
  color: var(--primary-gold);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--black);
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-gold);
  color: var(--black);
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--black);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 3rem 0;
    gap: 2rem;
  }

  .nav-links.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .hero-text h2 {
    font-size: 3rem;
  }

  .hero-text .subtitle {
    font-size: 1.2rem;
  }

  .ft h2, .eleve h2, .testimonials h2, .cta-content h2 {
    font-size: 2.5rem;
  }

  .apropos-container {
    grid-template-columns: 1fr;
  }

  .propos-img {
    height: 500px;
  }

  .propos-texte {
    padding: 4rem 2rem;
  }

  .propos-texte h2 {
    font-size: 2.5rem;
  }

  .propos-stats {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .fts2, .pose {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.3rem;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .hero-text h2 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .hero-text .subtitle {
    font-size: 1rem;
  }

  .hero-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .ft h2, .eleve h2, .testimonials h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .propos-texte h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 15px 35px;
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }
}

/* ===== BADGE + BOUTONS ===== */
.tag-row{
  display:flex;
  justify-content:flex-end;
  margin-bottom: .8rem;
  position: relative;
  z-index: 1;
}

.tag-kit{
  display:inline-block;
  padding:.35rem .8rem;
  border:1px solid rgba(201,169,97,.75);
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size:.75rem;
  background: rgba(0,0,0,.25);
}

.btn-row{
  display:flex;
  gap:.8rem;
  justify-content:center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-kit{
  opacity:.95;
}

/* ===== MODAL KIT ===== */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 1.2rem;
  z-index: 9999;
}

.modal.is-open{ display:flex; }

.modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
}

.modal__content{
  position: relative;
  width: min(720px, 100%);
  background: var(--black);
  border: 1px solid rgba(201, 169, 97, .55);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  padding: 2rem 1.6rem;
  color: var(--white);
}

.modal__content h3{
  margin: 0 0 1rem;
  color: var(--primary-gold);
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}

.modal__close{
  position:absolute;
  top:.7rem;
  right:.9rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,169,97,.55);
  background: transparent;
  color: var(--white);
  font-size: 1.6rem;
  cursor:pointer;
}

.kit-list{
  margin: 1rem 0 1.6rem;
  padding-left: 1.1rem;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
}

.kit-list li{
  margin: .25rem 0;
}

.modal__actions{
  display:flex;
  justify-content:flex-end;
}


/* ========================================
HEADER STYLES
======================================== */
.site-header {
background: var(--black);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid var(--primary-gold);
}

.header-flex {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
gap: 15px;
}

.logo img {
width: 45px;
height: 45px;
border-radius: 50%;
border: 2px solid var(--primary-gold);
}

.logo h1 {
font-size: 1.8rem;
color: var(--white);
letter-spacing: 3px;
text-transform: uppercase;
font-weight: 400;
}

.logo h1 span {
color: var(--primary-gold);
font-weight: 300;
font-style: italic;
text-transform: lowercase;
}

.nav-links {
display: flex;
list-style: none;
gap: 3rem;
}

.nav-links a {
font-size: 0.95rem;
font-weight: 400;
color: var(--white);
text-transform: uppercase;
letter-spacing: 2px;
position: relative;
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 1px;
background: var(--primary-gold);
transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
width: 100%;
}

.burger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 5px;
}

.burger div {
width: 25px;
height: 2px;
background: var(--primary-gold);
transition: all 0.3s ease;
}

/* ========================================
FOOTER STYLES
======================================== */
.site-footer {
background: linear-gradient(135deg, var(--dark) 0%, var(--secondary-gold) 100%);
background: var(--black);
color: var(--white);
padding: 5rem 0 2rem;
}

.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 4rem;
margin-bottom: 3rem;
padding-bottom: 3rem;
border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.footer-section h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
font-weight: 400;
letter-spacing: 3px;
}

.footer-section h3 span {
color: var(--primary-gold);
font-style: italic;
}

.footer-section h4 {
font-size: 0.9rem;
margin-bottom: 1.5rem;
color: var(--primary-gold);
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 400;
}

.footer-section p {
font-size: 0.95rem;
line-height: 1.8;
opacity: 0.8;
font-weight: 300;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 0.8rem;
}

.footer-section a {
color: var(--white);
opacity: 0.7;
transition: all 0.3s ease;
font-weight: 300;
}

.footer-section a:hover {
opacity: 1;
color: var(--primary-gold);
padding-left: 5px;
}

.social-links {
display: flex;
gap: 1.5rem;
}

.social-links a {
font-size: 1.3rem;
transition: transform 0.3s ease;
}

.social-links a:hover {
transform: scale(1.2);
}

.footer-bottom {
text-align: center;
}

.footer-bottom p {
margin: 0.5rem 0;
font-size: 0.85rem;
opacity: 0.6;
font-weight: 300;
}

.footer-credit {
font-style: italic;
color: var(--primary-gold);
}

/* ========================================
SCROLL TO TOP BUTTON
======================================== */
.scroll-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--black);
color: var(--primary-gold);
border: 2px solid var(--primary-gold);
font-size: 1.5rem;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
}

.scroll-top.visible {
opacity: 1;
visibility: visible;
}

.scroll-top:hover {
background: var(--primary-gold);
color: var(--black);
transform: translateY(-5px);
}

/* ========================================
BRAND BANNER
======================================== */
.brand-banner {
background: var(--black);
padding: 1.5rem 0;
overflow: hidden;
border-top: 1px solid var(--primary-gold);
border-bottom: 1px solid var(--primary-gold);
}

.brand-scroll {
display: flex;
animation: scroll 30s linear infinite;
white-space: nowrap;
}

.brand-scroll span {
color: var(--primary-gold);
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 5px;
padding: 0 3rem;
font-weight: 300;
}

@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

/* ========================================
RESPONSIVE HEADER/FOOTER
======================================== */
@media (max-width: 968px) {
.nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--black);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 3rem 0;
    gap: 2rem;
}

.nav-links.active {
    right: 0;
}

.burger {
    display: flex;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.social-links {
    justify-content: center;
}

.scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
}
}

@media (max-width: 480px) {
.logo h1 {
    font-size: 1.3rem;
}

.logo img {
    width: 35px;
    height: 35px;
}
}

/* ========================================
STYLES SPÉCIFIQUES RÉSERVATION
======================================== */
.reservation-hero {
background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
padding: 8rem 0 4rem;
text-align: center;
border-bottom: 1px solid var(--primary-gold);
}

.reservation-hero h1 {
font-size: 4rem;
color: var(--white);
margin-bottom: 1rem;
font-weight: 400;
letter-spacing: 5px;
text-transform: uppercase;
}

.reservation-hero h1 span {
color: var(--primary-gold);
}

.reservation-hero p {
font-size: 1.2rem;
color: var(--primary-gold);
font-style: italic;
font-family: 'Playfair Display', serif;
}

.reservation-content {
padding: 6rem 0;
background: var(--cream);
}

.reservation-container {
max-width: 800px;
margin: 0 auto;
}

.form-card {
background: var(--white);
padding: 4rem;
border: 1px solid #e0e0e0;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
margin-bottom: 2rem;
}

.form-group label {
display: block;
font-size: 0.9rem;
color: var(--dark);
margin-bottom: 0.8rem;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 500;
}

.form-control {
width: 100%;
padding: 1rem 1.5rem;
border: 2px solid #e0e0e0;
background: var(--cream);
font-size: 1rem;
color: var(--dark);
transition: all 0.3s ease;
font-family: 'Open Sans', sans-serif;
}

.form-control:focus {
outline: none;
border-color: var(--primary-gold);
background: var(--white);
}

.form-control[readonly] {
background: var(--cream);
cursor: not-allowed;
color: var(--primary-gold);
font-weight: 600;
}

select.form-control {
cursor: pointer;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a961' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 1.5rem center;
padding-right: 3rem;
}

textarea.form-control {
min-height: 150px;
resize: vertical;
}

.btn-submit {
width: 100%;
padding: 1.2rem;
background: var(--black);
color: var(--white);
border: 2px solid var(--primary-gold);
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 3px;
font-weight: 600;
cursor: pointer;
transition: all 0.4s ease;
margin-top: 1rem;
}

.btn-submit:hover {
background: var(--primary-gold);
color: var(--black);
}

.payment-section {
margin-top: 4rem;
padding: 3rem;
background: var(--black);
border-left: 5px solid var(--primary-gold);
text-align: center;
}

.payment-section p {
color: var(--white);
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
}

.payment-section strong {
color: var(--primary-gold);
}

.btn-payment {
display: inline-block;
padding: 1.2rem 3rem;
background: var(--primary-gold);
color: var(--black);
border: 2px solid var(--primary-gold);
text-decoration: none;
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 3px;
font-weight: 600;
transition: all 0.4s ease;
}

.btn-payment:hover {
background: transparent;
color: var(--primary-gold);
}

.formation-info {
background: var(--cream);
padding: 2rem;
margin-bottom: 2rem;
border-left: 4px solid var(--primary-gold);
}

.formation-info h3 {
font-size: 1.2rem;
color: var(--dark);
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 2px;
}

.formation-info p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 0.5rem;
}

.price-highlight {
display: inline-block;
background: var(--primary-gold);
color: var(--black);
padding: 0.3rem 1rem;
font-weight: 700;
font-size: 1.2rem;
margin: 0.5rem 0;
}

.required-star {
color: var(--primary-gold);
margin-left: 3px;
}

@media (max-width: 768px) {
.reservation-hero h1 {
    font-size: 2.5rem;
}

.form-card {
    padding: 2rem;
}

.payment-section {
    padding: 2rem;
}
}


input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--primary-gold);
}

/* ===== CGV MODAL ===== */
.link-btn {
  background: none;
  border: none;
  color: var(--primary-gold);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.modal-content {
  position: relative;
  width: min(900px, 95%);
  height: min(80vh, 700px);
  background: var(--white);
  border: 2px solid var(--primary-gold);
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.modal-content h2 {
  padding: 1rem;
  margin: 0;
  background: var(--black);
  color: var(--primary-gold);
}

.modal-body {
  flex: 1;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary-gold);
  cursor: pointer;
}
