/* Variables CSS pour la palette de couleurs */
:root {
  --electric-blue: #0066FF;
  --orange-pink: #FF5E57;
  --warm-cream: #FAF3E0;
  --charcoal-gray: #1F1F1F;
  --deep-indigo: #3C3C84;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
}

/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Ajout d'un padding pour éviter que l'en-tête fixe ne recouvre le contenu */
}

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal-gray);
  background-color: var(--warm-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--deep-indigo);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover, a:focus {
  color: var(--orange-pink);
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  background: var(--electric-blue);
  color: var(--white);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover, .btn:focus {
  background: var(--deep-indigo);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow);
  text-decoration: none;
  color: var(--white);
}

.btn-secondary {
  background: var(--orange-pink);
}

.btn-secondary:hover {
  background: #e54c45;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--deep-indigo) 0%, var(--electric-blue) 100%);
  color: var(--white);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo a {
  color: var(--white);
}

.logo a:hover {
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style-type: none;
}

nav li {
  margin-left: 20px;
}

nav a {
  color: var(--white);
  font-weight: 500;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(60, 60, 132, 0.85) 0%, rgba(0, 102, 255, 0.85) 100%), url('./img/LPZfwd.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 94, 87, 0.2);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 94, 87, 0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections communes */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--orange-pink);
  border-radius: 2px;
}

/* Présentation */
.presentation {
  background-color: var(--white);
}

.presentation-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.presentation-text {
  flex: 1;
}

.presentation-image {
  flex: 1;
  max-width: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
}

.presentation-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.presentation-image:hover img {
  transform: scale(1.05);
}

/* Services */
.services {
  background-color: var(--warm-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px;
}

.service-title {
  color: var(--deep-indigo);
  margin-bottom: 10px;
}

.service-price {
  font-weight: 700;
  color: var(--orange-pink);
  margin-top: 15px;
}

/* Avantages */
.advantages {
  background: linear-gradient(to right, var(--white), var(--warm-cream));
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow);
}

.advantage-icon {
  font-size: 2.5rem;
  color: var(--electric-blue);
  margin-bottom: 20px;
}

.advantages-image {
  max-width: 100%;
  margin-top: 40px;
  text-align: center;
}

.advantages-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px var(--shadow);
}

/* Processus */
.process {
  background: var(--white);
}

.process-steps {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.process-steps::before {
  content: none;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 22%;
  margin-bottom: 0;
}

.step:nth-child(odd) {
  flex-direction: column;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--electric-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  margin-bottom: 15px;
}

.step-content {
  width: 100%;
  background: var(--warm-cream);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
}

.step-content h3 {
  text-align: center;
  font-size: 1.2rem;
}

/* Témoignages */
.testimonials {
  background: linear-gradient(to left, var(--warm-cream), var(--white));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 5rem;
  color: rgba(0, 102, 255, 0.1);
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-role {
  color: var(--electric-blue);
  font-weight: 500;
}

.testimonials-image {
  max-width: 100%;
  margin-top: 40px;
  text-align: center;
}

.testimonials-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px var(--shadow);
}

/* Formulaire */
.contact-form {
  background: var(--white);
  padding: 50px 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--warm-cream);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--deep-indigo);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e1e1;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
}

.form-select {
  height: 45px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-input {
  margin-top: 5px;
  margin-right: 10px;
}

/* Footer */
footer {
  background: var(--deep-indigo);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-contact li {
  margin-bottom: 10px;
  list-style-type: none;
}

.footer-links h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style-type: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: var(--orange-pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 8px;
  z-index: 9999;
  max-width: 400px;
  width: calc(100% - 40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-popup p {
  margin-bottom: 15px;
}

.cookie-actions {
  display: flex;
  justify-content: space-between;
}

/* Pages de politique */
.policy-page {
  padding: 150px 0 80px;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
}

.policy-title {
  margin-bottom: 30px;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h3 {
  margin-bottom: 15px;
}

/* Page de remerciement */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(60, 60, 132, 0.85) 0%, rgba(0, 102, 255, 0.85) 100%), url('./img/LPZfwd.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  padding: 80px 0;
}

.thank-you::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.thank-you-container {
  max-width: 600px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.thank-you h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.thank-you h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--orange-pink);
  border-radius: 2px;
}

.thank-you p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.thank-you .btn {
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  background: var(--orange-pink);
  color: var(--white);
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 94, 87, 0.4);
}

.thank-you .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 94, 87, 0.6);
  background: var(--deep-indigo);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .step-number {
    margin-bottom: 15px;
  }
  
  .step-content {
    width: 100%;
    margin-left: 0;
  }
}

/* Styles pour la navigation mobile */
@media (max-width: 768px) {
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--deep-indigo) 0%, var(--electric-blue) 100%);
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }
  
  header nav.active {
    display: block;
  }
  
  header nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  
  header nav li {
    margin: 10px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .presentation-content {
    flex-direction: column;
  }
  
  .presentation-image {
    max-width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .step-content {
    width: 75%;
  }
  
  .form-container {
    padding: 20px;
  }
} 