/* ========================================
   STYLES DE BASE
   ======================================== */
/* Paragraphes globaux */
p {
    color: #fff;
    text-align: center;
    font-style: italic;
    font-weight: bold;
    font-size: 1.35em;
}

/* ========================================
   HEADER
   ======================================== */
.header-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 0;
    overflow: hidden; /* Empêche tout débordement qui créerait une bande */
}

.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;
    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;
}

/* ========================================
   LAYOUT PRINCIPAL
   ======================================== */
.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;
    overflow-x: hidden; /* Evite tout débordement horizontal */
}

html {
    box-sizing: border-box;
    overflow-x: hidden; /* Empêche la bande due au scroll horizontal */
}
*, *::before, *::after { box-sizing: inherit; }

/* Sécuriser la largeur des blocs majeurs */
.header-content,
.corps,
.corps2,
.quiz-container {
    max-width: 100%;
}

/* Images responsive sans débordement */
img { max-width: 100%; height: auto; }
/* ========================================
   SECTION C2 (Texte + Image Branham)
   ======================================== */
.tete {
    text-align: center;
    font-size: 1.5em;
    font-style: italic;
    color: #000000;  
    margin-top: 92px;     
}

.c2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    max-width: 1100px;
    width: 100%;
    background: transparent;
    margin: 0 auto;
}

.tete3 {
    flex: 1;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 650px; 
    margin-top: 62px;
    color: #000000;
}

/* Image de Branham */
.branham-img {
    flex: 1;
    width: 180px;
    height: auto;
    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;
}


/* ========================================
   MENU HAMBURGER
   ======================================== */
.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;
}

/* ========================================
   QUIZ STYLES
   ======================================== */
