:root {
    --bg-dark: #000000;
    --text-main: #ffffff;
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar Custom Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
}

/* Custom Logo Text Controls */
.navbar-brand {
    font-family: 'Cinzel', sans-serif;
    font-size: 0.8em;
    color: var(--text-main) !important;
    font-weight: 5;
    padding: 0;
    letter-spacing: 1px;
    line-height: 1;
}

/* Custom Logo Image Controls */
.navbar-brand img {
    width: auto;
    height: 45px;
    max-height: 100%;
    object-fit: contain;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff !important;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.355em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    font-size: 0.75rem;
    opacity: 0.7;
}

.search-icon {
    color: var(--text-main);
    font-size: 1.1rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}



/* Custom Logo Image Controls inside css/style.css */
.navbar-brand img {
    width: auto;         /* Keeps the aspect ratio from distorting */
    height: 70px;        /* CHANGE THIS VALUE: e.g., 30px for smaller, 60px for larger */
    max-height: 100%;    /* Prevents the logo from stretching past the navigation bar */
    object-fit: contain; /* Ensures the image scales cleanly without clipping */
}




/* Hero Section Custom Styles */




/* Custom Hero Layout Styling with Video Background Container */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden; /* Prevents video clipping from scaling outside the screen */
    background-color: #000000; /* Fallback color while video loads */
}

/* Background Video Sizing Rules */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forces video to behave like a background cover image */
    z-index: 1;
}

/* Dark Graphic Contrast Filter Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

/* Pushes text layers above the media tracks */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-sub {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.2px;
    opacity: 0.95;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.8rem;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 3.5rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    max-width: 700px;
}

/* Action Buttons */
.btn-custom {
    background-color: #0b0c0e;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 190px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: rgba(132,158,229,0.5);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.btn-custom i {
    font-size: 0.85rem;
    margin-left: 1.5rem;
    transition: transform 0.2s ease;
}

.btn-custom:hover i {
    transform: translateX(4px);
}

