/* Styles pour le contenu des pages */


.intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  background: var(--pastel-pink);
  border-radius: 15px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-item p {
  color: #666;
  line-height: 1.5;
}

/* Styles pour les titres */
h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

/* Styles pour la galerie */
.gallery-section {
  margin: 4rem 0;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
  font-size: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.gallery-item {
  background: var(--pastel-mint);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: translateY(-10px);
}

/* Placeholder pour les images */
.image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(45deg, #f3f3f3, #e1e1e1);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 1.1rem;
  text-align: center;
  width: 100%;
  padding: 1rem;
}

.image-placeholder::after {
  content: "📸";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.5rem;
}

/* Style pour les vraies images */
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.image-caption {
  padding: 1.5rem;
  background: var(--pastel-lavender);
  border-radius: 15px;
}

.image-caption h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.image-caption p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Animation au survol */
.gallery-item:hover .image-caption {
  background: rgba(255, 255, 255, 0.2);
}

/* Media queries pour la galerie */
@media (max-width: 768px) {
  .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .image-placeholder {
      height: 250px;
  }
}

/* Mise à jour des couleurs pastel avec plus de transparence */
:root {
  --pastel-pink: rgba(255, 218, 233, 0.4);    /* De 0.8 à 0.4 */
  --pastel-blue: rgba(218, 233, 255, 0.4);    /* De 0.8 à 0.4 */
  --pastel-mint: rgba(218, 255, 233, 0.4);    /* De 0.8 à 0.4 */
  --pastel-lavender: rgba(233, 218, 255, 0.4); /* De 0.8 à 0.4 */
  --pastel-peach: rgba(255, 228, 218, 0.4);   /* De 0.8 à 0.4 */
}

/* Augmentation du flou pour compenser la transparence */
.content-section, .glass-footer {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.feature-item, .gallery-item, .image-caption {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.formation-section {
  border: none;
  background: rgba(233, 218, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.contact-info {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-info-item {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-section {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Ajout d'une bordure plus visible pour définir les contours */
.feature-item:hover {
  background: rgba(255, 218, 233, 0.5);
}

.gallery-item:hover .image-caption {
  background: rgba(233, 218, 255, 0.5);
}

.social-link {
  background: rgba(255, 255, 255, 0.15);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Footer avec plus de transparence */
.footer-bottom {
  background: rgba(255, 255, 255, 0.05);
}

/* Styles pour les packs */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pack-item {
  background: rgba(255, 255, 255, 0.1);
}

.pack-item:hover {
  transform: translateY(-5px);
}

.pack-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pack-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.pack-price {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: bold;
}

.pack-description {
  color: #666;
  margin: 1rem 0;
  line-height: 1.6;
}

.pack-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pack-features li {
  padding: 0.5rem 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pack-features li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
}

.pack-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.pack-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}

.pack-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Galerie d'exemples */
.example-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Styles de base */
html {
  height: 100%;
  margin: 0;
  padding: 0;
}


/* Animation des cercles flottants */
.floating-circles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background-color: skyblue;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background-color: pink;
  top: 40%;
  right: 25%;
  animation-delay: -5s;
}

.circle-3 {
  width: 250px;
  height: 250px;
  background-color: orange;
  bottom: 20%;
  left: 30%;
  animation-delay: -10s;
}

.circle-4 {
  width: 280px;
  height: 280px;
  background-color: #8B4513;
  top: 30%;
  right: 10%;
  animation-delay: -15s;
}

.circle-5 {
  width: 180px;
  height: 180px;
  background-color: var(--primary-color);
  left: 45%;
  top: 15%;
  animation-delay: -3s;
}

@keyframes float {
  0% {
      transform: translate(0, 0) rotate(0deg);
  }
  25% {
      transform: translate(10%, 10%) rotate(90deg);
  }
  50% {
      transform: translate(0, 20%) rotate(180deg);
  }
  75% {
      transform: translate(-10%, 10%) rotate(270deg);
  }
  100% {
      transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Contenu avec images */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.text-content {
  padding: 2rem;
}

.image-placeholder {
  background: var(--pastel-peach);
  border-radius: 20px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #5C2C0C;
  border: 2px dashed rgba(92, 44, 12, 0.3);
  position: relative;
}

.image-placeholder::before {
  content: "Insérer une photo ici";
}

@media (max-width: 768px) {
  .content-with-image {
      grid-template-columns: 1fr;
  }
}

/* Styles pour la grille de photos */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.photo-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.photo-item:hover {
  transform: translateY(-5px);
}

.photo-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.photo-item:hover .photo-caption {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 2rem;
  color: #333;
  margin: 3rem 0 1.5rem;
  text-align: center;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #666;
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-card {
  background: var(--pastel-peach);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card h3 {
  color: #5C2C0C;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.info-card p {
  color: #8B3613;
  line-height: 1.8;
  font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 768px) {
  .pack-grid {
      grid-template-columns: 1fr;
  }

  .info-grid {
      grid-template-columns: 1fr;
  }

  .pack-card {
      margin: 1rem;
  }
}

/* Styles pour les placeholders de photos */
.photo-placeholder {
  position: relative;
  width: 100%;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.photo-placeholder::before {
  content: attr(data-caption);
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #333;
  font-size: 0.9rem;
  opacity: 0.7;
}

.placeholder-text {
  color: #333;
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
}

.photo-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.15);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.photo-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.photo-caption {
  color: #333;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Style pour la photo principale */
.main-photo {
  width: auto;
  height: 700px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.photo-frame {
  background: transparent;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .main-photo {
      height: 500px;
  }
}

/* Styles pour la page contact */
.contact-section {
  padding: 2rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.contact-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.8rem;
  width: 100%;
  margin-bottom: 1rem;
  color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.2);
}

.submit-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 600;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1rem;
}

.info-item h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-item p {
  color: #666;
  line-height: 1.5;
}

.icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.location-icon {
  background-image: url('assets/location-icon.svg');
}

.email-icon {
  background-image: url('assets/email-icon.svg');
}

.phone-icon {
  background-image: url('assets/phone-icon.svg');
}

@media (max-width: 768px) {
  .contact-grid {
      grid-template-columns: 1fr;
  }

  .contact-container {
      padding: 1.5rem;
  }
}

/* Styles pour la page chats-approche.html */
.hero-section {
  margin: -2rem -2rem 2rem -2rem;
  overflow: hidden;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 4rem 0;
}

.text-content {
  padding-right: 2rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.grid-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.grid-image:hover {
  transform: scale(1.02);
}

.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem 0;
}

.feature-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin: 1rem 0;
  padding-left: 2rem;
  position: relative;
}

.feature-list li:before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.5em;
}

.gallery-section {
  margin: 4rem 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #cd904a;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 1.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #cd904a;
}

@media (max-width: 768px) {
  .intro-section,
  .split-content,
  .gallery-grid,
  .cta-section {
      grid-template-columns: 1fr;
  }

  .hero-image {
      height: 40vh;
  }

  .text-content {
      padding-right: 0;
  }

  .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Styles temporaires pour visualiser les emplacements d'images */
.hero-image {
  width: 100%;
  height: 60vh; /* 60% de la hauteur de l'écran */
  min-height: 400px;
  background: #ddd;
  position: relative;
}

.hero-image::after {
  content: 'Image Hero: 100% x 60vh (min 400px)';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
}

.grid-image {
  width: 100%;
  height: 300px; /* Hauteur fixe */
  background: #e5e5e5;
  border-radius: 15px;
  position: relative;
}

.grid-image::after {
  content: 'Image Grid: 100% x 300px';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
}

.feature-image {
  width: 100%;
  height: 500px; /* Hauteur fixe */
  background: #e0e0e0;
  border-radius: 15px;
  position: relative;
}

.feature-image::after {
  content: 'Image Feature: 100% x 500px';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1; /* Carré parfait */
  background: #e8e8e8;
}

.gallery-item::after {
  content: 'Image Gallery: Carré (1:1)';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-image {
      height: 40vh;
      min-height: 300px;
  }

  .grid-image {
      height: 250px;
  }

  .feature-image {
      height: 400px;
  }
}

/* Ajout des styles pour que l'image d'introduction occupe presque toute la largeur du container */
.intro-section .content-with-image {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.intro-section .text-content {
  order: 2;
  padding: 0 2rem;
}

.intro-section .image-placeholder {
  order: 1;
  width: 100%;
  height: 70vh;
  margin: 0;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .intro-section .image-placeholder {
      height: 50vh;
  }
  
  .intro-section .text-content {
      padding: 0 1rem;
  }
}

/* Styles pour les informations de contact */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info-item h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-info-item p {
  color: #666;
  line-height: 1.6;
}

.contact-info-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--primary-color);
}

.contact-info-item .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-info-item .social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-info-item .social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-info {
      grid-template-columns: 1fr;
      padding: 1rem;
  }

  .contact-info-item {
      padding: 1.5rem;
  }
}

/* Ajout des styles pour le placeholder d'image dans la section hero */
.hero-image .image-placeholder {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .hero-section {
      margin: -1rem -1rem 1rem -1rem;
  }
  
  .hero-image {
      width: calc(100% + 2rem);
      height: 60vh;
  }
  
  .hero-image .image-placeholder {
      border-radius: 10px;
  }
}

/* Ajout des styles responsives pour la section hero */
@media (max-width: 768px) {
  .hero-section {
      padding: 0 1rem;
      margin-bottom: 1rem;
  }
  
  .hero-image {
      height: 60vh;
  }
  
  .hero-image .image-placeholder {
      border-radius: 15px;
  }
}

/* Style pour le texte plus grand */
.large-text {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  max-width: 100%;
}

@media (max-width: 768px) {
  .large-text {
      font-size: 1.25rem;
      line-height: 1.5;
  }
}

/* Section Formation */
.formation-section {
  padding: 2rem;
  background: rgba(233, 218, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.formation-section:hover {
  background: rgba(255, 218, 233, 0.5);
  transition: background 0.3s ease;
}

.formation-section .content-with-image {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.formation-section .text-content {
  flex: 1;
}

.formation-section .formation-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.formation-section .feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.formation-section .feature-image:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .formation-section .content-with-image {
      flex-direction: column;
  }

  .formation-section {
      padding: 1.5rem;
      margin: 1rem 0;
  }
}

/* Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-grid .image-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  transition: transform 0.3s ease;
}

.gallery-grid .image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
}

.gallery-grid img {
  transition: transform 0.3s ease;
}

.gallery-grid .image-container:hover img {
  transform: scale(1.05);
}

/* Règles globales pour les images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Règles spécifiques pour différents types d'images */
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* Ratio par défaut 4:3 */
  overflow: hidden;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.square-image {
  padding-bottom: 100%; /* Ratio 1:1 */
}

.portrait-image {
  padding-bottom: 133.33%; /* Ratio 3:4 */
}

.landscape-image {
  padding-bottom: 75%; /* Ratio 4:3 */
}

/* Styles pour le lien de formation */
.formation-link {
  text-align: center;
  margin-top: 1rem;
}

.formation-link a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: rgba(233, 218, 255, 0.4);
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.formation-link a:hover {
  background: rgba(255, 218, 233, 0.5);
  transform: translateY(-2px);
}

/* Styles pour la modale */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #333;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close-modal:hover {
  color: #000;
}

.modal iframe {
  border-radius: 10px;
  margin-top: 20px;
}

/* Mise à jour des styles du footer */
.glass-footer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 0 2rem;
}

.footer-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
}

.footer-section h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-section p, 
.footer-section li {
  color: #666;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-section a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

.footer .social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #666;
}

.footer .social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
      padding: 0 1rem;
  }

  .footer-section {
      padding: 1.2rem;
  }

  .footer-section h3::after {
      left: 50%;
      transform: translateX(-50%);
  }

  .footer .social-links {
      justify-content: center;
  }

  .footer-section a:hover {
      padding-left: 0;
  }
}


/* Hero Section */
.hero-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 2rem auto;
  padding: 0 2rem;
}

.hero-image {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image .image-placeholder {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0;
}

.subtitle {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.hero-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.service-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-icons img {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.shop-now, .schedule-call {
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.shop-now {
  background: var(--primary-color);
  color: white;
}

.schedule-call {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
}

/* Pet Images */
.pet-images {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.main-image {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-frame {
  background: transparent;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 700px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-photo {
  height: 100%;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .photo-frame {
      height: 500px;
  }
}

.side-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.side-image {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.side-image:nth-child(1) {
  top: -20px;
  left: -20px;
}

.side-image:nth-child(2) {
  bottom: -20px;
  right: -20px;
}

/* Image placeholders */
.image-placeholder {
  background: linear-gradient(45deg, var(--color-1), var(--color-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
}

.image-placeholder span {
  color: var(--text-color);
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Main image placeholder */
.main-image .image-placeholder {
  width: 500px;
  height: 500px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Side image placeholders */
.side-image.image-placeholder {
  width: 150px;
  height: 150px;
  position: absolute;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.side-images .image-placeholder:nth-child(1) {
  top: -20px;
  left: -20px;
  background: linear-gradient(45deg, var(--color-2), var(--color-3));
}

.side-images .image-placeholder:nth-child(2) {
  bottom: -20px;
  right: -20px;
  background: linear-gradient(45deg, var(--color-3), var(--color-4));
}

/* Images placeholders avec tailles spécifiques */
.image-placeholder {
  background: var(--pastel-peach);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #5C2C0C;
  border: 2px dashed rgba(92, 44, 12, 0.3);
  position: relative;
}

/* Grand format - Pour les images principales */
.image-placeholder.large {
  width: 100%;
  height: 600px;
}

/* Format moyen - Pour les sections de contenu */
.image-placeholder.medium {
  width: 100%;
  height: 400px;
}

/* Format carré - Pour les portraits */
.image-placeholder.square {
  width: 100%;
  aspect-ratio: 1/1;
}

/* Format paysage - Pour les scènes d'action */
.image-placeholder.landscape {
  width: 100%;
  aspect-ratio: 16/9;
}

/* Format portrait - Pour les photos verticales */
.image-placeholder.portrait {
  width: 100%;
  aspect-ratio: 3/4;
}

/* Petites vignettes - Pour les galeries */
.image-placeholder.thumbnail {
  width: 100%;
  height: 200px;
}

/* Affichage des dimensions sur le placeholder */
.image-placeholder::before {
  content: attr(data-size);
  position: absolute;
  font-family: 'Space Grotesk', sans-serif;
}

/* Grilles spécifiques */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .image-placeholder.large {
      height: 400px;
  }

  .image-placeholder.medium {
      height: 300px;
  }

  .portrait-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .image-placeholder.large {
      height: 300px;
  }

  .image-placeholder.medium {
      height: 250px;
  }

  .portrait-grid {
      grid-template-columns: 1fr;
  }
}

/* Features Section */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-item {
  background: var(--pastel-peach);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h3 {
  color: #5C2C0C;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.feature-item h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: rgba(92, 44, 12, 0.3);
}

.feature-item ul {
  list-style: none;
  padding: 0;
}

.feature-item ul li {
  color: #8B3613;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.6;
}

.feature-item ul li::before {
  content: "•";
  position: absolute;
  left: 0;
    
	
}

/* Style de base pour la section parcours */
.content-section .photo-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

/* Media query pour les appareils mobiles */
@media (max-width: 768px) {
  .content-section .photo-wrapper {
    flex-direction: column; /* Change la direction en colonne */
    text-align: center;
  }

  .content-section .photo-container {
    margin: 0 auto 2rem auto; /* Centre le conteneur de la photo et ajoute une marge en bas */
    width: 100% !important; /* Force la largeur à 100% */
    max-width: 500px; /* Limite la largeur maximale */
    height: auto !important; /* Hauteur automatique */
    aspect-ratio: 500/650; /* Maintient le ratio d'aspect */
  }

  .content-section .text-content {
    width: 100%; /* Texte sur toute la largeur */
  }
}

/* Contenu avec images */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .content-with-image {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .content-with-image .image-container {
    order: -1;
    width: 100%;
  }

  .content-with-image .text-content {
    padding: 0 1rem;
  }

  .content-with-image img,
  .content-with-image .image-placeholder {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
  }
}

/* Ajustements responsifs généraux */
@media (max-width: 768px) {
  .section {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .intro {
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}