
.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('../images/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%;
    max-width: 100%;
}

.intro-section,
.pages-section,
.contact-section,
.section-nos-pages,
.branham-section,
.ecodim-section,
.louange-section,
.campement-section,
.chants-section,
.communion-section,
.audio-section,
.video-section,
.meditation-section,
.archives-section,
.graphique-section {
    background: #e5e0e0;
    padding: 20px;
    width: 100%;
}

.site-main {
    background: #e5e0e0;
    width: 100%;
}
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;       
}
.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);
}
p {
    font-size: 20px;
    color: #000000;
    margin-bottom: 22px;
    text-align: justify;
    max-width: 900px; /* Largeur maximale réduite */
    margin-left: auto;
    margin-right: auto;
}






.local-video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 16px;
}

.local-video {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.local-video:hover {
    box-shadow: 0 8px 32px rgba(30,144,255,0.18);
}

.local-video video {
    width: 100%;
    min-height: 180px;
    aspect-ratio: 16/9;
    background: #000;
    border: none;
    outline: none;
}

.video-title {
    font-size: 1.08em;
    font-weight: 600;
    color: #222;
    padding: 14px 12px 16px 12px;
    text-align: left;
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
}
.local-video {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
    /* Ajoute une largeur fixe pour la grille si tu veux */
}

.local-video video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border: none;
    outline: none;
    display: block;
    object-fit: cover; /* Ajoute ceci pour forcer le remplissage */
    border-radius: 0;  /* Les coins arrondis sont gérés par le parent */
    min-height: 180px; /* Pour éviter les vidéos trop plates */
    max-height: 360px; /* Pour éviter les vidéos trop hautes */
}

.main-btn {
    background: linear-gradient(90deg, #c2a8ea 0%,  #aca3fa 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    margin: 8px 8px 8px 0;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    outline: none;
    letter-spacing: 0.5px;
    display: inline-block;
}
.main-btn:hover, .main-btn:focus {
    background: linear-gradient(90deg, #c2a8ea 0%, #aca3fa 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(44,62,80,0.16);
}

/* Liquid glass style (comme sur index) */
.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);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #000;
}

/* Styles pour les menus déroulants */
.button.out {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
    flex: 1;
    max-width: 300px;
}

.dropdown button {
    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;
    width: 100%;
    min-width: 200px;
}

.dropdown button:hover, .dropdown button: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);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #000;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6.7px);
    -webkit-backdrop-filter: blur(6.7px);
    border: 1px solid rgba(255, 255, 255, 0.29);
    min-width: 200px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 12px;
    overflow: hidden;
    top: 100%;
    left: 0;
    margin-top: 5px;
}

.dropdown-content a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.dropdown-content.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design pour les menus déroulants */
@media (max-width: 768px) {
    .button.out {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .dropdown {
        display: block;
        width: 100%;
        max-width: none;
    }
    
    .dropdown button {
        width: 100%;
        min-width: auto;
    }
    
    .dropdown-content {
        width: 100%;
        position: static;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.29);
        border-radius: 12px;
        margin-top: 5px;
    }
}

/* Modal styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.show {
    display: flex;
}
.modal-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    max-width: 520px;
    width: 100%;
    padding: 22px 22px 18px 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.modal-box h2 {
    margin: 0 0 8px 0;
    text-align: center;
    color: #111;
}
.modal-content {
    text-align: center;
}
.modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
.modal-content p {
    margin: 8px 0;
    color: #222;
}