/* Footer Banner */
.footer-banner {
    background-color: #0d0e10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 3rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link i {
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* Responsive Breakpoints */
@media (max-width: 991.98px) {
    .navbar {
        padding: 1rem;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-section {
        background-position: 75% center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 2.5rem;
    }
    .hero-sub {
        font-size: 1.1rem;
    }
    .btn-custom {
        width: 100%;
        margin-bottom: 1rem;
    }
    .footer-banner {
        padding: 1rem 1.5rem;
    }
}


/* Custom About Section Component Rules */
.about-section {
    background-color: #ffffff; /* Clean solid background break from the black hero layout */
    color: #000000;            /* Primary dark typography styling */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Main Broad Top Header Typography Statement */
.about-headline {
    font-family: var(--font-sans);
    font-size: 3rem;
    line-height: 1.35;
    font-weight: 500;
    color: #0a0a0a;
    letter-spacing: -0.5px;
}

/* Secondary Left Serif Statement Display */
.about-serif-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.35;
    font-weight: 400;
    color: #111111;
}

/* Detailed Paragraph Copy Block Element */
.about-lead-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: #333333;
    font-weight: 400;
}

/* Dark Custom Action Buttons */
.btn-dark-action {
    background-color: #000000;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.85rem 1.6rem;
    border-radius: 0px; /* Matching the sharp geometric structure in the snapshot image */
    border: 1px solid #000000;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-dark-action:hover {
    background-color: #222222;
    color: #ffffff;
}

/* Light/Transparent Custom Action Buttons */
.btn-light-action {
    background-color: transparent;
    color: #000000;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.85rem 1.6rem;
    border-radius: 0px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-light-action:hover {
    background-color: #f5f5f5;
    color: #000000;
}

/* Asset Container Box Constraints */
.about-image-wrapper {
    width: 100%;
    overflow: hidden;
}

/* Fluid Photo Object Alignment Controls */
.about-media-frame {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Media Breakpoint Adjustments for Smaller Portable Devices */
@media (max-width: 767.98px) {
    .about-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .about-headline {
        font-size: 1.75rem;
    }
    .about-serif-title {
        font-size: 1.5rem;
    }
    .btn-dark-action, .btn-light-action {
        width: 100%;
        justify-content: space-between;
    }
}


/* Custom Music Section Layout Component */
.music-section {
    background-color: #e6e6e6; /* Soft gray contrast background matching the target reference */
    color: #000000;
    padding-top: 5rem;
    padding-bottom: 6rem;
}

/* Category Label Element */
.music-category-tag {
    font-size: 1rem;
    color: #404040; /* Muted gray text label styling */
    text-transform: none;
    letter-spacing: 0.5px;

}

/* Main Graphic Sub-Header Heading */
.music-main-title {
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.2px;
    font-family: var(--font-serif);
}

/* Functional Grid Element Wrap */
.music-card {
    background: transparent;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

/* Square Container Aspect Constraints */
.music-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Locks the images into strict uniform square geometries */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft natural base shadows */
}

/* Fluid Responsive Image Frame Content */
.music-album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Individual Grid Title Element */
.music-item-title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Individual Grid Paragraph Descriptive Context */
.music-item-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    line-height: 1.6;
    color: #555555;
    font-weight: 400;
    max-width: 250px; /* Restricts row wraps to prevent uneven text stretch */
}

/* Mobile Layout Tweaks for Dynamic Viewing */
@media (max-width: 575.98px) {
    .music-section {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }
    .music-main-title {
        font-size: 1.6rem;
    }
    .music-item-desc {
        max-width: 100%; /* Allows flexible text on mobile blocks */
    }
}


/* Custom Blog Call-To-Action Container Component */
.blog-cta-section {
    position: relative;
    min-height: 550px; /* Provides sufficient breathing room for structural spacing */
    background: #111111 url('../assets/img/blog-img.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

/* Dark Overlay Tint Layer matching screenshot aesthetic */
.blog-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Deep dark background overlay tint */
    z-index: 1;
}

/* Foreground Layout Structural Z-Index Anchor */
.blog-cta-content {
    z-index: 2;
    color: #ffffff; /* Sets baseline default to crisp white typography */
}

/* Top Bold Text Brand Display Accent */
.blog-cta-brand {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Secondary Serif Style Title Statement */
.blog-cta-subheading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Main Paragraph Copy Block Layout Controls */
.blog-cta-description {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.2px;
}

/* Custom Pill-Shaped Outlined Action Button Component */
.btn-blog-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px; /* Emphasizes the tracked out look from the sample shot */
    padding: 0.9rem 2.6rem;
    border-radius: 50px; /* Forces soft completely round edge geometry */
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Smooth Button Interactive Hover Transformations */
.btn-blog-outline:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Dynamic Viewing Breakpoint Scales for Handheld Viewports */
@media (max-width: 767.98px) {
    .blog-cta-section {
        min-height: 450px;
    }
    .blog-cta-brand {
        font-size: 1.65rem;
    }
    .blog-cta-subheading {
        font-size: 1.8rem;
    }
    .blog-cta-description {
        font-size: 0.9rem;
    }
    .btn-blog-outline {
        width: 100%; /* Spans full horizontal on tightly configured compact viewports */
    }
}


/* Custom Multi-Column Footer Component */
.global-footer {
    background-color: #111111; /* Uniform dark background configuration */
    color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 2rem;
    font-family: var(--font-sans);
}

/* Directory Header Callouts */
.footer-heading {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

/* Unstyled Structural Directory Lists */
.footer-links-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links-list li {
    margin-bottom: 0.45rem;
}

/* Individual Inline Link Elements */
.footer-links-list li a {
    color: #9c9c9c; /* Soft slate gray text layer matching the image reference */
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-links-list li a:hover {
    color: #ffffff;
}

/* Bottom Actions Styling Rule Adjustments */
.footer-tagline {
    font-size: 0.85rem;
    font-weight: 400;
    color: #ffffff;
}

/* Circular Script Logo Simulation Mock */
.footer-logo-circle {
    width: 42px;
    height: 42px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

/* Center Pill Outlined Call Action Component */
.btn-find-church {
    color: #ffffff;
    border: 1px solid #ffffff;
    background: transparent;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 0.75rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-find-church:hover {
    background-color: #ffffff;
    color: #111111;
}

/* Right Side Vector Networking Layout Connections */
.footer-socials a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

/* Tiny Horizontal Muted Copyright Layout Anchor */
.footer-copyright-text {
    font-size: 0.7rem;
    color: #666666;
    margin-bottom: 0;
}

/* Custom Bottom Row Divider Line */
.global-footer .border-secondary {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Adaptive Breakdown Restructure across Viewports */
@media (max-width: 991.98px) {
    .footer-tagline {
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* Custom Footer Image Logo Sizing Configuration */
.footer-logo-circle {
    /* Set the exact size you want your footer logo to display */
    width: 65px;         
    height: auto;        
    
    /* Removes the text background restrictions so your image behaves naturally */
    border: none !important;
    border-radius: 0 !important; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Forces the internal img tag to fit cleanly inside the size container */
.footer-logo-circle img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Prevents distortion or squishing of the logo */
}


/* Responsive Inline SVG Layout Constraints */
.global-map-section {
    width: 100%;
    height: auto;
    min-height: 420px;
    display: block;
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;

}

/* Base Dark Gray Fill Color Override Layer for Default Continents */
.description-sec{
    color: #404040;
}

/* Specific Gold/Brown Highlighted Active Ministry Zones */
.map-region-gold {
    color: #a1824a; /* Precise branding highlight gold tint */
    transition: fill 0.3s ease, filter 0.3s ease;
}

/* Optional Interactive Hover States Powered Natively by Vector Engine */
.map-region-gold:hover {
    fill: #c5a05e;
    cursor: pointer;
    filter: drop-shadow(0px 2px 5px rgba(161, 130, 74, 0.4));
}

.map-region-dark:hover {
    fill: #4d4d4d;
}

/* Redimensionnement des logos images dans le footer */
.footer-socials a img {
    width: auto;          /* Conserve les proportions d'origine de l'image */
    height: 30px;         /* MODIFIEZ CETTE VALEUR : par exemple 16px ou 20px selon vos besoins */
    max-width: 35px;      /* Sécurité pour éviter tout débordement inattendu */
    object-fit: contain;  /* Empêche l'image de se déformer ou d'être écrasée */
    vertical-align: middle;
    transition: opacity 0.2s ease;
}

/* Alignement et espacement global des blocs de liens */
.footer-socials a {
    display: inline-flex;
    align-items: center;  /* Aligne parfaitement l'image sur la même ligne que le texte */
    font-size: 0.75rem;   /* Harmonise la taille du texte à côté des logos */
    text-decoration: none;
}

/* Effet visuel optionnel au survol */
.footer-socials a:hover img {
    opacity: 0.8;         /* Assombrit légèrement l'image au survol de la souris */
}


.footer-social-list li a img {
    width: auto;
    height: 16px;         /* Taille discrète et uniforme pour les logos */
    max-width: 20px;
    object-fit: contain;
    margin-right: 12px;   /* Espace entre le logo et le texte (ex: Facebook) */
    filter: brightness(0) invert(1); /* Optionnel : force l'image en blanc si elle est noire */
}
/* Alignement spécifique pour la colonne SOCIAL avec images */
.footer-social-list li a {
    display: inline-flex;
    align-items: center; /* Centre verticalement le logo avec le mot */
}
.footer-list li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    transition: color 0.2s ease;
    display: inline-block;
}
.footer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-list li {
    margin-bottom: 0.85rem; /* Espacement vertical entre les liens */
}



/* Titres des colonnes (ABOUT, CONNECT, etc.) */
.footer-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px; /* Espacement des lettres majuscules */
    margin-bottom: 1.8rem;
    color: #ffffff;
}

/* Connect Section Wrapper Styles */
.connect-showcase-section {
    background-color: #ffffff; /* Crisp white background backdrop */
    color: #000000;
    font-family: var(--font-sans);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Header Text Top Label Elements */
.connect-main-headline {
    color: #000; /* Rich church-themed emerald green matching the image header */
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.connect-sub-headline {
    color: #424242;
    font-size: 1.05rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Sharp Outlined Action Button Controls */
.btn-connect-outline {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #1a1a1a; /* Thin clean black geometric frame lines */
    border-radius: 4px;        /* Soft corner rounding profile */
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    width: 100%;
    display: block;
}

/* Quick Interactive Link Hover Transitions */
.btn-connect-outline:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Center Mobile Vertical Display App Card */
.app-banner-card {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 480px; /* Taller display proportions matching cell phone frames */
    margin: 0 auto;
    border-radius: 8px;
    background: #111111 url('../assets/img/phone.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Image Readability Protection Dark Overlay Mask */
.app-banner-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

/* Foreground App Graphics Structural Content Box */
.app-banner-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 2rem 1.5rem;
}

/* Cursive Accent Typography Rule Mock */
.app-brand-script {
    font-family: 'Great Vibes', cursive, sans-serif;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 400;
}

/* Sub-Brand Text Metadata Label */
.app-utility-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

/* App Download Marketplace Image Frame Controls */
.app-store-badges-container {
    width: 100%;
    max-width: 160px; /* Locks down standard aspect dimensions of badge indicators */
}

.store-badge-link {
    display: block;
    transition: transform 0.2s ease;
}

.store-badge-link:hover {
    transform: scale(1.04);
}

.store-badge-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Handheld System Responsive Screen Column Shifts */
@media (max-width: 767.98px) {
    .connect-main-headline {
        font-size: 1.4rem;
    }
    .app-banner-card {
        height: 400px;
        margin-bottom: 1.5rem;
    }
    /* Restructures order mechanics to stack image above links on tight mobile viewports */
    .order-2 {
        margin-top: 1rem;
    }
}

