/* =============================================
   BOLOKADA COIFFURE — Interface Publique
   Design : Luxe (Noir, Or, Rose)
   ============================================= */

/* ── Variables ─────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-card:  #1a1a1a;
  --gold:        #C9A84C;
  --gold-light:  #E8C97D;
  --gold-dark:   #9B7A2A;
  --pink:        #E8B4C5;
  --pink-light:  #F5D9E5;
  --pink-dark:   #C47FA0;
  --white:       #FFFFFF;
  --white-soft:  #F8F4F0;
  --gray-text:   #AAAAAA;
  --border:      rgba(201,168,76,0.25);

  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Lato', 'Helvetica Neue', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-sans);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 65px;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ─────────────────────────────── */
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 0.4em;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.8rem auto 1.5rem;
  border-radius: 2px;
}

/* ── Layout ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 3.5rem 0;
}

/* ── Navbar ─────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 65px;
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 0.8rem;
}

#nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.btn-nav-rdv {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-nav-rdv:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-nav-rdv::after { display: none; }

#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

#menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

#menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#menu-toggle.active span:nth-child(2) { opacity: 0; }
#menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ───────────────────────────────────── */
#hero {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232,180,197,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #0a0a0a 0%, #1a1008 50%, #0a0a0a 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.4;
}

.particle:nth-child(1)  { left: 10%; top: 20%; animation-duration: 8s;  animation-delay: 0s;   width: 3px; height: 3px; }
.particle:nth-child(2)  { left: 25%; top: 60%; animation-duration: 12s; animation-delay: 2s; }
.particle:nth-child(3)  { left: 50%; top: 30%; animation-duration: 10s; animation-delay: 4s;  width: 3px; height: 3px; }
.particle:nth-child(4)  { left: 75%; top: 70%; animation-duration: 9s;  animation-delay: 1s; }
.particle:nth-child(5)  { left: 85%; top: 15%; animation-duration: 11s; animation-delay: 3s;  width: 3px; height: 3px; }
.particle:nth-child(6)  { left: 40%; top: 85%; animation-duration: 7s;  animation-delay: 5s; }
.particle:nth-child(7)  { left: 90%; top: 45%; animation-duration: 13s; animation-delay: 2s;  width: 4px; height: 4px; }
.particle:nth-child(8)  { left: 60%; top: 10%; animation-duration: 9s;  animation-delay: 0s; }
.particle:nth-child(9)  { left: 15%; top: 75%; animation-duration: 14s; animation-delay: 6s;  background: var(--pink); }
.particle:nth-child(10) { left: 70%; top: 55%; animation-duration: 8s;  animation-delay: 1s;  background: var(--pink); }

@keyframes float-particle {
  0%   { transform: translateY(0) rotate(0); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-80px) rotate(360deg); opacity: 0; }
}

.hero-logo-watermark {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  pointer-events: none;
  z-index: 1;
}

.hero-logo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.1;
  filter: grayscale(20%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-title .line-gold {
  color: var(--gold);
  display: block;
}

.hero-title .line-pink {
  color: var(--pink);
  display: block;
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: none;
  font-size: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-whatsapp-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-stat-number {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 520px;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

/* ── Services ───────────────────────────────── */
#services {
  background: var(--black-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), var(--shadow-gold);
  border-color: rgba(201,168,76,0.5);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(232,180,197,0.1));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(232,180,197,0.2));
}

.service-name {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.service-price {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* ── Gallery ────────────────────────────────── */
#gallery {
  background: var(--black);
}

.gallery-filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray-text);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid var(--border);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  aspect-ratio: 1/1;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ── Gallery skeleton ───────────────────────── */
.gallery-skeleton {
  background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border: 1px solid rgba(255,255,255,0.04);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.gallery-empty-pub {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-text);
}

.gallery-empty-pub span { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.gallery-empty-pub p    { font-size: 0.95rem; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2a1f0e);
  color: var(--gold);
  gap: 0.5rem;
}

.gallery-placeholder .icon { font-size: 2.5rem; }
.gallery-placeholder .label {
  font-size: 0.85rem;
  color: var(--gray-text);
  letter-spacing: 0.05em;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-tag {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* ── Appointment Form ────────────────────────── */
#rdv {
  background: linear-gradient(160deg, var(--black-soft) 0%, var(--black) 100%);
}

.rdv-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.rdv-info-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.rdv-info-text {
  color: var(--gray-text);
  line-height: 1.6;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.rdv-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.rdv-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white-soft);
  font-size: 0.85rem;
}

