/* 🌒 DESIGN MAKABRE.FR — STYLE MÉDIÉVAL & ÉSOTÉRIQUE */

/* ---------------- */
/* VARIABLES */
/* ---------------- */

/* ---------------- */
/* VARIABLES */
/* ---------------- */
:root {
  --primary-color: #d4af37;
  /* ... */
}

/* ═══════════════════════════════════════════════════════
   CORRECTION DÉCALAGE HORIZONTAL GLOBAL - TOUTES PAGES
   ═══════════════════════════════════════════════════════ */

/* Forcer TOUT à rester dans l'écran */
html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

* {
  box-sizing: border-box !important;
}

background-image: url('images/446.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat;

/* Tous les conteneurs principaux */
section,
.container,
.container-paiement,
.contact-container,
.contact-flex,
.artists-gallery,
.section-banner,
header,
footer {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

/* Corriger les paddings sur mobile */
@media (max-width: 768px) {
  section,
  .container,
  .artists-gallery,
  .contact-flex {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}


:root {
  --primary-color: #d4af37;
  --background-color: #0a0a0a;
  --dark-bg: #141010;
  --light-color: #f4f1e9;
  --text-gray: #b3a580;
  --accent-red: #b23b2d;
  --transition-speed: 0.3s;
  --border-decor: 1px solid rgba(212, 175, 55, 0.3);
}

/* ---------------- */
/* POLICES */
/* ---------------- */
@font-face {
  font-family: 'NO';
  src: url('../fonts/NO.woff2') format('woff2'),
       url('../fonts/NO.ttf') format('truetype');
}

@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&family=Cinzel+Decorative:wght@400;700&display=swap');

/* ---------------- */
/* RESET GLOBAL */
/* ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IM Fell English SC', serif;
  background-color: var(--background-color);
  color: var(--light-color);
  overflow-x: hidden;
    max-width: 100vw;
  scroll-behavior: smooth;
  background-image: radial-gradient(circle at center, #111 0%, #000 100%);
}

section {
  border-top: var(--border-decor);
  border-bottom: var(--border-decor);
}



/* ---------------- */
/* BARRE D'INFOS TOP */
/* ---------------- */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  color: var(--light-color);
  font-size: 0.85rem;
  padding: 6px 0;
  z-index: 1000;
  text-shadow: 0 0 6px rgba(212,175,55,0.3);
  border-bottom: var(--border-decor);
}

.topbar-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: var(--primary-color);
  text-decoration: none;
  font-family: 'Cinzel Decorative', serif;
}

.topbar .social-icons img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  margin-left: 6px;
  transition: transform var(--transition-speed);
}

.topbar .social-icons img:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 0 6px var(--primary-color));
}

/* ---------------- */
/* MENU PRINCIPAL */
/* ---------------- */
.main-header {
  position: fixed;
  top: 30px;
  width: 100%;
  z-index: 999;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(8px);
  border-bottom: var(--border-decor);
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 10px 0;
}

.main-nav a {
  color: var(--light-color);
  text-transform: uppercase;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color var(--transition-speed);
  position: relative;
}

.main-nav a::after {
  content: "✦";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  color: var(--primary-color);
  transition: transform var(--transition-speed);
}

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

.main-nav a:hover::after {
  transform: translateX(-50%) scale(1);
}

