/* ---------- RESET & VARIABLES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a5f;
    --primary-dark: #0f2b44;
    --accent: #d4af37;
    --accent-dark: #b8960c;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
    --shadow-md: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.02);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.25);
    --border-radius: 1rem;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.5;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- TYPOGRAPHIE ---------- */
h1, h2, h3, .logo, .ticker-badge {
    font-family: 'Playfair Display', serif;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 3rem 0 2rem;
    color: var(--primary);
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0.8rem auto 0;
    border-radius: 3px;
}

/* ---------- BOUTONS ---------- */
.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}
.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}
.btn-newsletter {
    background: white;
    color: var(--primary);
}
.btn-newsletter:hover {
    background: var(--accent);
    color: var(--primary-dark);
}
.btn-youtube {
    background: #ff0000;
    color: white;
}
.btn-youtube:hover {
    background: #cc0000;
}

/* ---------- HEADER STICKY ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Bande défilante */
.news-ticker-bar {
    background: #1a1a2e;
    color: #eee;
    border-bottom: 1px solid var(--accent);
}
.ticker-container {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}
.ticker-badge {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ticker-scroll-wrapper {
    flex: 1;
    overflow: hidden;
    padding: 0.5rem 0;
}
.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scrollTicker 120s linear infinite;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    padding-right: 2rem;
}
.faith-icon {
    color: var(--accent);
    margin-right: 0.3rem;
}
@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-scroll-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

/* Navigation principale */
.nav-container {
    padding: 0 2rem;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-icon {
    font-size: 1.6rem;
}
.nav-links {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.nav-links li {
    list-style: none;
}
.nav-links a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}
.nav-links a:hover {
    color: var(--accent);
}
.desktop-login {
    flex-shrink: 0;
}
.mobile-login {
    display: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin: 4px 0;
    transition: 0.2s;
}

/* Sous-menus desktop */
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 0.75rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    padding: 0.5rem 0;
    z-index: 200;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li {
    display: block;
}
.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.2rem;
    color: var(--dark);
    text-decoration: none;
}
.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--accent);
}

/* Responsive mobile/tablette */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1rem;
    }
    nav {
        height: 70px;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 1rem;
        transform: none;
        white-space: normal;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    .hamburger {
        display: flex;
    }
    .desktop-login {
        display: none;
    }
    .mobile-login {
        display: block;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
    }
    .dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown > a i {
        transition: transform 0.2s;
    }
    .dropdown.open > a i {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .ticker-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    .ticker-item {
        font-size: 0.7rem;
        gap: 1rem;
    }
    .container {
        padding: 0 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}


/* ---------- TYPING EFFECT VERSET ---------- */
.verse-typing-container {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #d4af37;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Playfair Display', serif;
}
.typing-text {
    display: inline-block;
    min-height: 3rem;
    line-height: 1.4;
}
/* Cursor clignotant */
.typing-text::after {
    content: '|';
    animation: blink 0.7s infinite;
    margin-left: 2px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
/* Responsive : réduire la taille sur mobile */
@media (max-width: 768px) {
    .verse-typing-container {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}


/* ---------- HERO ---------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #0b2b3b 100%);
    padding: 4rem 0 2rem;
    color: white;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255,215,0,0.1) 0%, transparent 60%);
}
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.youtube-carousel-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}
.carousel-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.carousel-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-slide {
    flex: 0 0 100%;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: black;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slide-caption {
    text-align: center;
    padding: 0.8rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: white;
    font-weight: 500;
}
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.2s;
}
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-prev:hover, .carousel-next:hover {
    background: rgba(0,0,0,0.8);
}
.carousel-dots {
    text-align: center;
    margin-top: 1rem;
}
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.dot.active {
    background: var(--accent);
}

/* ---------- INSPIRATION ---------- */
.daily-inspiration {
    background: var(--white);
    padding: 3rem 0;
}
.inspiration-box {
    background: #f0f4f8;
    padding: 2.5rem;
    border-radius: 2rem;
    text-align: center;
    border-left: 6px solid var(--accent);
    box-shadow: var(--shadow-sm);
}
.verse {
    font-style: italic;
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--primary);
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e9ecef;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.share-btn:hover {
    background: var(--accent);
    color: white;
}

/* ---------- GRILLE CARTES ---------- */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}
.card {
    background: var(--white);
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.card-img {
    height: 200px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.card:hover .card-img img {
    transform: scale(1.05);
}
.card-body {
    padding: 1.5rem;
}
.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.card-text {
    color: var(--gray);
    margin-bottom: 1rem;
}
.price {
    font-weight: bold;
    color: var(--accent);
    font-size: 1.2rem;
    margin: 0.5rem 0;
}
.progress-bar {
    background: #e0e0e0;
    height: 6px;
    border-radius: 3px;
    margin: 0.8rem 0;
}
.progress-fill {
    background: var(--accent);
    height: 100%;
    border-radius: 3px;
}
.youtube-card {
    border: 1px solid #ff0000;
}
.youtube-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
    background: var(--primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 500px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
}
.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 3rem;
    font-size: 1rem;
}

/* ---------- FOOTER ---------- */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 2rem 0;
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: #cbd5e1;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--accent);
}

/* ---------- TYPING EFFECT VERSET ---------- */
.verse-typing-container {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #d4af37;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Playfair Display', serif;
    margin: 0;          /* supprime toute marge externe */
}

.typing-text {
    display: inline-block;
    min-height: 3rem;
    line-height: 1.4;
}

/* ---- CORRECTION POUR MOBILE ---- */
@media (max-width: 768px) {
    .verse-typing-container {
        padding: 0.3rem 0.8rem;   /* réduction drastique du padding */
        font-size: 0.7rem;        /* police plus petite */
        line-height: 1.2;
    }
    .typing-text {
        min-height: 1.8rem;       /* hauteur minimale réduite */
    }
}

@media (max-width: 480px) {
    .verse-typing-container {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }
    .typing-text {
        min-height: 1.5rem;
    }
}


@media (max-width: 768px) {
    header {
        padding: 0;
        margin: 0;
    }
}






                                /* ---------- PAGE À PROPOS ---------- */
.about-hero {
    background: linear-gradient(135deg, var(--primary), #0b2b3b);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    margin-top: 0;
}
.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s;
}
.mission-card:hover {
    transform: translateY(-5px);
}
.mission-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.mission-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}
.mission-card ul {
    text-align: left;
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}
.mission-card li {
    margin-bottom: 0.5rem;
}

.about-story {
    background: var(--light);
    padding: 3rem 0;
}
.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}
.story-text {
    flex: 1;
}
.story-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.story-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}
.story-image {
    flex: 1;
}
.story-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.about-values {
    padding: 3rem 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}
