/* Google font pour la typographie */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page active */
.active-link {
  color: #669a17 !important; 
  font-weight: bold;
}

.btn-brown {
  background-color: #4e342e;
  color: #fff;
  border: none;
}
.heart.favori {
  color: #db1f0a;
}

/* Typo pour les titres */
h1,
h2,
h4 {
  font-family: "Lora", serif;
}
/* Typo pour les textes */
p,
li,
a {
  font-family: "Open Sans", sans-serif;
}
body {
  /* font-family: "Segoe UI", sans-serif; */
  background-color: #d7bda6;
}
/*************************************************************  */

/****************************** NAVBAR ***********************/
.header-logo {
  width: 70px;
  height: auto;
  border-radius: 50%;
}
.header-fond {
  background-color: #4e342e !important;
}

.navbar-nav .nav-lien a {
  /* Espacement entre les liens */
  color: #f5f0eb;
  margin-left: 15px;
  font-size: 1.5rem;
}
.drop-item li a {
  color: #4e342e !important;
}
.nav-lien i {
  font-size: 1.5rem;
  /* Espacement entre l'icône et le texte */
  margin-right: 5px;
}
.navbar-nav .nav-lien a:hover {
  color: #d7bda6 !important;
  border-bottom: 3px solid #669a17;
  border-left: 1px solid #669a17;
  font-weight: bold;
  transition: all 0.3s ease;
}
.navbar-nav .nav-lien i:hover {
  color: #d7bda6 !important;
}

.hero {
  background: url("../img/image_2.JPG") no-repeat center center;
  height: 60vh;
  background-size: cover;
}

.Update-btn {
  background-color: #6e7c59;
  border: none;
}

/**********************************************************  */
/*####################################################### PAGES ADMIN  */

/* ########################################################## ARTICLES */
/* Styles personnalisés pour l'interface admin articles */
.admin-header {
  background: linear-gradient(135deg, #6e7c59 0%, #4e342e 100%);
  position: relative;
  overflow: hidden;
}

.admin-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,50"/></svg>')
    no-repeat bottom;
  background-size: cover;
}

.admin-header .content {
  position: relative;
  z-index: 2;
}

