/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  min-height: 100vh;
  background: linear-gradient(135deg, #1c0f18, #3a162a, #8a077b);
  padding-top: 100px; /* espace pour navbar */
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff2f92;
  font-family: 'Montserrat', sans-serif;
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ff2f92;
}

/* ================= HERO ================= */
.page-hero {
  text-align: center;
  padding: 120px 8% 80px;
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
  opacity: 0.9;
}

/* ================= CONTACT FORM ================= */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 8%;
}

.contact-form {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 35px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06); /* glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 45px rgba(0,0,0,0.35);
  transition: 0.4s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 65px rgba(255,47,146,0.35);
  border-color: rgba(255, 47, 146, 0.4);
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff2f92;
  background: rgba(255,255,255,0.12);
}

.contact-form button {
  padding: 12px 38px;
  border-radius: 30px;
  background: #ff2f92;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255,47,146,0.9);
}

/* ================= FOOTER ================= */
footer {
  padding: 25px;
  text-align: center;
  background: #000;
  color: #fff;
  margin-top: 60px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.4rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .contact-form {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-form button {
    width: 100%;
  }
}


/* ================= ANIMATION SCROLL & FADE-IN ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in + léger scale pour les cards */
.fade-up {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.8s ease-out;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* Animation hover pour les cartes */
.service-card,
.about-text,
.contact-form {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover,
.about-text:hover,
.contact-form:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 45px 75px rgba(255, 47, 146, 0.35);
  border-color: rgba(255, 47, 146, 0.4);
}

.hover-effect {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 45px 75px rgba(255, 47, 146, 0.35);
  border-color: rgba(255, 47, 146, 0.4);
}

body {
  cursor: pointer; /* ou default selon ton choix */
}

.service-card:hover::after,
.about-text:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  box-shadow: 0 0 40px rgba(255, 47, 146, 0.4);
  pointer-events: none;
}

/* Éléments interactifs : boutons, liens, certains textes */
.interactive {
  transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
  cursor: pointer;
}

/* Hover pour desktop */
.interactive:hover {
  transform: translateY(-2px);
  text-shadow: 0 2px 6px rgba(255, 47, 146, 0.3);
  color: var(--pink-soft); /* optionnel pour un effet subtil */
}

/* Touch sur mobile : ajoute temporairement la même animation */
.hover-touch {
  transform: translateY(-2px) !important;
  text-shadow: 0 2px 6px rgba(255, 47, 146, 0.3) !important;
  color: var(--pink-soft) !important;
}

