/* Top bar */
.top-bar {
  background-color: #7080c0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  margin-right: 1rem;
}

/* Navbar */
.navbar {
  background-color: #fff;
  padding: 1rem 0;
  font-family: 'Poppins', sans-serif;
}

.navbar-nav a {
  color: #1a1a1a;
  margin-left: 1rem;
}
.btn-cta {
  background-color: #F4AA2E;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 3px 3px 10px rgb(59, 59, 59);
  text-shadow: none;
}
.modern-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
  
/* Navbar générale */
.modern-navbar {
 top: 15px; 
 position:absolute;
  width: 100%;
  z-index: 999;
  padding: 1rem 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  transition: all 0.4s ease;
  background: transparent;
}

/* Navbar scroll */
.modern-navbar.scrolled {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Logo */
.modern-navbar .navbar-brand img {
  height: 150px; /* augmente la taille ici */
  width: auto;
  transition: transform 0.3s;
}
.modern-navbar .navbar-brand:hover img {
  transform: scale(1.05);
}

/* Desktop menu */
.desktop-menu {

  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
 flex-direction: row;
}
.desktop-menu li a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}
.desktop-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #7080c0e3;
  transition: width 0.3s;
}
.desktop-menu li a:hover::after {
  width: 100%;
}
.desktop-menu li a:hover {
  color: #7080c0e3;
}

/* CTA bouton */
/* Hover */
.btn-cta:hover {
  background-color: #e89d22; /* légèrement plus foncé */
  color: #fff;
  transform: translateY(-3px); /* effet qui se lève */
  box-shadow: 6px 8px 18px rgba(0,0,0,0.25);
  text-decoration: none;
}

/* Click */
.btn-cta:active {
  transform: translateY(-1px);
  box-shadow: 3px 4px 10px rgba(0,0,0,0.2);
}

