/* ============================================
   STYLE'UP - SALON DE COIFFURE PREMIUM
   Design Audacieux Noir & Or - Féminin & Luxueux
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

/* Variables CSS */
:root {
  --gold: #D4AF37;
  --gold-light: #F4E4BC;
  --gold-bright: #FDF3BC;;
  --gold-dark: #B8860B;
  --black: #050505;
  --black-soft: #0a0a0a;
  --black-luxe: #111111;
  --white: #ffffff;
  --white-soft: #f8f8f8;
  --pink-gold: #F5E6D3;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.68, -0.15, 0.265, 1.35);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar luxueuse */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 3px;
}

/* Sélection dorée */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ============================================
   PARTICULES D'OR MAGIQUES
   ============================================ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   NAVIGATION LUXUEUSE
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s var(--ease-luxe);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(30px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  position: relative;
}

.logo-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--black);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-spring);
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.logo:hover .logo-icon::before {
  opacity: 1;
}

.logo-icon i {
  position: relative;
  z-index: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-text span {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--white-soft);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.4s var(--ease-luxe);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: all 0.4s var(--ease-luxe);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--gold);
  letter-spacing: 3px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-luxe);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  transition: all 0.5s var(--ease-luxe);
  z-index: -1;
}

.nav-cta:hover {
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.nav-cta:hover::before {
  left: 0;
}

/* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.menu-toggle span {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.4s var(--ease-luxe);
  transform-origin: center;
}

/* ============================================
   HERO SECTION - IMMERSIF
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(184, 134, 11, 0.05) 0%, transparent 60%),
    var(--black);
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 228, 188, 0.15) 0%, transparent 70%);
  bottom: 20%;
  left: 5%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% { 
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.8;
  }
  50% { 
    transform: translate(-20px, 20px) scale(0.95);
    opacity: 0.5;
  }
  75% { 
    transform: translate(20px, 30px) scale(1.05);
    opacity: 0.7;
  }
}

/* Formes organiques décoratives */
.hero-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.hero-shape-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphShape 10s ease-in-out infinite;
}

.hero-shape-2 {
  bottom: 15%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--gold), transparent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 12s ease-in-out infinite reverse;
}

@keyframes morphShape {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 50% 40% 60% / 40% 50% 60% 50%; }
  75% { border-radius: 40% 60% 50% 50% / 60% 40% 50% 60%; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 2rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(40px);
}

.hero-badge::before,
.hero-badge::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(60px);
}

.hero-title .line {
  display: block;
}

.hero-title .line-1 {
  color: var(--white);
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-title .line-2 {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 500;
  position: relative;
}

.hero-title .line-2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(40px);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
}

.btn-primary {
  padding: 1.3rem 3.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-luxe);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  padding: 1.3rem 3.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-luxe);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-luxe);
  z-index: -1;
}

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

.btn-secondary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Scroll indicator élégant */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-radius: 13px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
section {
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

/* ============================================
   ABOUT SECTION - ÉLÉGANT
   ============================================ */
.about {
  padding: 10rem 2rem;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  padding: 2rem;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  transform: translate(20px, 20px);
  transition: all 0.5s var(--ease-luxe);
}

.about-image:hover .about-image-wrapper::before {
  transform: translate(10px, 10px);
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.8s var(--ease-luxe);
}

.about-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-style: italic;
}

.about-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.5s var(--ease-luxe);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-luxe);
}

.stat-item:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* ============================================
   SERVICES SECTION - GLASSMORPHISM
   ============================================ */
.services {
  padding: 10rem 2rem;
  background: var(--black);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(212, 175, 55, 0.03), transparent);
  pointer-events: none;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--ease-luxe);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-luxe);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-15px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 175, 55, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 2rem;
  transition: all 0.5s var(--ease-spring);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--black);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.service-price span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  font-family: var(--font-body);
}

/* ============================================
   TARIFS SECTION - ÉLÉGANT
   ============================================ */
.tarifs {
  padding: 10rem 2rem;
  background: var(--black-soft);
  position: relative;
}

.tarifs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.tarif-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.6s var(--ease-luxe);
}

.tarif-category:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.tarif-category.featured {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
  z-index: 2;
}

.tarif-category.featured::before {
  content: '✦ Populaire ✦';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--black);
  padding: 0.5rem 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.tarif-category h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: 500;
}

.tarif-category .subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.tarif-list {
  list-style: none;
}

.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.tarif-item:hover {
  background: rgba(212, 175, 55, 0.03);
  margin: 0 -1rem;
  padding: 1.2rem 1rem;
  border-radius: 4px;
}

.tarif-item:last-child {
  border-bottom: none;
}

.tarif-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 300;
}

.tarif-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
  margin: 0 1rem;
  position: relative;
  top: -3px;
}

.tarif-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
}

/* ============================================
   GALERIE SECTION - MASONRY LUXUEUX
   ============================================ */
.galerie {
  padding: 10rem 2rem;
  background: var(--black);
  position: relative;
}

.galerie-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1.5rem;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

.galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galerie-item:nth-child(4) { grid-column: span 2; }
.galerie-item:nth-child(5) { grid-row: span 2; }

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s var(--ease-luxe);
  filter: grayscale(30%) brightness(0.9);
}

.galerie-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}

.galerie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.5s var(--ease-luxe);
}

.galerie-item:hover .galerie-overlay {
  opacity: 1;
}

.galerie-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 500;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease-luxe);
}

.galerie-overlay span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease-luxe) 0.1s;
}

.galerie-item:hover .galerie-overlay h4,
.galerie-item:hover .galerie-overlay span {
  transform: translateY(0);
}

/* ============================================
   CONTACT SECTION - SOPHISTIQUÉ
   ============================================ */
.contact {
  padding: 10rem 2rem;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-style: italic;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4rem;
  font-weight: 300;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-item i {
  width: 55px;
  height: 55px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.5s var(--ease-luxe);
}

.contact-item:hover i {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.contact-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  padding: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.4s var(--ease-luxe);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all 0.4s var(--ease-luxe);
  pointer-events: none;
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -12px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.btn-submit {
  width: 100%;
  padding: 1.3rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.5s var(--ease-luxe);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.6s ease;
}

.btn-submit:hover {
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.btn-submit:hover::before {
  left: 100%;
}

/* Horaires */
.horaires {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.horaires h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.horaire-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.horaire-day {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.horaire-time {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   FOOTER - ÉLÉGANT
   ============================================ */
.footer {
  padding: 6rem 2rem 2rem;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-brand h3 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: all 0.5s var(--ease-luxe);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 1rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.4s var(--ease-luxe);
  font-weight: 300;
  position: relative;
  padding-left: 0;
}

.footer-column a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.4s var(--ease-luxe);
}

.footer-column a:hover {
  color: var(--gold);
  padding-left: 20px;
}

.footer-column a:hover::before {
  width: 12px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ============================================
   ANIMATIONS & EFFETS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s var(--ease-luxe);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5) { transition-delay: 0.5s; }
.fade-in:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .galerie-item:nth-child(4) { grid-column: span 1; }
  .galerie-item:nth-child(5) { grid-row: span 1; }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 1rem 2rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.6s var(--ease-luxe);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.3rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .tarifs-grid {
    grid-template-columns: 1fr;
  }
  
  .tarif-category.featured {
    transform: scale(1);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  
  .galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .galerie-grid {
    grid-template-columns: 1fr;
  }
  
  .galerie-item:nth-child(1) { grid-column: span 1; }
  
  .navbar {
    padding: 1rem;
  }
}

/* ============================================
   EFFETS SPÉCIAUX
   ============================================ */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Glow effect */
.glow {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
