/* 1. Variables - change ici pour changer les couleurs */
:root {
  --bg-1: #0a0a1a;
  --bg-2: #1a0b2e;
  --bg-3: #2d0b3e;
  --neon-cyan: #00f2ff;
  --neon-purple: #a855f7;
  --neon-pink: #ff00ff;
  --neon-orange: #ff6b00;
  --text: #ffffff;
}

/* 2. Reset + Fond animé */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;  /* ajoute cette ligne */
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

body {
  background: linear-gradient(-45deg, var(--bg-1), var(--bg-2), var(--bg-3), var(--bg-1));
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  background-attachment: fixed;
}

@keyframes gradientMove {
 0% { background-position: 0% 50%; }
 50% { background-position: 100% 50%; }
 100% { background-position: 0% 50%; }
}

/* 3. Logo AURA STUDIO en dégradé */
.logo-neon {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin: 40px 0;
  letter-spacing: 2px;
}

.logo-neon span:nth-child(1) {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-neon span:nth-child(2) {
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink), var(--neon-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 4. Cards Prix - fond transparent pour voir le dégradé */
.pricing-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.pricing-card {
  background: rgba(10, 10, 26, 0.6); /* fond semi-transparent */
  border: 2px solid var(--neon-purple);
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
}

.pricing-card li {
  margin: 10px 0;
  font-size: 1rem;
}

.pricing-card button {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--neon-cyan);
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.pricing-card button:hover {
  background: var(--neon-cyan);
  color: var(--bg-1);
  box-shadow: 0 0 15px var(--neon-cyan);
}

/* 5. Galerie images en bas */
.gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.gallery img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 2px solid var(--neon-pink);
  border-radius: 8px;
}

/* 6. Responsive */
@media (max-width: 768px) {
  .logo-neon { font-size: 2rem; }
  .pricing-card { width: 90%; }
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: rgba(168, 85, 247, 0.15);
  border-top: 2px solid #a855f7;
  border-bottom: 2px solid #a855f7;
  padding: 14px 0;
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  font-weight: 600;
  font-size: 1.2rem;
  color: #22d3ee;
  text-shadow: 0 0 8px #22d3ee, 0 0 20px #a855f7;
}

@keyframes scroll-left {
 0% { transform: translateX(100%); }
 100% { transform: translateX(-100%); }
}

.carousel {
  width: 100%;
  overflow: hidden;
  background: #6b21a8;
  padding: 30px 0;
  border-top: 2px solid #d946ef;
  border-bottom: 2px solid #d946ef;
}

.carousel-track {
  display: flex;
  gap: 25px;
  animation: scroll-carousel 35s linear infinite;
  width: max-content;
}

.carousel-track img {
  height: 220px;
  width: 220px;
  object-fit: cover;
  border: 3px solid #d946ef;
  border-radius: 8px;
  box-shadow: 0 0 15px #d946ef, 0 0 30px rgba(217, 70, 239, 0.5);
  flex-shrink: 0;
  filter: grayscale(100%);
  transition: 0.3s;
}

.carousel-track img:hover {
  filter: grayscale(0%);
  box-shadow: 0 0 25px #d946ef, 0 0 50px rgba(217, 70, 239, 0.8);
  transform: scale(1.05);
}

@keyframes scroll-carousel {
 0% { transform: translateX(0); }
 100% { transform: translateX(-50%); }
}

.carousel-track:hover {
  animation-play-state: paused;
}

/* Sous-titre "VOTRE SON. NOTRE EXPERTISE." */
.hero-subtitle {
  font-size: 1.6rem; /* + gros */
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  
  /* Couleur cyan néon au lieu du blanc fade */
  color: #a5f3fc;
  
  /* Effet glow pour que ça claque sur le fond violet */
  text-shadow: 
    0 0 10px #22d3ee,
    0 0 25px rgba(34, 211, 238, 0.5),
    0 0 40px rgba(34, 211, 238, 0.3);
  
  margin: 15px 0 50px;
  text-align: center;
}

.formules-title {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #22d3ee !important;
  text-shadow: 0 0 10px #22d3ee, 0 0 25px rgba(34, 211, 238, 0.7) !important;
  text-align: center !important;
  letter-spacing: 4px !important;
  margin-bottom: 50px !important;
}

.reserve-title {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #22d3ee !important; /* cyan néon */
  text-shadow: 
    0 0 10px #22d3ee,
    0 0 25px rgba(34, 211, 238, 0.7),
    0 0 40px rgba(34, 211, 238, 0.4) !important;
  text-align: center !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  margin-bottom: 40px !important;
  margin-top: -20px !important; /* ça remonte le titre vers le haut */
}

.pricing-container .pricing-card h3,
.pricing-container .pricing-card .price {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
  margin: 0 auto 10px auto !important;
}

.pricing-container .pricing-card {
  text-align: center !important;
}

.pricing-card {
  text-align: center !important;
}

.pricing-card h3,
.pricing-card .price {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

/* 1. Met les cartes sur la même hauteur */
.pricing-container {
  display: flex !important;
  gap: 20px;
  align-items: stretch !important;
}

/* 2. Transforme chaque carte en colonne flex */
.pricing-card {
  display: flex !important;
  flex-direction: column !important;
  text-align: center !important;
}

/* 3. Pousse le bouton en bas */
.pricing-card button {
  margin-top: auto !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.btn-reserver {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #00f0ff;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  background: transparent;
}

.btn-reserver:hover {
  background: #00f0ff;
  color: #000;
  box-shadow: 0 0 15px #00f0ff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  text-align: center;
}

.service-item h3 {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
}

.service-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.6));
  transition: 0.3s;
}

.service-icon:hover {
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.9));
  transform: scale(1.1);
}

.site-footer {
  background: #0a0a0a;
  padding: 30px 20px;
  margin-top: 80px;
  border-top: 1px solid #222;
  text-align: center;
}

.footer-content h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #00d4ff;
}

.footer-copy {
  color: #666;
  font-size: 0.8rem;
}