.rdv-features .feat-icon {
  width: 26px;
  height: 26px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.rdv-form-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.rdv-form-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.form-input,
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-input::placeholder { color: var(--gray-text); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--black-card);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem;
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  margin-top: 0.3rem;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-icon { font-size: 1.1rem; }

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Contact ────────────────────────────────── */
#contact {
  background: var(--black-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 560px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-info-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.1rem;
}

.contact-value {
  color: var(--white-soft);
  font-size: 0.85rem;
}


.btn-whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  border: none;
  font-size: 0.85rem;
  margin-top: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  width: auto;
  justify-content: center;
}

.btn-whatsapp-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}

/* ── Footer ─────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-text { font-size: 1.5rem; }

.footer-desc {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-top: 0.8rem;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-text);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--gray-text);
}

.footer-bottom a { color: var(--gold); }

/* ── Boutons sociaux section contact ────────── */
.contact-social-btns {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-whatsapp-contact,
.btn-tiktok-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  border: none;
  font-size: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition);
  width: auto;
}

.btn-whatsapp-contact {
  background: #25D366;
  color: white;
}
.btn-whatsapp-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,.4);
}

.btn-tiktok-contact {
  background: linear-gradient(135deg, #010101 0%, #1a1a1a 100%);
  color: white;
  border: 1px solid rgba(105,201,208,.35);
  position: relative;
  overflow: hidden;
}
.btn-tiktok-contact svg {
  filter: drop-shadow(0 0 4px #69C9D0) drop-shadow(0 0 8px #EE1D52);
}
.btn-tiktok-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(105,201,208,.3), 0 0 30px rgba(238,29,82,.15);
  border-color: rgba(105,201,208,.6);
}

/* ── Footer social ───────────────────────────── */
.footer-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-text);
  font-size: 0.85rem;
  transition: color var(--transition), transform var(--transition);
}
.footer-social-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.footer-admin-link {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ── Toast ──────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black-card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 1rem 1.8rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s ease;
  max-width: 400px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-success { border-color: var(--gold); color: var(--gold-light); }
.toast-error   { border-color: #e74c3c; color: #ff8080; }

/* ── Scroll animations ──────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Form validation ────────────────────────── */
.form-input.input-error,
.form-select.input-error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.12);
}

.field-error {
  display: block;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.35rem;
  min-height: 1rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.field-error.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .rdv-wrapper  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #menu-toggle { display: flex; }

  #nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.35s ease;
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    z-index: 998;
  }

  #nav-links.open { right: 0; }

  .hero-image  { display: none; }
  .hero-logo-watermark {
    width: 75vw;
    height: 75vw;
    right: auto;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
  }
  .hero-logo-watermark img { opacity: 0.12; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-desc { max-width: 100%; }

  /* Boutons hero : largeur auto, centrés */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .btn-primary,
  .btn-secondary,
  .btn-whatsapp-hero {
    justify-content: center;
    width: auto;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
  }

  /* Stats : 3 colonnes égales */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
  }

  /* Tablet : 2 colonnes pour services et galerie */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  section { padding: 2.5rem 0; }
  .rdv-form-card     { padding: 1rem; }
  .contact-info-card { padding: 1rem; }

  .hero-stat-number { font-size: 1.2rem; }
  .hero-stat-label  { font-size: 0.65rem; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   WORLD-CLASS UPGRADE — Curseur · Aurora · Glow
   Shimmer · Bounce · Compteur · Orbes premium
══════════════════════════════════════════════════ */

/* ── Curseur doré personnalisé ─────────────────── */
body:not(.touch-device) * { cursor: none !important; }

#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, background .2s ease;
  mix-blend-mode: screen;
  will-change: left, top;
}

#cursor-glow {
  position: fixed;
  width: 44px; height: 44px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,168,76,.28) 0%, transparent 70%);
  filter: blur(8px);
  will-change: left, top;
  transition: width .3s ease, height .3s ease;
}

body.cursor-on-link #cursor-dot {
  width: 14px; height: 14px;
  background: var(--gold-light);
}
body.cursor-on-link #cursor-glow {
  width: 72px; height: 72px;
  background: radial-gradient(circle, rgba(232,180,197,.32) 0%, transparent 70%);
}