.welcome-icon {
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.admin-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.custom-table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.custom-table thead {
  background: linear-gradient(135deg, #6e7c59 0%, #4e342e 100%);
  color: white;
}

.custom-table thead th {
  border: none;
  padding: 20px 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.custom-table tbody tr {
  transition: all 0.3s ease;
  border: none;
}

.custom-table tbody tr:hover {
  background: linear-gradient(
    135deg,
    rgba(110, 124, 89, 0.1) 0%,
    rgba(215, 189, 166, 0.1) 100%
  );
  transform: scale(1.01);
}

.custom-table tbody td {
  padding: 20px 15px;
  border: none;
  vertical-align: middle;
  font-weight: 500;
}

.article-image {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  object-fit: cover;
}

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

.status-badge {
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: inline-block;
}

.status-valide {
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  color: white;
  box-shadow: 0 3px 10px rgba(110, 124, 89, 0.4);
}

.status-non-valide {
  background: linear-gradient(135deg, #d7bda6, #6e7c59);
  color: #4e342e;
  box-shadow: 0 3px 10px rgba(215, 189, 166, 0.4);
}

.status-en-attente {
  background: linear-gradient(135deg, #4e342e, #d7bda6);
  color: white;
  box-shadow: 0 3px 10px rgba(78, 52, 46, 0.4);
}

.action-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 2px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}

.btn-validate {
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  color: white;
  box-shadow: 0 3px 10px rgba(110, 124, 89, 0.3);
}

.btn-validate:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 124, 89, 0.5);
  color: white;
}

.btn-reject {
  background: linear-gradient(135deg, #d7bda6, #6e7c59);
  color: #4e342e;
  box-shadow: 0 3px 10px rgba(215, 189, 166, 0.3);
}

.btn-reject:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(215, 189, 166, 0.5);
  color: #4e342e;
}

.btn-delete {
  background: linear-gradient(135deg, #4e342e, #6e7c59);
  color: white;
  box-shadow: 0 3px 10px rgba(78, 52, 46, 0.3);
}

.btn-delete:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 52, 46, 0.5);
  color: white;
}

.stats-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-title {
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 2rem;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-elements::before,
.floating-elements::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-elements::after {
  width: 60px;
  height: 60px;
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.article-title {
  font-weight: 600;
  color: #4e342e;
  font-size: 1.1rem;
  line-height: 1.4;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 120px;
  height: 80px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(110, 124, 89, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* ############################################################ UTILISATEURS */
/* Styles personnalisés pour l'interface admin */
.admin-header {
  background: linear-gradient(135deg, #6e7c59 0%, #4e342e 100%);
  position: relative;
  overflow: hidden;
}

.admin-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,50"/></svg>')
    no-repeat bottom;
  background-size: cover;
}

.admin-header .content {
  position: relative;
  z-index: 2;
}

.welcome-icon {
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.admin-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.custom-table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.custom-table thead {
  background: linear-gradient(135deg, #6e7c59 0%, #4e342e 100%);
  color: white;
}

.custom-table thead th {
  border: none;
  padding: 20px 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.custom-table tbody tr {
  transition: all 0.3s ease;
  border: none;
}

.custom-table tbody tr:hover {
  background: linear-gradient(
    135deg,
    rgba(110, 124, 89, 0.1) 0%,
    rgba(215, 189, 166, 0.1) 100%
  );
  transform: scale(1.02);
}

.custom-table tbody td {
  padding: 20px 15px;
  border: none;
  vertical-align: middle;
  font-weight: 500;
}

.role-badge {
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.role-admin {
  background: linear-gradient(135deg, #4e342e, #6e7c59);
  color: white;
  box-shadow: 0 5px 15px rgba(78, 52, 46, 0.4);
}

.role-user {
  background: linear-gradient(135deg, #d7bda6, #6e7c59);
  color: white;
  box-shadow: 0 5px 15px rgba(215, 189, 166, 0.4);
}

.role-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
}

.delete-btn {
  color: #4e342e;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.delete-btn:hover {
  background: #4e342e;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(78, 52, 46, 0.4);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 10px;
}

.stats-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-title {
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 2rem;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-elements::before,
.floating-elements::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-elements::after {
  width: 60px;
  height: 60px;
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.article-title {
  font-weight: 600;
  color: #4e342e;
  font-size: 1.1rem;
  line-height: 1.4;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 120px;
  height: 80px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(110, 124, 89, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* ############################################################ UTILISATEURS */
/* Styles personnalisés pour l'interface admin */
.admin-header {
  background: linear-gradient(135deg, #6e7c59 0%, #4e342e 100%);
  position: relative;
  overflow: hidden;
}

.admin-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,50"/></svg>')
    no-repeat bottom;
  background-size: cover;
}

.admin-header .content {
  position: relative;
  z-index: 2;
}

.welcome-icon {
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.admin-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.custom-table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.custom-table thead {
  background: linear-gradient(135deg, #6e7c59 0%, #4e342e 100%);
  color: white;
}

.custom-table thead th {
  border: none;
  padding: 20px 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.custom-table tbody tr {
  transition: all 0.3s ease;
  border: none;
}

.custom-table tbody tr:hover {
  background: linear-gradient(
    135deg,
    rgba(110, 124, 89, 0.1) 0%,
    rgba(215, 189, 166, 0.1) 100%
  );
  transform: scale(1.02);
}

.custom-table tbody td {
  padding: 20px 15px;
  border: none;
  vertical-align: middle;
  font-weight: 500;
}

.role-badge {
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.role-admin {
  background: linear-gradient(135deg, #4e342e, #6e7c59);
  color: white;
  box-shadow: 0 5px 15px rgba(78, 52, 46, 0.4);
}

.role-user {
  background: linear-gradient(135deg, #d7bda6, #6e7c59);
  color: white;
  box-shadow: 0 5px 15px rgba(215, 189, 166, 0.4);
}

.role-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
}

.delete-btn {
  color: #4e342e;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.delete-btn:hover {
  background: #4e342e;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(78, 52, 46, 0.4);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 10px;
}

.stats-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-title {
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 2rem;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-elements::before,
.floating-elements::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-elements::after {
  width: 60px;
  height: 60px;
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.article-title {
  font-weight: 600;
  color: #4e342e;
  font-size: 1.1rem;
  line-height: 1.4;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 120px;
  height: 80px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(110, 124, 89, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* ############################################################ UTILISATEURS */
/* Styles personnalisés pour l'interface admin */
.admin-header {
  background: linear-gradient(135deg, #6e7c59 0%, #4e342e 100%);
  position: relative;
  overflow: hidden;
}

.admin-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,50"/></svg>')
    no-repeat bottom;
  background-size: cover;
}

.admin-header .content {
  position: relative;
  z-index: 2;
}

.welcome-icon {
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.admin-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.custom-table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.custom-table thead {
  background: linear-gradient(135deg, #6e7c59 0%, #4e342e 100%);
  color: white;
}

.custom-table thead th {
  border: none;
  padding: 20px 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.custom-table tbody tr {
  transition: all 0.3s ease;
  border: none;
}

.custom-table tbody tr:hover {
  background: linear-gradient(
    135deg,
    rgba(110, 124, 89, 0.1) 0%,
    rgba(215, 189, 166, 0.1) 100%
  );
  transform: scale(1.02);
}

.custom-table tbody td {
  padding: 20px 15px;
  border: none;
  vertical-align: middle;
  font-weight: 500;
}

.role-badge {
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.role-admin {
  background: linear-gradient(135deg, #4e342e, #6e7c59);
  color: white;
  box-shadow: 0 5px 15px rgba(78, 52, 46, 0.4);
}

.role-user {
  background: linear-gradient(135deg, #d7bda6, #6e7c59);
  color: white;
  box-shadow: 0 5px 15px rgba(215, 189, 166, 0.4);
}

.role-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
}

.delete-btn {
  color: #4e342e;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.delete-btn:hover {
  background: #4e342e;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(78, 52, 46, 0.4);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 10px;
}

.stats-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-title {
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 2rem;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-elements::before,
.floating-elements::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-elements::after {
  width: 60px;
  height: 60px;
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.article-title {
  font-weight: 600;
  color: #4e342e;
  font-size: 1.1rem;
  line-height: 1.4;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 120px;
  height: 80px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(110, 124, 89, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* ############################################################ UTILISATEURS */
/* Styles personnalisés pour l'interface admin */
.admin-header {
  background: linear-gradient(135deg, #6e7c59 0%, #4e342e 100%);
  position: relative;
  overflow: hidden;
}

.admin-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,50"/></svg>')
    no-repeat bottom;
  background-size: cover;
}

.admin-header .content {
  position: relative;
  z-index: 2;
}

.welcome-icon {
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.admin-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.custom-table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.custom-table thead {
  background: linear-gradient(135deg, #6e7c59 0%, #4e342e 100%);
  color: white;
}

.custom-table thead th {
  border: none;
  padding: 20px 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.custom-table tbody tr {
  transition: all 0.3s ease;
  border: none;
}

.custom-table tbody tr:hover {
  background: linear-gradient(
    135deg,
    rgba(110, 124, 89, 0.1) 0%,
    rgba(215, 189, 166, 0.1) 100%
  );
  transform: scale(1.02);
}

.custom-table tbody td {
  padding: 20px 15px;
  border: none;
  vertical-align: middle;
  font-weight: 500;
}

.role-badge {
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.role-admin {
  background: linear-gradient(135deg, #4e342e, #6e7c59);
  color: white;
  box-shadow: 0 5px 15px rgba(78, 52, 46, 0.4);
}

.role-user {
  background: linear-gradient(135deg, #d7bda6, #6e7c59);
  color: white;
  box-shadow: 0 5px 15px rgba(215, 189, 166, 0.4);
}

.role-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
}

.delete-btn {
  color: #4e342e;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.delete-btn:hover {
  background: #4e342e;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(78, 52, 46, 0.4);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 10px;
}

.stats-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-title {
  background: linear-gradient(135deg, #6e7c59, #4e342e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 2rem;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-elements::before,
.floating-elements::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-elements::after {
  width: 60px;
  height: 60px;
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/***************************************************************** */
/************************************************** INSCRIPTION ******************/
.section-form {
    border-radius: 12px;
    background: #fff;
}
.inscription-btns button {
  background-color: #4e342e;
  border: none;
  color: #f5f0eb;
  font-size: 1.2rem;
  padding: 5px 15px;
  margin-top: 20px;
}
.inscription-btns p {
  color: #4e342e;
  font-size: 1.2rem;
  text-align: center;
}
.inscription-btns p a {
  color: #6e7c59 !important;
  font-weight: bold;
}
@media (max-width: 768px) {
    .section-form {
        padding: 1rem !important;
        margin-top: 2rem !important;
        box-shadow: none;
        width: 100% !important;
        max-width: 100% !important;
    }
    .inscription-btns .btn {
        width: 100% !important;
    }
    .row > [class^="col-"] {
        margin-bottom: 1rem;
    }
}
/**********************************************************  */
/******************************************** CONNEXION   ******************************/
.connexion-btns button {
  background-color: #4e342e;
  border: none;
  color: #f5f0eb;
  font-size: 1.2rem;
  padding: 10px 20px;
  margin-top: 20px;
}
.connexion-btns p a {
  color: #6e7c59 !important;
  font-weight: bold;
}

/********************************** Page INDEX  ****************/
.div-titre {
  background-color: #3c220677;
  padding: 10px;
  border-radius: 20px;
}

/* Pour le titre h1 */
.index-titre {
  color: #f5f0eb;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding-top: 20px;
}
.index-fisrtPara {
  color: #f5f0eb;
  font-size: 1.2rem;
  text-align: center;
  padding-top: 15px;
}
.index-btn {
  background-color: #6e7c59;
  border: none;
  color: #f5f0eb;
  font-size: 1.2rem;
  padding: 5px 15px;
  margin-top: 20px;
}
.index-btn:hover {
  background-color: #4e342e;
  color: #6e7c59;
  font-weight: bold;
  transition: all 0.3s ease;
}
/* Pour que mes card aient la même taille */
.article img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.article-carte {
  width: 350px;
}
.article {
  background: #f5f0eb;
}

.article:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.281);
  transition: transform 0.3s;
  transform: scale(1.05);
  border-radius: 20px;
}
.mess-btn {
  background-color: #4e342e;
  border: none;
}
/* Pourque les images aient la même taille */
.div-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}
.titre {
  color: #4e342e;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
}
.col-sections p {
  color: #4e342e;
}

/************************************************************************** */

/***************************************** APROPOS  ***************************************/
.apropos-titre {
  color: #f5f0eb;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding-top: 20px;
}
.apropos-firstPara {
  color: #f5f0eb !important;
  font-size: 1.2rem;
  text-align: center;
  padding-top: 15px;
}
/* Pour que les image de la section-equipe aient la même taille */
.section-equipe .equipe-img {
  width: 100%;
  height: 300px;
  /* Ajuste l'image pour remplir le conteneur*/
  object-fit: cover;
}
.equipe-carte {
  background: #f5f0eb;
}
.philo-carte {
  background: #f5f0eb;
}
.Decouvert-carte {
  background: #f5f0eb;
}
.partenaire {
  color: #4e342e;
}
.apropos-btn {
  background-color: #4e342e;
  border: none;
}
.apropos-btn:hover {
  background-color: #6e7c59;
  color: #4e342e;
  font-weight: bold;
  transition: all 0.3s ease;
}

/**********************************************************************  */

/***************************************** Partie BLOG   ****************************/
/* Réduit la taille des boutons de la div-titre */
.div-titre .blog-btn,
.div-titre .blog-btns .btn {
    font-size: 1rem !important;
    padding: 0.4rem 1rem !important;
    margin-top: 0.5rem !important;
}
.blog-titre {
  color: #f5f0eb;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  padding-top: 20px;
}
.blog-btn {
  /* background-color: #4e342e; */
  background-color: #6e7c59;
  border: none;
  color: #f5f0eb;
  font-size: 1.4rem;
  padding: 5px 15px;
  margin-top: 20px;
}
.blog-btn:hover {
  background-color: #4e342e;
  color: #6e7c59;
  font-weight: bold;
  transition: all 0.3s ease;
}
.article-btn {
  background-color: #4e342e;
  border: none;
}
.article-btn:hover {
  background-color: #6e7c59;
  color: #4e342e;
  font-weight: bold;
  transition: all 0.3s ease;
}
.categories-btn {
  border: 1px solid#4e342e !important;
  color: #4e342e;
}
.categories-btn:hover {
  background-color: #6e7c59;
  color: #4e342e;
  font-weight: bold;
  transition: all 0.3s ease;
}
.blog-btn-custum {
  background-color: #6e7c59;
  border: none;
  color: #f5f0eb;
  font-size: 1.4rem;
  padding: 5px 15px;
  margin-top: 20px;
}
.blog-btn-custum:hover {
  background-color: #4e342e;
  color: #6e7c59;
  font-weight: bold;
  transition: all 0.3s ease;
}

/************************************************  */

/************************************* EVENTS ****************************************/
.events-titre {
  color: #f5f0eb;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  padding-top: 20px;
}
.events-btn {
  background-color: #6e7c59;
  border: none;
  color: #f5f0eb;
  font-size: 1.4rem;
  padding: 5px 15px;
  margin-top: 20px;
}
.events-btn:hover {
  background-color: #4e342e;
  color: #6e7c59;
  font-weight: bold;
  transition: all 0.3s ease;
}
.event-card img {
  width: 100%;
  height: 250px;
  /* Ajuste l'image pour remplir le conteneur*/
  object-fit: cover;
}

/******************************************************************  */

/****************************************** EVENEMENTS DETAILS *******************/
.detail-titre {
  color: #f5f0eb;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  padding-top: 20px;
}
.detail-btn {
  background-color: #6e7c59;
  border: none;
  color: #f5f0eb;
  font-size: 1.4rem;
  padding: 5px 15px;
  margin-top: 20px;
}
.detail-btn:hover {
  background-color: #4e342e;
  color: #6e7c59;
  font-weight: bold;
  transition: all 0.3s ease;
}

/******************************** ARTICLE  ***************************/
.single-art-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
.commts {
  background-color: #f5f0eb;
  padding: 20px;
  border-radius: 10px;
}
/*********************************************************************************  */

/********************* CATEGORIES ******************************/
.cate-btn {
  background-color: #4e342e;
  border: none;
  color: #f5f0eb;
  font-size: 1.4rem;
  padding: 5px 15px;
  margin-top: 20px;
}
.cate-btn:hover {
  background-color: #6e7c59;
  color: #4e342e;
  font-weight: bold;
  transition: all 0.3s ease;
}

/*********************************************  */

/******************************************* PROFILE **************************************/

body {
  font-family: "Poppins", sans-serif;
  background-color: #d7bda6;
  color: #4e342e;
}

.hero-section {
  background-image: url("../img/image_2.JPG");
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  margin-top: 0;
  position: relative;
}

.profile-card {
  background-color: #f5f0eb;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.profile-header {
  padding: 30px;
  border-bottom: 1px solid #f5f0eb;
}

.profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #f5f0eb;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.profile-info {
  padding: 30px;
}

.profile-info p {
  margin-bottom: 15px;
  font-size: 16px;
  border-bottom: 1px solid #f5f0eb;
  padding-bottom: 10px;
}

.profile-info strong {
  color: #4e342e;
  font-weight: 600;
  min-width: 100px;
  display: inline-block;
}

.content-section {
  background-color: #f5f0eb;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}

.section-title {
  color: #6e7c59;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #6e7c59;
}

.profile-info-btn {
  background-color: #6e7c59;
  border-color: #6e7c59;
}

.profile-info-btn:hover {
  background-color: #5a6749;
}

.Profil-btn {
  color: #6e7c59;
  border-color: #6e7c59;
}

.Profil-btn:hover {
  background-color: #6e7c59;
  color: #f5f0eb;
  border: none;
}

.table {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table thead th {
  background-color: #d4e3c5;
  color: #4e342e;
  font-weight: 600;
  border-bottom: none;
}

.table-img {
  width: 80px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}

.action-btn {
  color: #6e7c59;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.action-btn:hover {
  transform: scale(1.2);
}

.delete-btn {
  color: #dc3545;
}

.edit-btn {
  color: #4e342e;
}

.article-content {
  max-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*********************************************************************  */

/*************************************************** RESERVATION ****************/
.reservation-btn {
  background-color: #6e7c59;
  border: none;
}

/**************************************************  */
/* Ajoute ce code dans ton fichier CSS global (ex : assets/CSS/style.css) */
.info-admin {
  background: linear-gradient(100deg, #8b5c2a 0%, #b07d4a 100%);
  color: #fff;
  padding: 36px 0 28px 0;
  margin-bottom: 32px;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(139, 92, 42, 0.18);
  font-family: "Lora", serif;
  position: relative;
  overflow: hidden;
}

.info-admin::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.info-admin h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  z-index: 1;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-admin p {
  font-size: 1.25rem;
  margin-bottom: 0;
  z-index: 1;
  position: relative;
  font-family: "Open Sans", sans-serif;
  opacity: 0.95;
}
/*************************************************************  */

/********************************************* RECHERCHE *************************************************/


.recherche-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.recherche {
    color: red;
   text-shadow: #e7491e 0px 0px 10px;
}

.search-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}


.results-header {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.results-count {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2e5316;
    margin-bottom: 0.5rem;
}

.results-description {
    color: #6c757d;
    font-size: 1.1rem;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    position: relative;
}



.article-image {
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image {
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.article-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}


.article-excerpt {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.read-btn {
  background-color: #4e342e;
  color: #f5f0eb;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.read-btn:hover {
    background-color: #6e7c59;
    color: #4e342e;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.no-results-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1.5rem;
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
}

.no-results-text {
    color: #6c757d;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .search-title {
        font-size: 2rem;
    }
    
    .results-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .article-card {
        margin-bottom: 1.5rem;
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/***************************** FOOTER **********************************************/
.site-footer {
  background-color: #4e342e !important;
}

/*                 Media                */

/************************************ SUR TABLETTE  ********************************************/
/*  Tablettes (entre 768px et 1024px) */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero-btn {
    font-size: 1rem;
    padding: 8px 16px;
  }

  /* Ajuster la grille des cartes d'articles */
  .row .col-md-4 {
    width: 50%;
  }

  /* Section "Pourquoi Torréfacteurs ?" en 2 colonnes au lieu de 4 */
  .row .col-md-3 {
    width: 50%;
  }

  /* Redimensionner les images */
  .div-image {
    width: 90%;
    margin: auto;
  }
}
/************************************ SUR MOBILE  ********************************************/
/* ################### Media index */
/* Responsive pour les titres et boutons */
.index-titre {
  font-size: 2.5rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .index-titre {
    font-size: 1.6rem;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .index-btns .btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
  .fs-4 {
    font-size: 1.2rem !important;
  }
  .fs-3 {
    font-size: 1.5rem !important;
  }
}
.article.card img,
.div-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .article.card img,
  .div-image {
    height: 110px;
  }
}

/*  Mobiles (moins de 576px) */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-btn {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  /* Ajuster la grille des articles */
  .row .col-md-4 {
    width: 100%;
  }

  /* Section "Pourquoi Torréfacteurs ?" en une seule colonne */
  .row .col-md-3 {
    width: 100%;
    margin-bottom: 15px;
  }

  /* Redimensionner les images */
  .div-image {
    width: 100%;
  }
  /* Talle de la div */
  .div-titre {
    padding: 5px !important;
    border-radius: 12px !important;
    margin-top: 10px !important;
  }
  /* Bouton page apropos */
  .div-titre .index-btn {
    font-size: 1rem !important;
    padding: 0.5rem 1.1rem !important;
    margin-top: 0.5rem !important;
  }
}

/* Réduit la taille du texte des placeholders dans tous les champs du formulaire */
.section-form ::placeholder {
    font-size: 0.9rem; /* ou 0.8rem selon ton besoin */
    color: #aaa; /* optionnel : couleur plus discrète */
}
/* Réduit la taille des boutons de la div-titre sur mobile */
@media (max-width: 576px) {
  .div-titre .blog-btn,
  .div-titre .blog-btns .btn {
    font-size: 1rem !important;
    padding: 0.5rem 1rem !important;
    margin-top: 0.5rem !important;
  }
}
