/* ============================================
   CE WORSHIP TSANGU - Styles Principaux
   ============================================ */

/* Variables CSS - Couleurs officielles inspirées du logo */
:root {
    /* Couleurs du logo : bleu foncé, bleu clair, orange */
    --primary-color: #1e3a5f; /* Bleu foncé du logo */
    --secondary-color: #5dade2; /* Bleu clair du logo */
    --accent-color: #ff6b35; /* Orange du logo */
    --gold-color: #f4a261;
    --dark-bg: #1e3a5f;
    --light-bg: #f0f4f8; /* Bleu très clair au lieu de blanc */
    --light-bg-alt: #e8f0f5; /* Alternative plus claire */
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.1);
    --shadow-md: 0 4px 16px rgba(30, 58, 95, 0.15);
    --shadow-lg: 0 8px 32px rgba(30, 58, 95, 0.2);
    --shadow-xl: 0 12px 48px rgba(30, 58, 95, 0.25);
    
    /* Typographie - Polices fluides */
    --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Mode Sombre */
[data-theme="dark"] {
    --primary-color: #5dade2;
    --secondary-color: #7fb3d3;
    --accent-color: #ff8c5a;
    --dark-bg: #0d1b2a;
    --light-bg: #1a2332;
    --light-bg-alt: #252f3f;
    --text-dark: #e0e0e0;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);
}

/* Reset et Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* S'assurer que le contenu est prêt à s'afficher */
body.loading {
    overflow: hidden;
}

body:not(.loading) {
    overflow: auto;
}

/* ============================================
   BOUTON RETOUR EN HAUT
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   BREADCRUMBS (FIL D'ARIANE)
   ============================================ */
.breadcrumb-container {
    background: var(--light-bg-alt);
    padding: 15px 0;
    margin-top: 76px;
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-muted);
    padding: 0 8px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* ============================================
   BARRE DE RECHERCHE
   ============================================ */
.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

/* Cacher la barre de recherche sur mobile */
@media (max-width: 992px) {
    .search-container {
        display: none !important;
    }
}

.search-box {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--light-bg);
    color: var(--text-dark);
}

.search-box:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light-bg);
    border: 1px solid rgba(30, 58, 95, 0.1);
    border-radius: 8px;
    margin-top: 5px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(30, 58, 95, 0.05);
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: var(--light-bg-alt);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.search-result-snippet {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   BOUTONS DE PARTAGE SOCIAL
   ============================================ */
.social-share {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-light);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.email {
    background: var(--primary-color);
}

/* ============================================
   SECTION TÉMOIGNAGES
   ============================================ */
.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.testimonial-rating {
    color: #f4a261;
    margin-bottom: 15px;
}

/* ============================================
   CALENDRIER DES ÉVÉNEMENTS
   ============================================ */
.event-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.event-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.event-date-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.event-date-icon .day {
    font-size: 20px;
    line-height: 1;
}

.event-date-icon .month {
    font-size: 12px;
    text-transform: uppercase;
}

.event-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.event-description {
    color: var(--text-muted);
    font-size: 14px;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-color);
    font-size: 14px;
    margin-top: 10px;
}

/* ============================================
   FAQ (ACCORDION)
   ============================================ */
.faq-item {
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg-alt);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-icon {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.8;
}

/* ============================================
   SECTION ACTUALITÉS
   ============================================ */
.news-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--accent-color);
}

/* ============================================
   PAGE DÉTAIL ACTUALITÉ
   ============================================ */
.news-detail-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.6s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.news-detail-header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 20px;
}

.news-detail-date {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.news-detail-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.news-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-detail-image:hover img {
    transform: scale(1.05);
}

.news-detail-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-top: 30px;
}

.news-detail-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.news-detail-content ul {
    padding-left: 25px;
}

.news-detail-content ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.news-detail-content .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
}

.news-detail-share {
    margin-top: 40px;
}

.news-detail-share h5 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive pour la page détail */
@media (max-width: 768px) {
    .news-detail-card {
        padding: 25px;
    }
    
    .news-detail-title {
        font-size: 1.8rem;
    }
    
    .news-detail-content {
        font-size: 1rem;
    }
    
    .news-detail-content h3 {
        font-size: 1.4rem;
    }
    
    .news-detail-content .lead {
        font-size: 1.1rem;
    }
}