/* Burger mobile */
.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.burger span{
  width:25px;
  height:3px;
  background:#222;
  border-radius:3px;
}
.close-menu{
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(26,26,26,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 0.4s ease;
  z-index: 1000;
}
.menu-overlay.active {
  left: 0;
}
.menu-overlay ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
.menu-overlay ul li {
  margin: 2rem 0;
}
.menu-overlay ul li a {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
}
.menu-overlay ul li a:hover {
  color: #F4AA2E;
}


/* Responsive */
@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* Hero */
.hero-wrap {
  position: relative;
  background-image: url('../images/banner-accueil.webp');
  background-size: cover;
  background-position: top;
  height: 95vh;
  display: flex;
  align-items: center;
}
.hero-wrap .overlay {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(112,128,192,0.4);
}
.hero-content {
  text-shadow: 3px 3px 3px black;
  position: relative;
  text-align: center;
  color: #fff;
      /* Ajout pour descendre le texte */
    top: 20%; /* ajuste la valeur à ton besoin */
    transform: translateY(-50%); /* centre le texte autour de ce point */
}
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content h2 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.services-section {
  width: 100%;
  background-image: url("../images/background.png");
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 2.8rem;         /* taille plus grande */
    font-weight: 700;
    letter-spacing: 1px;       /* espacement des lettres */
    color: #F4AA2E;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    text-shadow: 2px 2px 2px black;
}


/* Mot mis en valeur avec un dégradé ou couleur */
.highlight {
 color: #F4AA2E;
}

/* Sous-titre élégant */
.section-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-top: 0.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* === Cartes services === */
.service-card {
  background: #ffffffa6;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.4s, box-shadow 0.4s;
}
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.icon-circle {
  width: 100px;
  height: 100px;
  background-color: #7080c0e3; /* couleur 1 */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  transition: background 0.3s;
}
.icon-circle img {
  width: 50%;
}

.service-card h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-card .highlight {
  color: #F4AA2E;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.btn-service {
  background-color: #F4AA2E; /* couleur secondaire */
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn-service:hover {
  background-color: #e09520;
  color: #e0e0e0;
  text-decoration: none;
  transform: translateY(-3px);
}

/* === Uniformiser la hauteur des cartes === */
.row > [class*='col-'] {
  display: flex;
}

/* === Responsive === */
@media (max-width: 992px) {
  .service-card { margin-bottom: 2rem; }
  .icon-circle { width: 80px; height: 80px; }
}
/* === Section Prestas === */
.prestas-section {
  padding: 80px 20px;
  width: 100%;
  background-image: url("../images/background.png");


  font-family: 'Poppins', sans-serif;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
}

/* === Grille responsive === */
.prestas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* === Carte Presta === */
.presta-card {
  background: #ffffffa6;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.presta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image */
.presta-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.presta-card:hover .presta-img {
  transform: scale(1.05);
}

/* Contenu */
.presta-content {
  padding: 25px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.presta-title {
  font-size: 1.5rem;
  font-weight: 700;

  margin-bottom: 12px;
}

.presta-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
}

.presta-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F4AA2E;
  margin-bottom: 18px;
}

/* Bouton */
.presta-btn {
  display: inline-block;
  text-align: center;
  padding: 12px 0;
  background-color: #F4AA2E;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.presta-btn:hover {
  background-color: #e6951f;
    color: #e0e0e0;
  text-decoration: none;
  transform: scale(1.05);
}
/* Section Témoignages */
.testimony-section {
  position: relative;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.testimony-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.testimony-section .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.testimony-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

/* Grille Témoignages */
.testimony-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Carte Témoignage */
.testimony-card {
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.testimony-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 2rem;
  color: #F4AA2E;
  margin-bottom: 15px;
}

.testimony-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimony-name {
  font-weight: 700;
  font-size: 1rem;
  color: #F4AA2E;
}
/* Section formulaire ZenPup modern */
.appointment-section {

  background: url("../images/background.png");
  background-position: cover;
  background-position: center;
  font-family: 'Poppins', sans-serif;
}

.appointment-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.appointment-form-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.appointment-form-wrapper p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

/* Formulaire */
.appointment-form .form-group,
.appointment-form .form-group-double {
  margin-bottom: 20px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
  margin-top: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(244,170,46,0.6);
  transform: translateY(-2px);
}

/* Double champs */
.form-group-double {
  display: flex;
  gap: 15px;
}

.form-group-double input {
  flex: 1;
}

/* Bouton */
.btn-submit {
  width: 100%;
  padding: 18px 0;
  border-radius: 30px;
  background: #F4AA2E;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #e6951f;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .form-group-double {
    flex-direction: column;
  }
  .appointment-form-wrapper {
    padding: 40px 20px;
  }
}
/* === Footer Moderne ZenPup === */
.footer-modern {
  background: #222;
  color: #fff;
  padding: 60px 20px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-modern a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-modern a:hover {
  color: #F4AA2E;
}

/* Grille Footer */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
}

/* Logo + social */
.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-btn i {
  color: #fff;
  font-size: 16px;
}

.social-btn:hover.facebook { background: #3b5998; transform: scale(1.1);}
.social-btn:hover.instagram { background: #e1306c; transform: scale(1.1);}

/* Menu */
.footer-menu h3,
.footer-contact h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F4AA2E;
}

.footer-menu ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-menu ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

/* Contact icons */
.footer-contact ul li i {
  margin-right: 10px;
  color: #F4AA2E;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }
  .footer-logo img {
    margin: 0 auto 20px auto;
    display: block;
  }
  .social-icons {
    justify-content: center;
  }
}
.hero-about {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.hero-about .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(112, 128, 192, 0.4);
}

.hero-about-content {
   text-shadow: 3px 3px 3px black;
  position: relative;
      top: 40px;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 30px 20px;
  animation: fadeInUp 1s ease forwards;
}
.about-section{
  background: url("../images/background.png");
  background-position: cover;
  background-position: center;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-about-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}

.hero-about-content .breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #F4AA2E;
}

.hero-about-content .breadcrumbs a {
  color: #F4AA2E;
  text-decoration: none;
}

.hero-about-content .breadcrumbs a:hover {
  text-decoration: underline;
}

.hero-about-content .breadcrumbs span {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-about-content h1 {
    font-size: 2rem;
  }
}


/* --- Hero --- */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap-reverse;
  margin-bottom: 80px;
  position: relative;
}

.hero-image {
  position: relative;
  flex: 1;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #555;
}

.hero-text p {
  font-size: 1.1rem;
}

/* --- Story & Method --- */
.story, .method {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  position: relative;
}

.text-side {
  flex: 1;
}

.image-side {
  flex: 1;
  position: relative;
}

.image-side img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.image-side img:hover {
  transform: scale(1.03);
}

/* --- Icons --- */
.icon img {
  width: 60px;
  margin-bottom: 20px;
}

/* --- CTA --- */
.cta {
  background-image: url("../images/dog-ress-3.jpg");
  background-attachment: fixed;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
.cta .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
     background-color: rgb(112 128 192 / 72%);
     inset: 0;
    z-index: 1;
}
.font-weight{
  font-weight: 700;
}

.cta .icon,
.cta h3,
.cta p,
.cta a{
  position: relative;
  z-index: 2;
}

.cta h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #ff7f50;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #ff5722;
}