.value-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.about-cta {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}
.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.about-cta p {
    margin-bottom: 1.5rem;
}
.about-cta .btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}
.about-cta .btn-primary:hover {
    background: var(--accent-dark);
}





/* Styles pour les séries et interviews (complément) */
.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.series-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}
.series-card:hover {
    transform: translateY(-5px);
}
.series-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.series-card-body {
    padding: 1.5rem;
}
.series-meta {
    color: var(--accent);
    font-weight: 500;
    margin: 0.5rem 0;
}
.interview-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}
.interview-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}
.interview-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.interview-info {
    flex: 1;
}
.interview-date {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0.5rem 0;
}
@media (max-width: 768px) {
    .interview-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ---------- PAGES PODCAST ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--primary), #0b2b3b);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}
.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.podcast-grid, .series-grid, .interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.podcast-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.podcast-cover {
    position: relative;
}
.podcast-cover img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.podcast-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.podcast-info {
    padding: 1.5rem;
}
.podcast-date {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0.5rem 0;
}
.series-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.series-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.series-card-body {
    padding: 1.5rem;
}
.series-meta {
    color: var(--accent);
    font-weight: 500;
    margin: 0.5rem 0;
}
.interview-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}
.interview-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.interview-info {
    flex: 1;
}
@media (max-width: 768px) {
    .interview-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}






