@charset "utf-8";
/* CSS Document */
/* fichier : css/dirigeant_chatgpt.css */
/* Typo et reset minimal */
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans Display', sans-serif;
  background: #ffffff;
  
}
.news-tickers {
	background:none !important;
}
.news-ticker {
        top: 0 !important;
}
.main-container {
    position: relative; /* nÃ©cessaire pour le positionnement du ::before */
    overflow: hidden; /* pour Ã©viter que le blur dÃ©borde */
}

.main-container::before {
    content: "";
    position: fixed;
    top: 0 !important;
    left: 0;
	right:0;
	bottom:0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px) brightness(0.85);
    z-index: -1; /* met l'image derriÃ¨re le contenu */
}
 .page-container {
            position: relative;
            width: 100%;
            max-width: 1170px;
            margin: 40px auto 0 auto;
			 padding: 20px;
            background: rgba(72,92,116,0.45);
			color:#fff;
            border-radius: 20px;
            z-index: 1;
            box-shadow: 0 0 18px #bbb8;
            padding-bottom: 32px;
			text-align:justify;
        }
.content-block { background:none !important; box-shadow:none !important; }
/* ==== FILIGRANE GÃ‰NÃ‰RAL ==== */
.dirigeant-page {
  position: relative;
  width: 750px;
  margin-top:25px;
  overflow: hidden;
  background: #ffffff;
  margin-left:40px;
  padding-top:40px;
  border-radius:8px;
}
.dirigeant-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.dirigeant-page > * {
  position: relative;
  z-index: 1;
}

/* HERO centrÃ© et largeur limitÃ©e */
.profile-hero {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 1rem 1rem;
  gap: 1rem;
  /* fond semi-transparent pour laisser apparaÃ®tre le filigrane de .dirigeant-page */
  background-color: rgba(0,80,125,0.75);
  padding-bottom:30px;
 

}

.hero-image img {
  /*object-fit: cover;*/
  border-radius: 8px;
  border: 2px solid #FF6A00;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin-left:8%;

 
}
.hero-info {
  text-align: left;
} 
.hero-info .profile-name {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.hero-info .profile-role {
  margin: 0.2rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFD290;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
/* Carte Président */
.president-card {
 background-color: rgba(255,255,255,0.5);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  padding: 20px;
}

/* Header président */
.president-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.president-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #FF6A00;
  object-fit: cover;
}
.president-header h2 {
  margin: 0;
  font-size: 1.6rem;
  color: #00507D;
}
.president-header p {
  margin: 2px 0 0;
  color: #555;
}

/* Premiers ministres */
.pm-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.pm-card {
  background-color: rgba(255,255,255, 0.5);
   border-left: 4px solid #FF6A00;
  border-radius: 8px;
  padding: 12px;
}


.pm-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #0b2d68;
}
.pm-card span {
  font-size: 0.9rem;
  font-weight: normal;
  color: #666;
}

/* Remaniements */
.remaniements {
  margin: 0;
  padding-left: 18px;
  color: #444;
  font-size: 0.95rem;
}
.remaniements li {
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .pm-list {
    grid-template-columns: 1fr;
  }

}

.pm-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.pm-header img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid #FF6A00;
  object-fit: cover;
}
.pm-header h3 {
  margin: 0;
}
/* Cartes d’infos (3 blocs) */
/* Desktop par défaut : 3 colonnes */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes égales */
  gap: 0.75rem;
  width: 100%; /* prend toute la largeur du parent */
  padding: 1rem;
  margin: auto;
  padding-bottom: 60px;
}

/* Mobile : 2 colonnes */
@media (max-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr); /* 2 cartes par ligne */
  }
}

.info-card {
  max-width: 150px; /* limite la largeur */
  width: 100%;       /* prend la largeur de la colonne */
  background: #edf2f4;
  color: #00507D;
  border-radius: 6px;
  padding: 0.75rem;
  text-align: center;
  border-top: 3px solid #FF6A00;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.info-card .icon   { font-size: 1.6rem; color:#FF6A00;}
.info-card .label  { margin-top: 0.3rem; font-size: 1rem; }
.info-card .value  { margin-top: 0.2rem; font-size: 1.2rem; font-weight: bold; }
.info-card .subvalue {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
}