/* Loader de bienvenue */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    background-image: url('../images/CE.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.7);
    z-index: 1;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeInScale 1s ease;
    position: relative;
    z-index: 2;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.4));
    object-fit: contain;
}

.loader-message {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
}

.loader-submessage {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    animation: fadeInUp 1.4s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto 0;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Theme Toggle Button */
.theme-toggle {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.theme-toggle:hover {
    color: var(--secondary-color) !important;
}

.theme-toggle:focus {
    outline: none;
    box-shadow: none;
}

.theme-toggle i {
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    background: rgba(30, 58, 95, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: rgba(30, 58, 95, 0.98) !important;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 20px;
    object-fit: contain;
}

.logo-text {
    color: var(--text-light);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .nav-link i {
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
}

/* Couleurs différentes pour les icônes de navigation */
.navbar-nav .nav-link[href="index.html"] i {
    color: #ff6b35; /* Orange */
}

.navbar-nav .nav-link[href="about.html"] i {
    color: #5dade2; /* Bleu clair */
}

.navbar-nav .nav-link[href="gallery.html"] i {
    color: #f4a261; /* Or */
}

.navbar-nav .nav-link[href="team.html"] i {
    color: #e76f51; /* Rouge-orange */
}

.navbar-nav .nav-link[href="news.html"] i {
    color: #2a9d8f; /* Turquoise */
}

.navbar-nav .nav-link[href="contact.html"] i {
    color: #e63946; /* Rouge */
}

.navbar-nav .nav-link[href="faq.html"] i {
    color: #f77f00; /* Orange foncé */
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link .nav-text {
    display: inline;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    background-image: url('../images/CE.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.4) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    background-image: url('../images/CE.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.75);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Vision Section */
.vision-section {
    background: var(--light-bg);
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* About Preview */
.about-preview img {
    transition: transform 0.3s ease;
}

.about-preview img:hover {
    transform: scale(1.05);
}

/* Quick Links */
.quick-link-card {
    padding: 2rem;
    background: var(--light-bg-alt);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    animation: fadeInUp 0.6s ease backwards;
}

.quick-link-card:nth-child(1) { animation-delay: 0.1s; }
.quick-link-card:nth-child(2) { animation-delay: 0.2s; }
.quick-link-card:nth-child(3) { animation-delay: 0.3s; }
.quick-link-card:nth-child(4) { animation-delay: 0.4s; }

.quick-link-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: var(--text-light);
}

.quick-link-card i {
    color: var(--secondary-color);
}

/* ============================================
   ICÔNES COLORÉES
   ============================================ */
.icon-colored {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-colored:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

/* Couleurs pour les icônes Quick Links */
.icon-users {
    color: #e76f51 !important; /* Rouge-orange */
}

.icon-calendar {
    color: #2a9d8f !important; /* Turquoise */
}

.icon-mobile {
    color: #f77f00 !important; /* Orange foncé */
}

.icon-envelope {
    color: #e63946 !important; /* Rouge */
}

/* Couleurs pour les icônes d'événements */
.icon-clock {
    color: #ff6b35 !important; /* Orange */
}

/* Couleurs pour les icônes de check */
.icon-check-green {
    color: #2a9d8f !important; /* Vert turquoise */
}

/* Couleurs pour les icônes d'étoiles */
.icon-star-yellow {
    color: #f4a261 !important; /* Or */
}

/* Couleurs pour les icônes de cœur */
.icon-heart-red {
    color: #e63946 !important; /* Rouge */
}

/* Couleurs pour les icônes de cible */
.icon-bullseye {
    color: #5dade2 !important; /* Bleu clair */
}

/* Couleurs pour les icônes de contact */
.icon-contact-email {
    color: #e63946 !important; /* Rouge */
}

.icon-contact-phone {
    color: #2a9d8f !important; /* Vert turquoise */
}

.icon-contact-location {
    color: #f77f00 !important; /* Orange foncé */
}

/* Couleurs pour les icônes de réseaux sociaux dans le footer */
.footer .social-link i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social-link:nth-child(1) i {
    color: #1877f2; /* Facebook bleu */
}

.footer .social-link:nth-child(2) i {
    color: #e4405f; /* Instagram rose */
}

.footer .social-link:nth-child(3) i {
    color: #ff0000; /* YouTube rouge */
}

.footer .social-link:nth-child(4) i {
    color: #25d366; /* WhatsApp vert */
}

.footer .social-link:hover i {
    transform: scale(1.3);
}

/* Couleurs pour les icônes dans les cartes d'événements */
.event-date-icon {
    background: linear-gradient(135deg, #5dade2 0%, #1e3a5f 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: var(--shadow-md);
}

.event-date-icon .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-icon .month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Amélioration des icônes dans les témoignages */
.testimonial-rating .icon-colored {
    margin-right: 5px;
}

/* Amélioration des icônes dans les sections de valeurs */
.value-card .icon-colored {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card:nth-child(1) .icon-colored {
    color: #5dade2 !important; /* Bleu clair */
}

.value-card:nth-child(2) .icon-colored {
    color: #ff6b35 !important; /* Orange */
}

.value-card:nth-child(3) .icon-colored {
    color: #2a9d8f !important; /* Turquoise */
}

/* Couleurs supplémentaires pour about.html */
.icon-music-blue {
    color: #5dade2 !important; /* Bleu clair */
}

.icon-users-cog {
    color: #ff6b35 !important; /* Orange */
}

.icon-pray-purple {
    color: #9b59b6 !important; /* Violet */
}

.icon-video-red {
    color: #ff0000 !important; /* Rouge YouTube */
}

.icon-quote-blue {
    color: #5dade2 !important; /* Bleu clair */
}

.icon-calendar-check {
    color: #2a9d8f !important; /* Turquoise */
}

/* Amélioration des icônes dans les titres de sections */
.section-title .icon-colored {
    font-size: 0.9em;
    vertical-align: middle;
    margin-right: 10px;
}

/* Animation pour les icônes dans les titres */
.section-title .icon-colored {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.quick-link-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Join Section */
.join-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* App Section */
.app-section {
    background: var(--light-bg);
}

.app-buttons .btn {
    min-width: 200px;
}

/* Gallery */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-filter {
    background: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: var(--text-light);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease backwards;
}

.gallery-card:nth-child(1) { animation-delay: 0.05s; }
.gallery-card:nth-child(2) { animation-delay: 0.1s; }
.gallery-card:nth-child(3) { animation-delay: 0.15s; }
.gallery-card:nth-child(4) { animation-delay: 0.2s; }
.gallery-card:nth-child(5) { animation-delay: 0.25s; }
.gallery-card:nth-child(6) { animation-delay: 0.3s; }

.gallery-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--text-light);
}

/* Video Card Styles */
.gallery-card.video-card {
    position: relative;
}

.gallery-card.video-card .video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.gallery-card.video-card .video-wrapper iframe {
    border-radius: 10px;
}

.gallery-card.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item {
    display: block;
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

/* Team Section */
.team-card {
    background: var(--light-bg-alt);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease backwards;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(93, 173, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl);
    background: var(--text-light);
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.team-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-photo::after {
    opacity: 1;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(1);
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.team-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--secondary-color);
}

.team-role {
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.team-card:hover .team-role {
    color: var(--primary-color);
}

.team-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Réseaux sociaux dans les cartes équipe */
.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(30, 58, 95, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.team-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.team-social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.team-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.team-social-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

.team-social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.team-social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.value-card {
    background: var(--light-bg-alt);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease backwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: var(--text-light);
}

.value-card i {
    color: var(--secondary-color);
}

/* Contact Section */
.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-form {
    background: var(--light-bg-alt);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease;
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--primary-color) !important;
    color: var(--text-light);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-vision {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer h5 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Content Section */
.content-section {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-section p {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .navbar-brand .logo-text {
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.8rem;
    }
    
    .quick-link-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-photo {
        width: 150px;
        height: 150px;
    }
    
    .gallery-card img {
        height: 250px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .navbar-brand {
        font-size: 0.85rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.75rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .page-header {
        padding: 80px 0 50px;
        background-attachment: scroll;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    
    .video-wrapper {
        margin-bottom: 2rem;
    }
    
    .fade-in-left,
    .fade-in-right {
        transform: translateY(50px) !important;
    }
    
    .fade-in-left.animate,
    .fade-in-right.animate {
        transform: translateY(0) !important;
    }
    
    .team-card {
        margin-bottom: 2rem;
    }
    
    .quick-link-card {
        padding: 1.5rem;
    }
    
    /* Cacher la barre de recherche sur mobile */
    .search-container {
        display: none !important;
    }
    
    .navbar-collapse {
        background: rgba(30, 58, 95, 0.98);
        margin-top: 0.5rem;
        padding: 0.5rem;
        border-radius: 8px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        text-align: left;
        padding: 0;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        padding: 0.6rem 1rem;
        margin: 0;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 12px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link i {
        width: 20px;
        text-align: center;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .navbar-nav .nav-link .nav-text {
        flex: 1;
    }
    
    /* Sur très petit écran, réduire encore plus */
    @media (max-width: 400px) {
        .navbar-nav .nav-link {
            padding: 0.5rem 0.75rem;
            font-size: 0.7rem;
        }
        
        .navbar-nav .nav-link i {
            width: 18px;
            font-size: 0.8rem;
        }
    }
    
    /* Améliorer le bouton hamburger */
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 5px;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.1rem rgba(255, 255, 255, 0.25);
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
    
    /* Style pour le bouton thème sur mobile */
    .theme-toggle {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem !important;
    }
    
    .app-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .app-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-filter {
        width: 100%;
        max-width: 200px;
        margin-bottom: 0.5rem;
    }
    
    .navbar-brand {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }
    
    .navbar-brand .logo-text {
        font-size: 0.7rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.7rem;
    }
    
    .logo-img {
        height: 32px;
        width: 32px;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .page-header {
        padding: 70px 0 40px;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .team-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .quick-link-card {
        padding: 1rem;
    }
    
    .quick-link-card i {
        font-size: 2rem !important;
    }
    
    .video-wrapper iframe {
        border-radius: 10px;
    }
    
    .content-section {
        padding: 1rem 0;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .navbar-brand {
        font-size: 0.75rem;
    }
    
    .navbar-brand .logo-text {
        font-size: 0.7rem;
    }
    
    .logo-img {
        height: 28px;
        width: 28px;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.65rem;
        padding: 0.5rem 0.75rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Utility Classes */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

/* Video Wrapper */
.video-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    border-radius: 15px;
}

/* Fade In Animations with Delays - Effet de sortie de la page */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in-delay-1 {
    transition-delay: 0.2s;
}

.fade-in-delay-2 {
    transition-delay: 0.4s;
}

.fade-in-delay-3 {
    transition-delay: 0.6s;
}

.fade-in-delay-4 {
    transition-delay: 0.8s;
}

.fade-in-delay-5 {
    transition-delay: 1s;
}

.fade-in-delay-6 {
    transition-delay: 1.2s;
}

/* Fade In Left - Effet de sortie depuis la gauche */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-100px) translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Fade In Right - Effet de sortie depuis la droite */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.fade-in-right {
    opacity: 0;
    transform: translateX(100px) translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Mode Sombre - Styles supplémentaires */
[data-theme="dark"] .bg-light {
    background-color: var(--light-bg-alt) !important;
}

[data-theme="dark"] .card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .quick-link-card,
[data-theme="dark"] .gallery-card,
[data-theme="dark"] .value-card {
    background-color: var(--light-bg-alt);
    color: var(--text-dark);
    border-color: var(--text-muted);
}

[data-theme="dark"] .contact-form {
    background-color: var(--light-bg-alt);
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: var(--light-bg);
    color: var(--text-dark);
    border-color: var(--text-muted);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: var(--light-bg);
    color: var(--text-dark);
    border-color: var(--secondary-color);
}

[data-theme="dark"] .page-header::before {
    background: rgba(13, 27, 42, 0.8);
}

[data-theme="dark"] .hero-section::before {
    background: rgba(13, 27, 42, 0.5);
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
}

[data-theme="dark"] .navbar {
    background: rgba(13, 27, 42, 0.95) !important;
}

[data-theme="dark"] .footer {
    background: var(--dark-bg) !important;
}

[data-theme="dark"] .btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

[data-theme="dark"] .btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

[data-theme="dark"] .btn-outline-light {
    border-color: var(--text-light);
    color: var(--text-light);
}

[data-theme="dark"] .btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--dark-bg);
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .social-links {
        display: none;
    }
}

