/* GLOBAL */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0A1A3A;
    
       background-image:
        linear-gradient(
            rgba(10, 26, 58, 0.75),
            rgba(10, 26, 58, 0.75)
        ),
        url('../img/Choir1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #FFFFFF;
  /*  color: white;*/

   
    

}


/* Optional: Glow effect for worship atmosphere */
h1, h2, h3 {
    text-shadow: 0 0 12px rgba(212, 160, 23, 0.6);
}

/* Optional: Soft fade overlay for readability */
.page-header,
section {
    background: rgba(0, 0, 0, 0.35);
    padding: 40px 20px;
    border-radius: 10px;
}






.light-theme {
    background-color: #FFFFFF;
    color: #0A1A3A;
}

.theme-toggle {
    background-color: #D4A017;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

section {
    padding: 60px 20px;
}

.highlight-card, .mv-card, .testimony-card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-btn:hover {
    background-color: #FFFFFF;
    color: #0A1A3A;
    transition: 0.3s;
}


h1, h2, h3 {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(212,160,23,0.4);
}

h1, h2, h3 {
    text-shadow: 0 0 8px rgba(212,160,23,0.4);
}


p {
    color: #D4D4D4;
}

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

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #0A1A3A;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a:hover,
.nav-links .active {
    color: #D4A017;
}

/* HERO */
.hero {
    position: relative;
    height: 80vh;
    background: url('../img/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 26, 58, 0.7);
}

.hero-content {
    position: relative;
    top: 40%;
    text-align: center;
}

.cta-btn {
    background-color: #D4A017;
    padding: 12px 25px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
}

/* HIGHLIGHTS */
.highlights {
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

.highlight-card {
    background-color: #11224D;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
}

/* ABOUT PAGE */
.page-header {
    text-align: center;
    padding: 60px 20px;
}

.mission-vision {
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

.mv-card {
    background-color: #11224D;
    padding: 30px;
    border-radius: 10px;
    width: 40%;
}

.history {
    padding: 40px;
    text-align: center;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: #08132D;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .highlights, .mission-vision {
        flex-direction: column;
        align-items: center;
    }

    .highlight-card, .mv-card {
        width: 80%;
        margin-bottom: 20px;
    }
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Slide-up animation */
.slide-up {
    transform: translateY(40px);
    opacity: 0;
    animation: slideUp 1.2s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.slider {
    margin: 40px auto;
    width: 80%;
    text-align: center;
    font-size: 1.4rem;
    color: #D4A017;
    animation: fadeIn 1.5s forwards;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

section {
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
@media (max-width: 768px) {
    .nav-links {
        gap: 30px;
        padding: 40px 0;
        font-size: 1.2rem;
    }
}

.gallery-photo:hover {
    transform: scale(1.03);
    transition: 0.3s;
}

.event-card, .ministry-card, .sermon-card, .gallery-photo {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-radius: 10px;
}

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #0A1A3A;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }
}

.ministry-card:hover, .event-card:hover, .leader-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}


.artistic-footer {
    background: linear-gradient(180deg, #0A1A3A, #08132D);
    padding: 40px;
    text-align: center;
    color: #D4A017;
    font-weight: bold;
    letter-spacing: 1px;
}

