/* BCMAC Church Website - Black, Yellow, White Design */

:root {
    --primary-color: #000000;
    --secondary-color: #F4D03F;
    --accent-color: #F4D03F;
    --success-color: #000000;
    --danger-color: #000000;
    --dark-bg: #000000;
    --darker-bg: #000000;
    --light-bg: #ffffff;
    --text-dark: #000000;
    --text-light: #000000;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #000000 100%);
    --gradient-secondary: linear-gradient(135deg, #F4D03F 0%, #F4D03F 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #000000 100%);
    --yellow: #F4D03F;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--yellow);
    justify-content: space-between;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.navbar-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    color: var(--accent-color);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 0;
}

.navbar-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    position: relative;
    overflow: visible;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
    width: 80%;
}

.navbar-nav a:hover {
    background: transparent;
    color: var(--white);
}

.navbar-nav a.active {
    background: transparent;
    color: var(--yellow);
} 

/* Verse Section */
.verse-section {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-top: 3px solid var(--yellow);
    border-bottom: 3px solid var(--yellow);
}

.verse-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.8;
}

.verse-reference {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--yellow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.6);
    background: #FFE082;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.6);
    background: #FFE082;
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--yellow);
}

.btn-secondary:hover {
    background: var(--black);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-image {
    transform: scale(1.1);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.card-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Quick Access */
.quick-access {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.quick-access-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: var(--yellow);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid var(--yellow);
}

.quick-access-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(244, 208, 63, 0.4);
    background: var(--yellow);
    color: var(--black);
    border-color: var(--black);
}

.quick-access-item i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.quick-access-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Footer - New Modern Design */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0;
    margin-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #ffd700;
}

/* Main Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 5rem 0 3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
    padding-right: 2rem;
}

.footer-logo {
    width: 70px;
    height: 70px;
    background: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.footer-section h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ffd700;
}

.footer-tagline {
    color: #ffd700;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #ffd700;
    color: #1a1a1a;
    border-color: #ffd700;
    transform: translateY(-5px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.footer .about-section {
    padding: 0;
    background: none;
}


/* Service Items */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ffd700;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.service-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.service-info p {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: #ffffff;
    transform: translateX(5px);
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffd700;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.contact-text a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #ffd700;
}

/* Newsletter Section */
.footer-newsletter {
    padding: 3rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.newsletter-text p {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    background: #ffffff;
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links-bottom a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #ffd700;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .about-section {
        padding-right: 0;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 0 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 3rem 0 2rem;
    }

    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .newsletter-text p {
        font-size: 0.9rem;
    }

    .footer-newsletter {
        padding: 2rem 0;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }
}

/* Forms */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #000000;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

/* Admin Layout */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #ffffff;
}

/* Sidebar */
.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    color: var(--white);
    padding: 2rem 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    border-right: 3px solid var(--yellow);
    transition: all 0.3s ease;
}

.admin-sidebar .sidebar-logo {
    display: block;
    margin: 0 auto 1rem auto;
    height: 60px;
}

.admin-sidebar .sidebar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-sidebar::-webkit-scrollbar {
    width: 5px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
}

.admin-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-sidebar a {
    display: block;
    padding: 1rem 2rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    opacity: 0.9;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(244, 208, 63, 0.15);
    border-left-color: var(--yellow);
    padding-left: 2.5rem;
    color: var(--yellow);
}

/* Sidebar Toggle for mobile */
.sidebar-toggle {
    display: none;
    position: absolute;
    top: 1rem;
    right: -50px;
    background: var(--yellow);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

/* Main Content */
.admin-content {
    flex: 1;
    margin-left: 280px;
    background: #ffffff;
    padding: 2.5rem;
    min-height: 100vh;
}

.admin-header {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.admin-table {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #000000;
}

table th {
    background: var(--black);
    color: var(--yellow);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--yellow);
}

table tr:hover {
    background: #ffffff;
}

/* Responsive Sidebar */
@media (max-width: 992px) {
    .admin-sidebar {
        left: -280px;
        position: fixed;
        z-index: 1000;
    }

    .admin-sidebar.active {
        left: 0;
    }

    .sidebar-toggle {
        display: block;
    }

    .admin-content {
        margin-left: 0;
    }
}

/* Navbar Styles */
.navbar {
    background: transparent; /* Fully transparent */
    backdrop-filter: none; /* Remove blur effect */
    padding: 1.2rem 0;
    box-shadow: none; /* Remove shadow */
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: none; /* Remove border */
    justify-content: space-between;
    
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    height: 70px;
    gap: 2.5rem;
}

/* Brand/Logo - Left Side */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo {
    height: 70px;
    width: auto;
    margin-right: 10px;
}

.navbar-brand-text {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.3rem;
    white-space: nowrap;
}

/* Navigation Links - Center */
.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.navbar-nav li {
    margin: 0;
}

.navbar-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: block;
    font-weight: 350;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #f4d03f;
    transition: width 0.3s ease;
}