/* --- Bubbles --- */
.bubble {
  position: absolute;
  border-radius: 50%;
  background-color: #7080c07a;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.bubble-1 { width: 80px; height: 80px; top: -20px; left: -30px; }
.bubble-2 { width: 50px; height: 50px; bottom: 10px; right: -20px; }
.bubble-3 { width: 60px; height: 60px; top: -10px; right: -30px; }
.bubble-4 { width: 40px; height: 40px; bottom: 20px; left: -20px; }
.bubble-5 { width: 70px; height: 70px; top: -20px; left: 10px; }
.bubble-6 { width: 60px; height: 60px; top: -30px; left: 10%; }
.bubble-7 { width: 50px; height: 50px; bottom: 10px; right: 15%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* --- Animations au scroll --- */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero, .story, .method {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text h2 {
    font-size: 1.4rem;
  }
}
.hero-presta {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.hero-presta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(112, 128, 192, 0.4);
}

.hero-presta-content {
   text-shadow: 3px 3px 3px black;
  position: relative;
      top: 40px;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 30px 20px;
  animation: fadeInUp 1s ease forwards;
}
.hero-presta-content .breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #F4AA2E;
}

.hero-presta-content .breadcrumbs a {
  color: #F4AA2E;
  text-decoration: none;
}

  .color-option {
    display: inline-block;
    margin: 5px;
  }
  .color-option input {
    display: none;
  }
  .color-option label {
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid #ccc;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    transition: border 0.2s;
  }
  .color-option input:checked + label {
    border: 3px solid #000;
  }

/* Container de la galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 50px;
}

/* Chaque carte de collier */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: #fff8f0;
  transform: translateY(20px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Animation lors du scroll */
.gallery-item.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Image du collier */
.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

/* Zoom léger sur l'image au hover */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay avec nom et description */
.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #7080c0e3, rgba(255,127,80,0));
  color: #fff;
  padding: 10px;
  transition: transform 0.3s ease;
  transform: translateY(100%);
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.overlay p {
  margin: 5px 0 0 0;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Scroll animation JS ajoute la classe .visible */
/* Section principale */
.privacy-section {
  background: url("../images/background.png");
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Container */
.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Titre principal */
.privacy-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 20px;
  color: #2e2e2e;
  font-weight: 600;
}

/* Introduction */
.privacy-intro {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
}

.privacy-intro a {
  font-weight: 800;
  color: #F4AA2E;
  text-decoration: none;
  font-weight: 500;
}

.privacy-intro a:hover {
  text-decoration: underline;
}

/* Cartes */
.privacy-card {
  background-color: #ffffff;
  padding: 35px;
  margin-bottom: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Titres sections */
.privacy-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #F4AA2E;
}

.privacy-card h3 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #333;
}

/* Listes */
.privacy-card ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.privacy-card ul li {
  margin-bottom: 8px;
  color: #555;
}

/* Paragraphes */
.privacy-card p {
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 30px;
  }

  .privacy-card {
    padding: 25px;
  }
}
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.model-card {
    position: relative;
    cursor: pointer;
    border: 2px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    text-align: center;
}

.model-card input {
    position: absolute;
    opacity: 0;
}

.model-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.model-card span {
    display: block;
    padding: 12px;
    font-weight: 500;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: #F4AA2E;
}

/* Effet sélection */
.model-card input:checked + img {
    filter: brightness(0.7);
}

.model-card input:checked ~ span {
    background-color: #F4AA2E;
    color: white;
}
/* Laptop */
@media (max-width: 1200px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }
}

/* Tablette */
@media (max-width: 992px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }
}

/* Petit mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }
}