/* ---------------- */
/* SECTION HERO */
/* ---------------- */
.hero-full {
  position: relative;
  height: 100vh;
  background: url('../images/446.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.85) 100%);
}

.hero-center {
  position: relative;
  z-index: 1;
  color: var(--light-color);
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  animation: fadeIn 1.5s ease;
}

.hero-logo {
  width: 220px;
  height: auto;
  max-width: 80%;
  filter: drop-shadow(0 0 10px var(--primary-color));
}

.hero-subtitle {
  font-family: 'NO', serif;
  font-size: 2.8rem;
  margin-top: 1rem;
}

.hero-info {
  color: var(--primary-color);
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-info a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-info a:hover {
  color: var(--light-color);
}

.hero-info .separator {
  color: rgba(212, 175, 55, 0.5);
}

/* ---------------- */
/* SECTION À PROPOS */
/* ---------------- */
.about-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  color: var(--light-color);
  padding: 100px 5%;
  text-align: center;
  border-top: var(--border-decor);
  border-bottom: var(--border-decor);
}

.about-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.about-subtitle {
  font-family: 'IM Fell English SC', serif;
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 50px;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text.center {
  flex: 1 1 45%;
  max-width: 600px;
  margin: 0 auto;
  text-align: justify;
  color: var(--text-gray);
  font-family: 'IM Fell English SC', serif;
  line-height: 1.7;
}

.about-text.center p {
  margin-bottom: 1em;
}

.about-text.center h2 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.artist-side {
  flex: 1 1 22%;
  text-align: center;
}

.artist-photo {
  max-width: 250px;
  width: 100%; /* S'adapte au conteneur */
  aspect-ratio: 1 / 1; /* ✅ Ratio carré parfait */
  object-fit: cover; /* ✅ Remplit sans déformer */
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(212,175,55,0.2);
  transition: all 0.3s ease;
}


.artist-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.artist-name {
  font-family: 'Cinzel Decorative', serif;
  color: var(--primary-color);
  font-size: 1.4rem;
  margin: 15px 0 5px 0;
}

.artist-speciality {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 15px;
  font-style: italic;
}

.artist-socials {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.artist-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.artist-socials a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.artist-socials i {
  font-size: 20px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.artist-socials a:hover i {
  color: #000;
}

/* ---------------- */
/* BOUTONS GÉNÉRIQUES */
/* ---------------- */
.btn-center {
  text-align: center;
  margin-top: 30px;
}

.btn-contact {
  display: inline-block;
  background: linear-gradient(145deg, #d4af37, #b99426);
  color: #000;
  font-family: 'Cinzel Decorative', serif;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 35px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(212,175,55,0.25);
  transition: all 0.3s ease;
  position: relative;
}

.btn-contact:hover {
  background: linear-gradient(145deg, #f3d36d, #d4af37);
  color: #000;
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
  transform: translateY(-2px);
}

.btn-contact::after {
  content: "✦";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-contact:hover::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

/* ---------------- */
/* BANDEAU ORNEMENTAL */
/* ---------------- */
.section-banner {
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  padding: 100px 20px 40px;
  border-top: var(--border-decor);
  border-bottom: var(--border-decor);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 2;
}

.banner-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.2rem;
  color: var(--primary-color);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(212,175,55,0.3);
}

.banner-decoration {
  font-size: 1.5rem;
  color: rgba(212,175,55,0.6);
  text-shadow: 0 0 8px rgba(212,175,55,0.3);
  user-select: none;
}

.banner-decoration::before,
.banner-decoration::after {
  content: "⟐";
  color: rgba(212,175,55,0.3);
  margin: 0 6px;
  font-size: 1rem;
}

.section-banner::before,
.section-banner::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  top: 20%;
}

.section-banner {
  animation: bannerFade 1s ease forwards;
}

/* === SECTION SERVICES === */
.services-section {
  padding: 80px 5%;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.service-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* === SECTION CTA === */
.cta-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
  text-align: center;
}

.cta-content h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--light-color);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  font-family: 'Cinzel Decorative', serif;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-cta.primary {
  background: linear-gradient(145deg, #d4af37, #b99426);
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-cta.primary:hover {
  background: linear-gradient(145deg, #f3d36d, #d4af37);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.btn-cta.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
  border: 2px solid var(--primary-color);
}

.btn-cta.secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.3);
}

/* ---------------- */
/* FOOTER */
/* ---------------- */
footer {
  background: #080808;
  color: var(--text-gray);
  text-align: center;
  padding: 25px;
  font-family: 'IM Fell English SC', serif;
  border-top: var(--border-decor);
}

.site-footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 3px solid #2c5f2d;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-tagline {
  font-size: 14px;
  color: #b0b0b0;
  font-style: italic;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 10px;
}

.footer-social h4,
.footer-links-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
}

.social-link.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #FFD700;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  margin: 8px 0;
  font-size: 14px;
  color: #8a8a8a;
}

.footer-credits a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-credits a:hover {
  color: #FFF;
  text-decoration: underline;
}

.footer-social img {
  width: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 0 6px var(--primary-color));
}

/* ---------------- */
/* ANIMATIONS */
/* ---------------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bannerFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-footer {
  animation: fadeInUp 0.6s ease-out;
}

/* === MENTIONS LÉGALES === */
.mentions-legales {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 5%;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  color: var(--light-color);
  font-family: 'IM Fell English SC', serif;
  line-height: 1.8;
}

.mentions-content {
  background: rgba(20, 20, 20, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.mention-block {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.mention-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.mention-block h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mention-block h2 i {
  font-size: 1.3rem;
}

.mention-block p {
  margin-bottom: 15px;
  color: var(--text-gray);
}

.mention-block p strong {
  color: var(--light-color);
  font-weight: 600;
}

.mention-block a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mention-block a:hover {
  color: var(--light-color);
  text-decoration: underline;
}

.cookie-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.cookie-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text-gray);
}

.cookie-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.cookie-list li strong {
  color: var(--light-color);
}

.mention-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.mention-footer p {
  color: var(--primary-color);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════
   MENU HAMBURGER MOBILE
   ═══════════════════════════════════════════════════════ */

.menu-toggle {
  display: none;
  position: fixed;
  top: 5px;
  right: 10px;
  z-index: 10000;
  background: rgba(212, 175, 55, 0.98);
  border: 3px solid #fff;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.8);
}

.menu-toggle:hover {
  background: #f3d36d;
  transform: scale(1.1);
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 4px;
  background: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active {
  background: #ef4444;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
  background: #fff;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
  background: #fff;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent);
  z-index: 9900;
  opacity: 0;
  transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
    pointer-events: none;
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE MOBILE - MENU HAMBURGER
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Afficher le bouton hamburger */
  .menu-toggle {
    display: flex;
  }
  
  /* Topbar : espace pour le bouton */
  .topbar {
    padding: 8px 70px 8px 5px;
    font-size: 0.7rem;
  }
  
  .topbar-content {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .topbar-content span {
    font-size: 0.7rem;
  }
  
  /* Cacher adresse et horaires sur mobile */
  .topbar-content span:nth-child(2),
  .topbar-content span:nth-child(4) {
    display: none;
  }
  
  /* Header mobile */
  .main-header {
    top: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
  }
  
  /* Menu devient panneau latéral */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-left: 3px solid var(--primary-color);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  /* Liste verticale */
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 80px 0 30px;
  }
  
  .main-nav li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  /* Liens tactiles */
  .main-nav a {
    display: block;
    padding: 22px 25px;
    font-size: 1.1rem;
    text-align: left;
  }
  
  .main-nav a::after {
    content: "→";
    position: absolute;
    right: 25px;
    top: 50%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%) translateX(20px);
    opacity: 0;
  }
  
  .main-nav a:hover::after {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  
  /* Hero mobile : corriger l'image */
  .hero-full {
    background-position: center center;
    background-size: cover;
    min-height: 100vh;
  }
  
  .hero-logo {
    width: 180px;
    max-width: 70%;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
    padding: 0 15px;
  }
  
  .hero-info {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  
  .about-section {
    padding: 60px 20px;
  }
  
  .site-footer {
    padding: 40px 20px 20px;
    margin-top: 50px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta {
    width: 100%;
    max-width: 300px;
  }
  
  .mentions-legales {
    padding: 60px 20px;
  }
  
  .mentions-content {
    padding: 25px;
  }
  
  .mention-block h2 {
    font-size: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .menu-toggle {
    top: 3px;
    right: 8px;
    width: 50px;
    height: 50px;
  }
  
  .topbar {
    padding-right: 65px;
    font-size: 0.65rem;
  }
  
  .main-nav {
    width: 90%;
  }
  
  .hero-logo {
    width: 150px;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
}

/* ---------------- */
/* RESPONSIVE GLOBAL */
/* ---------------- */
@media (max-width: 1024px) {
  .main-nav ul { gap: 20px; }
  
  /* ✅ Grid layout pour réorganiser */
  .about-flex {
    display: grid !important;
    grid-template-columns: 1fr 1fr; /* 2 colonnes */
    grid-template-areas: 
      "text text"        /* Texte sur toute la largeur */
      "lydia karl";      /* Photos côte à côte */
    gap: 40px 20px;
  }
  
  .about-text.center {
    grid-area: text;    /* Texte en haut */
    max-width: 100%;
  }
  
  .artist-side.left {
    grid-area: lydia;   /* Lydia à gauche */
  }
  
  .artist-side.right {
    grid-area: karl;    /* Karl à droite */
  }
  
  .artist-side {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .artist-photo {
    max-width: 150px;
  }
  
  .artist-name {
    font-size: 1.2rem;
  }
  
  .artist-speciality {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .artist-photo {
    max-width: 110px;
  }
  
  .artist-name {
    font-size: 1rem;
  }
  
  .artist-speciality {
    font-size: 0.75rem;
  }
  
  .artist-socials a {
    width: 32px;
    height: 32px;
  }
  
  .artist-socials i {
    font-size: 14px;
  }
}
```

**Le CSS Grid va forcer cette structure exacte :**
```
┌─────────────────────────────┐
│      [TEXTE]                │
│   grid-area: text           │
├──────────────┬──────────────┤
│   LYDIA      │     KARL     │
│ grid: lydia  │  grid: karl  │
└──────────────┴──────────────┘