@charset "UTF-8";
/* CSS Document */
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* PAGE */
body {
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	overflow-y: auto;
}

/* =========================
   HERO / IMAGE DE FOND
========================= */
.hero {
    position: relative;
    width: 1920px;
    height: 820px;
    background-size: cover;
    background-position: center;
	min-height: 820px;
}

.bandeau-slogan {
    position: absolute;
    top: 30px;           /* ajuste selon ton design */
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
	height: 30px;

    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    box-sizing: border-box;
}

.slogan {
    margin: 0;
    font-size: 13px;
	font-weight: bold;
    color: #000;
    text-align: center;
}

/* =========================
   ZONE LOGO + RECHERCHE
========================= */
.logo-zone {
    position: absolute;
    left: 45px;
    top: 450px;
}

/* LOGO */
.logo {
    display: block;
    margin-bottom: -90px;
}

/* =========================
   BLOC RECHERCHE
========================= */
.search-box {
    width: 780px;
    height: 60px;
    background-color: white;
    display: flex;
    align-items: center;
}

.search-box form {
    display: flex;
    align-items: left;
    gap: 8px;
    width: 750px;
}

/* ICÔNE LOUPE */
.search-icon {
    width: 30px;
    height: 30px;
    margin-left: 20px;
    margin-right: 15px;
}

/* CHAMP TEXTE */
.search-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 18px;
}

/* =========================
   BLOCS BLANCS DU BAS
========================= */
.blocs {
    position: absolute;
    top: 755px;
    left: 90px;
    right: 90px;
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* BLOCS INDIVIDUELS */
.bloc1 {
    width: 500px;
    background-color: white;
    border: 10px solid #000000;
    padding: 20px;
    box-sizing: border-box;
}
.bloc2 {
    width: 500px;
    background-color: white;
    border: 10px solid #000000;
	height: fit-content;
    padding: 20px;
    box-sizing: border-box;
}
.bloc3 {
    width: 500px;
    background-color: white;
    border: 10px solid #000000;
    padding: 20px;
    box-sizing: border-box;
    height: fit-content;
}
.classement-orgas summary {
    cursor: pointer;
    font-weight: bold;
}

.liste-orgas {
    margin: 10px 0 0 20px;
    padding: 0;
}

.liste-orgas li {
    list-style: none;
    margin-bottom: 6px;
}
.classement-alpha summary {
    cursor: pointer;
    font-weight: bold;
}

.alphabet {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin-top: 10px;
}

.alphabet li {
    list-style: none;
}

.alphabet a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: #000;
    border: 2px solid #000;
    background: rgba(255,255,255,0.7);
    transition: all 0.2s ease;
}

.alphabet a:hover {
    background: #ff8b02;
    color: #000;
}
.alphabet a.actif {
    background: #000;
    color: #fff;
}
.liste-orgas a:link {
    color: #000000;
    text-decoration: none;
}

.liste-orgas a:visited {
    color: #676767;
}

.liste-orgas a:hover {
    color: #000000;
    text-decoration: none;
    background: #ff8b02;
}

.liste-orgas a:active {
    color: #000000;
}

.alphabet a:link {
    color: #000000;
    text-decoration: none;
}

.alphabet a:visited {
    color: #676767;
}

.alphabet a:hover {
  text-decoration: none;
  background: #ff8b02;
}

.alphabet a:active {
    color: #000000;
}
/* bloc notices */
.bloc1 {
    width: 350px;
    background-color: white;;
    border: 10px solid #000000;
    padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 10px;
    box-sizing: border-box;
}
/* bloc necro */
.bloc2 {
    width: 350px;
    background-color: white;;
    border: 10px solid #000000;
	height: fit-content;
    padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 10px;
    box-sizing: border-box;
}
/* bloc infos */
.bloc3 {
    width: 350px;
    background-color: white;
    border: 10px solid #000000;
    padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 10px;
    box-sizing: border-box;
    height: fit-content;
}