
.header-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 0;
    /* Retire background-image ici */
}

.header-content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('photo/com/fontete.jpg');
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; /* Ajuste l’opacité ici */
    z-index: 0;
}

.header-content > * {
    position: relative;
    z-index: 1;
}


h1 {
    margin: 0px 0;
    color: #fff;
    text-align: center;
}
.logo-img {
    width: 200px;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
}


.menu-btn {
    background: #444;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}
.menu-btn:hover {
    background: #666;
}
.logo-img {
    width: 200px; /* ou la taille que tu veux */
    height: auto;
}
.corps {
    background: #e5e0e0;
    flex: 1 1 auto;
    width: 100%;
    padding: 40px 0; /* Ajoute de l'espace en haut et en bas */
    display: flex;
    justify-content: center;
}
body {
    background-color: #303030;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}
.tete {
    text-align: center;
    font-size: 1.5em;   /* Agrandit le texte */
    font-style: italic; /* Met en italique */
    color: #000000;  
    margin-top: 92px;     
}
.c2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px; /* espace entre le texte et l'image */
    max-width: 1100px; /* largeur max du bloc central */
    width: 100%;
    background: transparent;
}

.tete3 {
    flex: 1;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 650px; 
    margin-top: 62px;
    color: #000000;
}

.branham-img {
    flex: 1;
    width: 280px;    /* ajuste la taille selon ton besoin */
    height: 400px;
    border-radius: 8px; 
    max-width: 260px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #b9b5b5;
    padding: 8px;
    margin-top: 80px !important;
    align-self: flex-start;
}
.tableau {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.tableau table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1450px;
    background: #fff;
}

.tableau th, .tableau td {
    border: 1px solid #888;
    padding: 8px 12px;
    text-align: center;
    font-size: 1em;
}

/* Ajustement automatique des lignes et centrage lisible */
.tableau th {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.tableau td {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.5;
    vertical-align: middle;
    text-align: center;
}

.tableau th {
    background: #e3dddd;
    color: #fff;
    font-size: 1.1em;
}

.tableau tr:nth-child(even) {
    background: #f2f2f2;
}
.menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
 
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 101;
    padding: 0;
    transition: background 0.2s;
    
}
.menu-toggle:hover {
    background: #d3b1b1;
}
.menu-toggle .bar {
    display: block;
    width: 26px;
    height: 4px;
    margin: 3px 0;
    background: #444;
    border-radius: 2px;
    transition: 0.3s;
    
}

/* Menu déroulant */
.menu-list {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #f1dada;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    position: absolute;
    top: 80px;
    left: 24px;
    min-width: 220px;
    z-index: 100;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
    
}
.menu-list.show {
    display: flex;
}
.menu-list li {
    width: 100%;
}
.menu-list li a {
    display: block;
    padding: 16px 28px;
    color: #222;
    text-decoration: none;
    font-size: 1.1em;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}
.menu-list li a:hover {
    background: #f2f2f2;
}
.menu-list li:last-child a {
    border-bottom: none;
}

#search-input {
    display: none;
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 60vw;           /* Largeur responsive */
    max-width: 700px;      /* Largeur max */
    min-width: 280px;
    padding: 12px 48px 12px 20px;
    border-radius: 24px;
    border: 1.5px solid #ccc;
    font-size: 1.15em;
    background: #fff;
    color: #222;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    outline: none;
    transition: box-shadow 0.2s, border 0.2s, background 0.2s, opacity 0.25s, transform 0.25s;
    opacity: 0;
    pointer-events: none;
}
#search-input.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
#search-input:focus {
    border: 1.5px solid #d3b1b1;
    background: #fff;
    box-shadow: 0 6px 32px rgba(180, 120, 120, 0.18);
}

/* ========================================
   TABLEAUX - DISPOSITION EN GRILLE 50%/50%
   ======================================== */
/* Conteneur principal pour tous les tableaux */
.tableaux-container {
    background-color: #303030;
    width: 100%;
    padding: 30px 0;
    margin: 0;
}

/* Conteneur pour les paires de tableaux */
.disque-container {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    padding: 20px 10px;
    box-sizing: border-box;
}

/* Chaque colonne prend exactement 50% */
.disque-container > div {
    flex: 1;
    width: 50%;
    min-width: 0;
    background-color: #303030;
    padding: 10px;
    border-radius: 8px;
}

/* Titres des tableaux */
.disque-container p {
    margin: 10px 0;
    font-size: 1.2em;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

/* Responsive - Retour à 1 colonne sur petits écrans */
@media (max-width: 1200px) {
    .disque-container {
        flex-direction: column;
    }
    
    .disque-container > div {
        width: 100%;
    }
}

/* ========================================
   BOUTON STYLE VERRE (LIQUID GLASS EFFECT)
   ======================================== */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.29);
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.7px);
    -webkit-backdrop-filter: blur(6.7px);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-glass:hover, .btn-glass:focus {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    color: #000;
}