/* Ajout des styles pour les messages de formulaire */
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Reste du fichier style.css inchangé */
:root {
  --primary-color: #ffd1dc;
  --secondary-color: #fff5f7;
  --text-color: #4a4a4a;
  --accent-color: #ff9eaf;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  padding-top: 60px; /* espace égal à la hauteur de la barre */

}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

header {
  background-color: var(--primary-color);
  padding: 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(10deg);
}

nav h1 {
  font-size: 2rem;
  color: white;
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1.1rem;
}

nav a:hover {
  color: var(--text-color);
}

main {
  margin-top: 80px;
}

section {
  padding: 3rem 1rem;
}

.hero {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 6rem 2rem;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background-color 0.3s;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color);
}

/* Styles pour la page événements */
.events-hero {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 6rem 2rem;
  margin-bottom: 2rem;
}

.events-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.events-hero p {
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: 300;
}

.press-articles {
  padding: 4rem 2rem;
  background-color: white;
}

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

.press-card {
  background-color: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.press-card:hover {
  transform: translateY(-5px);
}

.press-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.press-card:hover .press-image img {
  transform: scale(1.05);
}

.press-card h2 {
  padding: 1.5rem;
  font-size: 1.3rem;
  color: var(--text-color);
  flex-grow: 1;
}

.press-btn {
  margin: 0 1.5rem 1.5rem;
}

.contact-page {
  padding: 4rem 2rem;
  background-color: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.boutique-info {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.boutique-info h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  text-align: center;
}

.boutique-image {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
}

.boutique-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.boutique-image:hover img {
  transform: scale(1.05);
}

.boutique-description p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.8;
}

.boutique-details {
  display: grid;
  gap: 1.5rem;
}

.detail-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.detail-item p {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 300;
}

.contact-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group textarea {
  resize: vertical;
}

.collection {
  background-color: white;
}

.collection h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

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

.card {
  background-color: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card h3 {
  padding: 1rem;
  font-size: 1.5rem;
}

.card p {
  padding: 0 1rem 1rem;
  font-weight: 300;
}


.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.services-table {
  width: 100%;
  max-width: 1000px;
  margin: 4rem auto;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.services-table th {
  background-color: var(--primary-color);
  color: white;
  padding: 1.2rem;
  text-align: left;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
}

.services-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--secondary-color);
}

.services-table tr:last-child td {
  border-bottom: none;
}

.services-table .category {
  background-color: var(--secondary-color);
  font-weight: bold;
  color: var(--text-color);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}

.services-table .price {
  font-weight: bold;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.services-table .description {
  font-size: 0.9rem;
  color: #666;
  max-width: 600px;
  font-weight: 300;
}

.about {
  background-color: var(--secondary-color);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
}

.contact {
  background-color: white;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 300;
}

/* Styles pour la page prestations */
.prestations-hero {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 6rem 2rem;
  margin-bottom: 2rem;
}

.prestations-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.prestations-hero p {
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: 300;
}

.service-section {
  padding: 4rem 2rem;
  background-color: white;
}

.service-section:nth-child(even) {
  background-color: var(--secondary-color);
}

.service-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.reverse .service-content {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.service-text h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
  color: var(--text-color);
}

.service-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.service-text ul {
  list-style: none;
  margin-left: 1rem;
}

.service-text li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 300;
  position: relative;
  padding-left: 1.5rem;
}

.service-text li::before {
  content: "✨";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.service-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.special-workshop {
  background-color: var(--secondary-color);
  position: relative;
}

.special-workshop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

/* Styles pour la page tarifs */
.tarifs-section {
  padding: 2rem;
  background-color: white;
}

.tarifs-container {
  max-width: 1200px;
  margin: 0 auto;
}

footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Styles pour le menu hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  nav {
    padding: 1rem;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: transform 0.3s ease-in-out;
  }
  nav ul.active {
    display: flex;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .logo-container {
    justify-content: center;
  }

  nav h1 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  /* Modifications spécifiques pour le carrousel mobile - FORCER LA LARGEUR PLEINE */
  .collection {
    padding: 3rem 0; /* Enlever le padding horizontal */
  }


  .prev {
    left: 10px !important;
  }

  .next {
    right: 10px !important;
  }

  .services-table {
    margin: 2rem 1rem;
    font-size: 0.9rem;
  }

  .services-table th,
  .services-table td {
    padding: 0.8rem;
  }

  .services-table .description {
    font-size: 0.8rem;
  }

  .prestations-hero {
    padding: 4rem 1rem;
  }

  .prestations-hero h1 {
    font-size: 2.5rem;
  }

  .service-content {
    flex-direction: column;
    gap: 2rem;
  }

  .reverse .service-content {
    flex-direction: column;
  }

  .service-text h2 {
    font-size: 2rem;
  }

  .service-image img {
    height: 300px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .boutique-info,
  .contact-form-container {
    padding: 1.5rem;
  }

  .boutique-info h2,
  .contact-form-container h2 {
    font-size: 2rem;
  }

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

  .press-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .events-hero h1 {
    font-size: 2.5rem;
  }
}