* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1e3a5f;
    --primary-main: #2563eb;
    --primary-light: #60a5fa;
    --accent-dark: #334155;
    --accent-main: #475569;
    --accent-light: #64748b;
    --gray-dark: #0f172a;
    --gray-main: #1e293b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --success: #059669;
    --danger: #dc2626;
    --warning: #f59e0b;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-main);
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--bg-card);
    color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--accent-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--white);
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--primary-light);
    letter-spacing: 1px;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 25px 20px;
    color: var(--white);
    font-size: 1rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover {
    border-bottom-color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--accent-dark);
    list-style: none;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-light);
}

/* ===== HERO SECTIONS ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.hero-small {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-small h1 {
    font-size: 2.5rem;
}

.tagline {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.95;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTIONS ===== */
.welcome {
    padding: 60px 20px;
    background-color: var(--bg-dark);
}

.welcome h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

.welcome p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.content {
    padding: 60px 20px;
    background-color: var(--bg-dark);
}

.intro {
    margin-bottom: 50px;
}

.intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* ===== QUICK LINKS ===== */
.quick-links {
    background-color: var(--bg-card);
    padding: 60px 20px;
}

.quick-links .container {
    max-width: 1200px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.link-card {
    background-color: var(--accent-dark);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-light);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.link-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.link-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-main);
    color: var(--white);
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* ===== VISION & MISSION ===== */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.vision-box,
.mission-box {
    padding: 30px;
    border-radius: 8px;
}

.vision-box {
    background-color: rgba(37, 99, 235, 0.1);
    border-left: 4px solid var(--primary-light);
}

.mission-box {
    background-color: rgba(71, 85, 105, 0.1);
    border-left: 4px solid var(--accent-light);
}

.vision-box h2,
.mission-box h2 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

blockquote {
    font-style: italic;
    color: var(--text-primary);
    padding-left: 20px;
    border-left: 3px solid var(--primary-light);
    margin: 20px 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.mission-box blockquote {
    border-left-color: var(--accent-light);
}

.explanation {
    background-color: var(--accent-dark);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.explanation h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.explanation p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.value-card {
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid;
    background-color: var(--accent-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.value-card.blue {
    border-top-color: #60a5fa;
    background-color: rgba(37, 99, 235, 0.1);
}

.value-card.purple {
    border-top-color: #d8b4fe;
    background-color: rgba(168, 85, 247, 0.1);
}

.value-card.red {
    border-top-color: #f87171;
    background-color: rgba(220, 38, 38, 0.1);
}

.value-card.green {
    border-top-color: #6ee7b7;
    background-color: rgba(16, 185, 129, 0.1);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.value-card blockquote {
    font-size: 0.9rem;
    margin: 15px 0;
    padding-left: 15px;
}

/* ===== SCRIPTURE SECTION ===== */
.scripture-section {
    margin-top: 50px;
}

.scripture-section h2 {
    font-size: 2rem;
    color: var(--gray-dark);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 15px;
}

.scripture-section h3 {
    font-size: 1.4rem;
    color: var(--gray-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.scripture-section p {
    color: var(--gray-main);
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-card);
    color: var(--white);
    padding: 50px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--accent-dark);
}

.footer .container {
    max-width: 1200px;
}

.footer-content,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
    width: 100%;
}

.footer-section h4 {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
}

.team-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--accent-dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--bg-card);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 30px;
}

.team-info h2 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.team-info h3 {
    color: var(--primary-light);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.team-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== UTILITY ===== */
strong {
    color: var(--text-primary);
}