/* ---------- PAGE BLOG ---------- */
.blog-header {
    text-align: center;
    padding: 3rem 0 1rem;
}
.blog-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
}
.blog-header p {
    font-size: 1.2rem;
    color: var(--gray);
}
.blog-layout {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.blog-posts {
    flex: 2;
    min-width: 280px;
}
.blog-sidebar {
    flex: 1;
    min-width: 250px;
}
.blog-post {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    transition: transform 0.3s;
}
.blog-post:hover {
    transform: translateY(-4px);
}
.post-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.post-content {
    padding: 1.5rem;
}
.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}
.post-meta i {
    margin-right: 0.3rem;
}
.post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.post-content p {
    margin-bottom: 1rem;
}
.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0;
}
.pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    transition: all 0.2s;
}
.pagination a.active {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}
.pagination a:hover:not(.active) {
    background: #f0f0f0;
}
/* Sidebar */
.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}
.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent);
    padding-left: 0.75rem;
}
.search-form {
    display: flex;
}
.search-form input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem 0 0 0.5rem;
}
.search-form button {
    background: var(--accent);
    border: none;
    padding: 0 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    color: var(--primary-dark);
    cursor: pointer;
}
.category-list li, .archive-list li {
    margin-bottom: 0.5rem;
}
.category-list a, .archive-list a {
    display: flex;
    justify-content: space-between;
    color: var(--dark);
}
.category-list a:hover, .archive-list a:hover {
    color: var(--accent);
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tag-cloud a {
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    transition: background 0.2s;
}
.tag-cloud a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}
.newsletter-widget .newsletter-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.newsletter-widget input {
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
}
/* Commentaires */
.comments-section {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
}
.comment-list {
    margin: 1rem 0;
}
.comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.comment-avatar i {
    font-size: 2rem;
    color: var(--gray);
}
.comment-body strong {
    color: var(--primary);
}
.comment-date {
    font-size: 0.8rem;
    color: var(--gray);
    margin-left: 0.5rem;
}
.reply-link {
    font-size: 0.8rem;
    color: var(--accent);
}
.comment-form {
    margin-top: 2rem;
}
.comment-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
}
.form-check {
    margin: 1rem 0;
}
.form-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .blog-layout {
        flex-direction: column;
    }
    .comment-form .form-row {
        flex-direction: column;
    }
}


/* Pages Pensée du Jour */
.verse-card, .meditation-card, .reflexion-card, .devotion-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
}
.verse-text {
    text-align: center;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--primary);
    margin: 1rem 0;
}
.verse-text i {
    font-size: 2rem;
    color: var(--accent);
}
.verse-ref {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
}
.verse-explanation, .meditation-text, .reflexion-questions {
    margin-top: 1.5rem;
    line-height: 1.6;
}
.previous-verses {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}
.meditation-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.meditation-header i {
    font-size: 2rem;
    color: var(--accent);
}
.meditation-audio {
    margin-top: 2rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 1rem;
}
.reflexion-questions ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}
.devotion-day {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.day-badge {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    font-weight: bold;
}
.devotion-reading, .devotion-meditation, .devotion-prayer, .devotion-challenge {
    margin-bottom: 1.8rem;
}
@media (max-width: 768px) {
    .verse-text { font-size: 1.2rem; }
}




/* ---------- PAGE NEWSLETTER ---------- */
.newsletter-hero {
    background: linear-gradient(135deg, var(--primary), #0b2b3b);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}
.newsletter-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.newsletter-subscription {
    padding: 3rem 0;
    background: var(--light);
}
.subscription-card {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.subscription-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.newsletter-main-form .form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.newsletter-main-form input {
    flex: 2;
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 3rem;
    font-size: 1rem;
}
.newsletter-main-form button {
    flex: 1;
    white-space: nowrap;
}
.form-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 1rem;
}
.newsletter-archives {
    padding: 3rem 0;
}
.newsletter-archives h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}
.archives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.archive-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}
.archive-card:hover {
    transform: translateY(-3px);
}
.archive-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.archive-card h3 {
    margin-bottom: 0.5rem;
}
.archive-card .btn-sm {
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}
.archives-more {
    text-align: center;
    margin-top: 1rem;
}
.newsletter-admin-note {
    background: #f8f9fa;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}
.admin-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}
.admin-card i {
    font-size: 2rem;
    color: var(--primary);
}
.demo-hint {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}
.demo-hint a {
    color: var(--accent);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .newsletter-main-form .form-group {
        flex-direction: column;
    }
    .archives-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-hero h1 {
        font-size: 1.8rem;
    }
}




/* ---------- PAGE TÉMOIGNAGES ---------- */
.testimonials-list {
    padding: 2rem 0;
}
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}
.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}
.testimonial-card:hover {
    transform: translateY(-3px);
}
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.testimonial-header h3 {
    font-size: 1.3rem;
    color: var(--primary);
}
.testimonial-date {
    font-size: 0.8rem;
    color: var(--gray);
}
.testimonial-author {
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--accent);
}
.testimonial-content {
    line-height: 1.6;
    margin-bottom: 1rem;
}
.testimonial-actions {
    margin-top: 0.5rem;
}
.like-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #888;
}
.like-btn i {
    margin-right: 0.3rem;
}
.like-btn:hover {
    background: #f0f0f0;
    color: #e74c3c;
}
.like-btn.liked {
    color: #e74c3c;
    border-color: #e74c3c;
}
.form-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-family: inherit;
}
.media-preview {
    margin-top: 0.8rem;
}
.media-preview audio, .media-preview video {
    max-width: 100%;
    border-radius: 0.5rem;
}
.form-check {
    margin: 1rem 0;
}
.form-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 0.5rem;
}
.form-message .error {
    background: #f8d7da;
    color: #721c24;
}
.form-message .success {
    background: #d4edda;
    color: #155724;
}
.admin-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}
.pending-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}
.pending-item button {
    margin-right: 0.5rem;
    padding: 0.3rem 0.8rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}
