:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --glass-color: rgba(255, 255, 255, 0.15);
    --text-color: #ffffff;
    --dark-text: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url(https://media.istockphoto.com/id/1068830604/photo/abstract-blurred-beautiful-interior-of-lobby-reception-condominium-background-with-bokeh.jpg?s=612x612&w=0&k=20&c=_vjkk1TfLTlLstBH_Sug_saKem2wz3u6fSigYNAzWAo=); background-attachment: fixed;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.glass-card {
    background: var(--glass-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

.navbar {
    background: var(--glass-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Admin Dashboard Styles */
.admin-sidebar {
    background: var(--glass-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 20px;
}

.admin-content {
    margin-left: 250px;
    padding: 20px;
}

.sidebar-link {
    color: var(--text-color);
    display: block;
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .admin-content {
        margin-left: 0;
    }
}

/* Header Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-brand i {
    color: #45f70a;
}

.navbar-dark .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.glass-dropdown {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-dropdown .dropdown-item {
    color: #0f0e0e;
}

.glass-dropdown .dropdown-item:hover {
    background: rgba(255,255,255,0.2);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.hero-content h1 {
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Footer Styles */
.footer-section {
    padding: 60px 0 20px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.legal-links a {
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
    text-decoration: none;
}

/* Founder Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    position: relative;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #9c27b0, #673ab7);
    margin-bottom: 2rem;
}

.founder-image-container {
    padding: 15px;
    border-radius: 10px;
    height: 100%;
}

.founder-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.founder-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-message h3 {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
}

.founder-message h4 {
    font-size: 1.2rem;
    font-weight: 400;
}

.founder-message blockquote {
    border-left: 4px solid #9c27b0;
    padding-left: 20px;
    margin-left: 0;
}

.founder-message blockquote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgb(6, 5, 5);
}

.signature {
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .founder-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .founder-message {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .founder-message h3 {
        font-size: 1.6rem;
    }
    
    .founder-message blockquote p {
        font-size: 1rem;
    }
}

/* Our Beliefs Section Styles */
.belief-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-radius: 10px;
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.belief-icon {
    color: #9c27b0;
    margin-bottom: 1rem;
}

.belief-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #131212;
}

.belief-card p {
    color: rgb(5, 4, 4);
    margin-bottom: 1.5rem;
}

.scripture {
    background: rgba(255,255,255,0.1);
    border-left: 3px solid #673ab7;
    padding: 1rem;
    border-radius: 0 5px 5px 0;
}

.scripture p {
    margin-bottom: 0.5rem;
    color: rgb(14, 14, 14);
}

.scripture p.font-italic {
    font-style: italic;
}

.scripture p:last-child {
    font-weight: 500;
    color: rgba(12, 11, 11, 0.965);
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .belief-card {
        margin-bottom: 1.5rem;
    }
    
    .belief-icon i {
        font-size: 2.5rem;
    }
    
    .belief-card h3 {
        font-size: 1.3rem;
    }
}