.corps2 {
    background: #e5e0e0;
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px 60px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.quiz-container {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.quiz-title {
    color: #2c3e50;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 8px;
    font-weight: bold;
}

.quiz-subtitle {
    color: #7f8c8d;
    text-align: center;
    font-size: 1em;
    margin-bottom: 30px;
    font-style: italic;
}

.question-block {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.question-block:hover {
    box-shadow: 0 2px 12px rgba(52, 152, 219, 0.15);
    transform: translateY(-2px);
}

.question-text {
    color: #2c3e50;
    font-size: 1.05em;
    margin-bottom: 15px;
    font-weight: 600;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    border-color: #3498db;
    background: #f0f8ff;
}

.option input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.option span {
    color: #2c3e50;
    font-size: 0.95em;
    font-weight: normal;
    font-style: normal;
}

.option input[type="radio"]:checked + span {
    font-weight: bold;
    color: #3498db;
}

.submit-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 1.05em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ========================================
   RESULTS STYLES
   ======================================== */
.results-container {
    margin-top: 30px;
}

.results-title {
    color: #2c3e50;
    font-size: 1.6em;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.score-display {
    margin-bottom: 30px;
}

.score-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.score-box.excellent {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.score-box.good {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.score-box.needs-improvement {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.score-box h3 {
    margin: 0 0 12px 0;
    font-size: 1.3em;
    color: white;
}

.score-number {
    font-size: 2.5em;
    font-weight: bold;
    margin: 15px 0;
    color: white !important;
    text-align: center !important;
    font-style: normal !important;
}

.score-message {
    font-size: 1.05em;
    margin: 0;
    color: white !important;
    text-align: center !important;
    font-style: italic !important;
}

.section-title {
    color: #2c3e50;
    font-size: 1.4em;
    margin: 25px 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 3px solid #3498db;
    font-weight: bold;
}

.section-description {
    color: #555 !important;
    font-size: 0.95em !important;
    margin: 8px 0 15px 0 !important;
    font-style: normal !important;
    text-align: left !important;
    font-weight: normal !important;
}

.wrong-answer-item {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    padding: 16px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.wrong-answer-item h4 {
    color: #c0392b;
    margin: 0 0 8px 0;
    font-size: 1.1em;
}

.question-text-small {
    color: #2c3e50 !important;
    font-size: 0.95em !important;
    margin: 8px 0 !important;
    font-style: normal !important;
    text-align: left !important;
}

.user-answer {
    color: #e74c3c !important;
    font-weight: bold !important;
    margin: 6px 0 !important;
    font-size: 0.95em !important;
    text-align: left !important;
}

.correct-answer {
    color: #27ae60 !important;
    font-weight: bold !important;
    margin: 6px 0 !important;
    font-size: 0.95em !important;
    text-align: left !important;
}

.perfect-score {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white !important;
    padding: 25px;
    border-radius: 10px;
    text-align: center !important;
    font-size: 1.3em !important;
    font-weight: bold !important;
}

.correction-item {
    background: #f0f8ff;
    border-left: 4px solid #3498db;
    padding: 16px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.correction-item.correct-item {
    background: #f0fff4;
    border-left: 4px solid #27ae60;
}

.correction-item h4 {
    color: #2980b9;
    margin: 0 0 8px 0;
    font-size: 1.1em;
}

.correct-answer-highlight {
    color: #27ae60 !important;
    font-weight: bold !important;
    margin: 10px 0 !important;
    font-size: 0.98em !important;
    text-align: left !important;
}

.explanation {
    color: #34495e !important;
    background: #ffffff;
    padding: 12px;
    border-radius: 6px;
    margin: 10px 0 0 0 !important;
    font-style: italic !important;
    border-left: 3px solid #95a5a6;
    font-size: 0.93em !important;
    text-align: left !important;
}

.reset-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.reset-btn:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablettes et petits écrans (max 768px) */
@media screen and (max-width: 768px) {
    .header-content {
        padding: 20px 0;
        background-color: #303030;
    }
    .c2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tete {
        font-size: 1.2em;
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .tete3 {
        font-size: 0.95em;
        line-height: 1.5;
        max-width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    
    .branham-img {
        width: 200px;
        max-width: 250px;
        margin-top: 20px !important;
    }
    
    .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%;
}
    
    h1 {
        font-size: 1.5em;
    }
    
    .logo-img {
        width: 150px;
    }

    .quiz-container {
        padding: 25px 20px;
    }
    
    .quiz-title {
        font-size: 1.8em;
    }
    
    .question-text {
        font-size: 1.1em;
    }
    
    .option {
        padding: 12px 15px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    
    .score-number {
        font-size: 2.5em;
    }
}

/* Smartphones (max 480px) */
@media screen and (max-width: 480px) {
    .header-content {
        padding: 15px 0;
        background-color: #303030;
    }
    .tete {
        font-size: 1em;
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .tete3 {
        font-size: 0.85em;
        line-height: 1.4;
        margin-top: 20px;
    }
    
    .branham-img {
        width: 150px;
        max-width: 180px;
        margin-top: 15px !important;
    }
    
    .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%;
}
    
    h1 {
        font-size: 1.2em;
        padding: 0 10px;
    }
    
    .logo-img {
        width: 120px;
    }
}

/* Très petits smartphones - iPhone SE, etc. (max 375px) */
@media screen and (max-width: 375px) {
    .header-content {
        padding: 10px 0;
        background-color: #303030;
    }
    .tete {
        font-size: 0.9em;
        margin-top: 20px;
        padding: 0 8px;
    }
    
    .tete3 {
        font-size: 0.75em;
        line-height: 1.3;
        margin-top: 15px;
        text-align: justify;
    }
    
    .branham-img {
        width: 120px;
        max-width: 150px;
        margin-top: 15px !important;
        padding: 5px;
    }
    
    .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%;
}
    
    h1 {
        font-size: 1em;
        padding: 0 8px;
    }
    
    .logo-img {
        width: 100px;
    }
}

/* ========================================
   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;
}

/* 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;
}

#search-input {
    display: none;
    position: fixed;
    top: 24px;
    right: 24px;
    width: 280px;
    padding: 12px 16px;
    border-radius: 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6.7px);
    -webkit-backdrop-filter: blur(6.7px);
    font-size: 1em;
    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);
}