.pending-item button:first-of-type {
    background: #28a745;
    color: white;
}
.pending-item button:last-of-type {
    background: #dc3545;
    color: white;
}
@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
    }
    .form-card {
        padding: 1.2rem;
    }
}



/* ---------- PAGE DON ---------- */
.don-hero {
    background: linear-gradient(135deg, var(--primary), #0b2b3b);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}
.don-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.don-section {
    padding: 3rem 0;
    background: var(--light);
}
.don-card {
    max-width: 750px;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.don-card h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}
.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0.8rem 0;
}
.amount-btn {
    background: #f0f0f0;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: 0.2s;
}
.amount-btn:hover, .amount-btn.active {
    background: var(--accent);
    color: var(--primary-dark);
}
.payment-methods {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
}
.payment-option i {
    font-size: 1.2rem;
}
.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.form-row .form-group {
    flex: 1;
}
.btn-donate {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}
.don-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}
.success-message {
    background: #d4edda;
    color: #155724;
}
.error-message {
    background: #f8d7da;
    color: #721c24;
}
.don-impact {
    background: white;
    padding: 3rem 0;
    text-align: center;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.impact-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 1rem;
}
.impact-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .don-card {
        padding: 1.2rem;
    }
    .amount-buttons {
        justify-content: center;
    }
}




/* ---------- PAGE STORE ---------- */
.store-catalog {
    padding: 2rem 0;
}
.products-grid, .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.product-card, .event-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}
.product-card:hover, .event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.product-img {
    height: 180px;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info, .event-info {
    padding: 1rem;
}
.product-title, .event-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.product-author, .event-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}
.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent);
    margin: 0.5rem 0;
}
.btn-add, .btn-reserve {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.9rem;
}
.cart-section {
    background: var(--light);
    padding: 2rem 0;
}
.cart-payment-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.cart-panel, .payment-panel {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}
.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin: 1rem 0;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 0.7rem 0;
}
.cart-item-info {
    flex: 2;
}
.cart-item-title {
    font-weight: 500;
}
.cart-item-price {
    font-size: 0.9rem;
    color: var(--accent);
}
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cart-item-quantity button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.1rem;
}
.cart-total {
    text-align: right;
    font-size: 1.2rem;
    border-top: 2px solid #eee;
    padding-top: 0.8rem;
    margin-top: 0.5rem;
}
.payment-methods {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
}
.btn-checkout {
    width: 100%;
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .cart-payment-wrapper {
        flex-direction: column;
    }
}




/* ---------- PAGE CONTACT ---------- */
.contact-section {
    padding: 3rem 0;
    background: var(--light);
}
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.contact-info {
    flex: 1;
    background: var(--primary);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}
.contact-info i {
    width: 25px;
    color: var(--accent);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    background: rgba(255,255,255,0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}
.contact-form {
    flex: 2;
    padding: 2rem;
}
.captcha-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.captcha-group label {
    white-space: nowrap;
}
.captcha-group input {
    width: 100px;
}
.form-message {
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info {
        text-align: center;
    }
    .contact-info p {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}



/* ---------- AUTH PAGES (Connexion / Inscription) ---------- */
.auth-hero {
    background: linear-gradient(135deg, var(--primary), #0b2b3b);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}
.auth-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.auth-section {
    padding: 3rem 0;
    background: var(--light);
}
.auth-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
}
.auth-card .btn-block {
    width: 100%;
    margin-top: 1rem;
}
.auth-switch {
    text-align: center;
    margin-top: 1rem;
}
.auth-switch a {
    color: var(--accent);
}
.form-message {
    margin-top: 1rem;
}