.navbar-nav a:hover {
    color: #ffffff;
    background: transparent;
}

.navbar-nav a:hover::after {
    width: 80%;
}

.navbar-nav a.active {
    color: #f4d03f;
    background: transparent;
}

.navbar-nav a.active::after {
    width: 80%;
}

/* Contact CTA Button - Right Side */
.navbar-cta {
    background: transparent;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    border: 2px solid white;
}

.navbar-cta:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.4);
    color: black;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 1rem;
    flex-shrink: 0;
}

.language-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-toggle i:first-child {
    font-size: 1rem;
}

.language-toggle .current-lang {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.language-toggle i:last-child {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.language-switcher.active .language-toggle i:last-child {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-switcher.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(244, 208, 63, 0.1);
    color: #f4d03f;
}

.language-option.active {
    background: rgba(244, 208, 63, 0.15);
    color: #f4d03f;
}

.language-option .flag {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.language-option span:not(.flag) {
    flex: 1;
    font-weight: 500;
}

.language-option i {
    color: #f4d03f;
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: #f4d03f;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    margin-left: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-button:hover {
    background: #000;
    color: #f4d03f;
    transform: scale(1.05);
}

.mobile-menu-button.active {
    background: #000;
    color: #f4d03f;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar-nav {
        gap: 0.25rem;
    }
    
    .navbar-nav a {
        padding: 0.75rem 0.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .navbar-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
        border-top: 3px solid #f4d03f;
    }
    
    .navbar-nav.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .navbar-nav li {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav a {
        padding: 1.25rem 1.5rem;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 500;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .navbar-nav a::before {
        content: '';
        width: 6px;
        height: 6px;
        background: #f4d03f;
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .navbar-nav a:hover {
        background: rgba(244, 208, 63, 0.1);
        border-left-color: #f4d03f;
        color: #f4d03f;
        padding-left: 2rem;
    }
    
    .navbar-nav a:hover::before {
        opacity: 1;
    }
    
    .navbar-nav a:hover::after {
        display: none;
    }
    
    .navbar-nav a.active {
        background: rgba(244, 208, 63, 0.15);
        border-left-color: #f4d03f;
        color: #f4d03f;
    }
    
    .navbar-nav a.active::before {
        opacity: 1;
    }
    
    .navbar-nav a.active::after {
        display: none;
    }
    
    .navbar-cta {
        display: none;
    }
    
    .language-switcher {
        margin-left: 0.5rem;
    }
    
    .language-toggle {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .language-toggle .current-lang {
        min-width: 25px;
    }
    
    .navbar-container {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand-text {
        font-size: 1rem;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    .navbar-container {
        height: 60px;
    }
    
    .navbar-nav {
        top: 60px;
        padding: 1.5rem 1rem;
    }
    
    .navbar-nav a {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .mobile-menu-button {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        padding: 0.6rem;
    }
    
    .language-switcher {
        margin-left: 0.5rem;
    }
    
    .language-toggle {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .language-dropdown {
        min-width: 140px;
    }
}

/* Alerts */
.alert {
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #27AE60;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #E74C3C;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-button { display: block !important; }
    .navbar-nav {
        position: absolute;
        top: 60px;
        right: 20px;
        background: rgba(0,0,0,0.95);
        border: 2px solid var(--yellow);
        border-radius: 12px;
        display: none;
        flex-direction: column;
        gap: 0;
        width: 240px;
        padding: 0.5rem;
    }

    .navbar-nav.active { display: flex; }

    .navbar-nav a { padding: 0.8rem 1rem; border-radius: 8px; }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        width: 100%;
        position: relative;
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Devotional Content */
.devotional-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.devotional-scripture {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-left: 5px solid var(--accent-color);
    border-radius: 12px;
    margin-bottom: 2rem;
}

/* Giving Options */
.giving-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.giving-option {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.giving-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.giving-option img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

/* Scrollbar Styling - Black, Yellow, White */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F4D03F;
}

/* Loading Spinner */
.spinner {
    border: 4px solid #ffffff;
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Additional Polish */
.card {
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0) 0%, rgba(118, 75, 162, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.card:hover::before {
    opacity: 0.1;
}

    /* Smooth Transitions */
* {
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Additional Black, Yellow, White Theme Elements */
.hero::before {
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.admin-header h1 {
    color: var(--primary-color);
    border-left: 4px solid var(--yellow);
    padding-left: 1rem;
}

.alert-success {
    border-color: var(--success-color);
}

.alert-error {
    border-color: var(--danger-color);
}

/* Button hover effects */
.btn:hover::before {
    background: rgba(0,0,0,0.1);
}

/* Card title color */
.card-title {
    color: var(--black);
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 0.5rem;
}

/* Focus States */
a:focus,
button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 4px;
}


.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.rotating-logo {
    animation: rotate 1.5s linear infinite;
}

.rotating-logo img {
    display: block;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
