#organisation {
  padding: 60px 30px;
  background-color: #f4f4f4;
}

#organisation h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  border-left: 5px solid orange;
  padding-left: 15px;
  color: #333;
}

/* Onglets principaux */
.org-tabs {
   display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  flex-wrap: wrap;
}

.org-tab-btn {
  font-size: 1.1rem;
  padding: 12px 24px;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.org-tab-btn:hover {
  background-color: #1abc9c;
}

.org-tab-btn.active {
  background-color: #1abc9c;
}

/* Conteneur de chaque contenu d'onglet */
.org-tab-content {
  display: none;
}

.org-tab-content.active {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Menu vertical à gauche */
.org-menu {
  flex: 1 1 30%;
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.org-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  background: none;
  border: none;
  border-left: 4px solid transparent;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
}

.org-menu button:hover,
.org-menu button.active {
  background-color: #f2f2f2;
  border-left: 4px solid #d67031;
  color: #000;
}

/* Contenu à droite */
.org-content {
  flex: 1 1 65%;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .org-tab-content {
    flex-direction: column;
  }

  .org-menu {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .org-content {
    padding-left: 0;
  }
}

.section-title h2 {
  font-size: 1.8rem;
  color: #333;
  position: relative;
}


.card-zoom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-zoom:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.section-title h2 {
  font-size: 2rem;
  color: #1d3557;
}

.actualites-box h4 {
  font-size: 1.5rem;
  border-left: 4px solid #198754;
  padding-left: 10px;
}

.actualites-box .card-img-top {
  height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #ffffff;
  border-radius: 0.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.actualites-box .card:hover .card-img-top {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.lien-app {
  height: 120px;
}

.lien-app img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.lien-app:hover img {
  transform: scale(1.05);
}

.btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lien-app:hover .btn-overlay {
  opacity: 1;
}

.liens-utiles-liste a {
  color: #333;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.liens-utiles-liste a:hover {
  color: #198754; /* Vert bootstrap */
  padding-left: 5px;
}