/* ── Barre de progression aurora ──────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--pink-dark), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  z-index: 10000;
  box-shadow: 0 0 14px rgba(201,168,76,.65);
  animation: aurora-flow 4s ease-in-out infinite alternate;
  transition: width .08s linear;
}

/* ── Navbar : remplacer border-bottom par aurora ─ */
#navbar { border-bottom: none; }
#navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dark) 20%,
    var(--gold-light) 50%,
    var(--gold-dark) 80%,
    transparent 100%);
  background-size: 200% 100%;
  animation: aurora-flow 7s ease-in-out infinite alternate;
}

@keyframes aurora-flow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

/* ── Titres hero — lueur néon ──────────────────── */
.hero-title .line-gold {
  text-shadow: 0 0 50px rgba(201,168,76,.45), 0 0 100px rgba(201,168,76,.15);
}
.hero-title .line-pink {
  text-shadow: 0 0 50px rgba(232,180,197,.45), 0 0 100px rgba(232,180,197,.15);
}

/* ── Hero badge — entrée animée ───────────────── */
.hero-badge {
  animation: slide-down .8s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Stats — lueur dorée ──────────────────────── */
.hero-stat-number {
  text-shadow: 0 0 22px rgba(201,168,76,.45);
}

/* ── Shimmer sur boutons principaux ───────────── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.4) 50%, transparent 100%);
  animation: btn-shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

.btn-submit { position: relative; overflow: hidden; }
.btn-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  animation: btn-shimmer 3.4s ease-in-out infinite .9s;
  pointer-events: none;
}

@keyframes btn-shimmer {
  0%       { left: -100%; }
  25%, 100% { left: 160%; }
}

/* ── Service cards — bounce + double glow ─────── */
.service-card {
  transition:
    transform .4s cubic-bezier(.34,1.56,.64,1),
    box-shadow .35s ease,
    border-color .35s ease;
}
.service-card:hover {
  transform: translateY(-13px) scale(1.03);
  box-shadow:
    0 28px 65px rgba(0,0,0,.65),
    0 0 35px rgba(201,168,76,.3),
    0 0 70px rgba(196,127,160,.15);
  border-color: rgba(201,168,76,.75);
}

/* ── Galerie — lift doré ──────────────────────── */
.gallery-item {
  position: relative; z-index: 1;
  transition:
    transform .4s cubic-bezier(.34,1.56,.64,1),
    box-shadow .4s ease,
    z-index 0s;
}
.gallery-item:hover {
  transform: scale(1.06);
  z-index: 3;
  box-shadow:
    0 20px 55px rgba(0,0,0,.7),
    0 0 28px rgba(201,168,76,.3);
}

/* ── Gold line — animation scaleX à l'apparition ─ */
.animate-on-scroll .gold-line,
.rdv-info .gold-line {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .9s cubic-bezier(.34,1.56,.64,1) .45s;
}
.animate-on-scroll.in-view .gold-line,
.rdv-info.in-view .gold-line {
  transform: scaleX(1);
}

/* ── Titres de section — glow subtil ──────────── */
.section-title {
  text-shadow: 0 0 40px rgba(201,168,76,.2);
}

/* ── Formulaire RDV — glow au focus ───────────── */
.rdv-form-card {
  transition: box-shadow .35s ease;
}
.rdv-form-card:focus-within {
  box-shadow:
    0 8px 40px rgba(0,0,0,.5),
    0 0 35px rgba(201,168,76,.13),
    0 0 70px rgba(201,168,76,.05);
}

/* ── Carte contact — hover glow ───────────────── */
.contact-info-card {
  transition: box-shadow .35s ease, border-color .35s ease;
}
.contact-info-card:hover {
  box-shadow:
    0 8px 35px rgba(0,0,0,.45),
    0 0 28px rgba(201,168,76,.13);
  border-color: rgba(201,168,76,.55);
}

/* ── Footer — supprimer border-top, remplacer par aurora ── */
footer { border-top: none; position: relative; }
footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dark) 20%,
    var(--gold) 40%,
    var(--pink-dark) 60%,
    var(--gold) 80%,
    transparent 100%);
  background-size: 200% 100%;
  animation: aurora-flow 5s ease-in-out infinite alternate;
}
