:root {
    --primary-blue: #3498db; /* A slightly deeper, more prominent blue */
    --accent-peach: #f39c12; /* A softer, more inviting orange/peach */
    --background-light: #fdfdfd;
    --text-dark: #333333;
    --text-light: #ffffff;
    --neutral-gray: #e9e9e9;
    --border-radius: 12px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

body {
    /* font-family: 'Lexend', sans-serif; */ /* Rolled back to original (no explicit font-family) */
    background-color: var(--background-light); /* Reverting to theme background */
    color: var(--text-dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--primary-blue);
}

.navbar {
    background-color: var(--background-light) !important;
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 100px; /* Doubled size for prominence */
    margin-right: 10px; /* Space between logo and text */
}

.nav-link {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0.5rem;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-peach) !important;
}

.hero-section {
    background: linear-gradient(135deg, #e0f7fa 0%, #d1e6f7 100%);
    padding: 8rem 0;
    text-align: center;
    color: var(--text-dark);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: #5a7a9b;
}

.btn-primary {
    background-color: var(--accent-peach);
    border-color: var(--accent-peach);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background-color: #f7b03a;
    border-color: #f7b03a;
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.summary-section {
    padding: 6rem 0;
}

.summary-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.summary-section p {
    font-size: 1rem;
    color: #666;
}

.summary-section .col-md-4 {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.summary-section .col-md-4:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: #34495e;
    color: var(--text-light);
    padding: 4rem 0;
}

.footer h5 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--neutral-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-peach);
}

.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.page-header {
    background: linear-gradient(135deg, #e0f7fa 0%, #d1e6f7 100%);
    padding: 6rem 0;
}

/* Impact Page Styles */
.stats-section .stat {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stats-section .stat:hover {
    transform: translateY(-5px);
}

.stats-section h2 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-peach);
}

.stats-section p {
    font-size: 1.1rem;
    color: #5a7a9b;
}

.fundraising-goal {
    background-color: #f1f8ff;
}

.fundraising-goal .progress {
    border-radius: var(--border-radius);
    height: 2.5rem;
    background-color: #e9ecef;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.fundraising-goal .progress-bar {
    background-color: var(--accent-peach);
    font-size: 1rem;
    font-weight: 700;
    line-height: 2.5rem;
}

.timeline-section-new {
    position: relative;
    padding: 4rem 0;
}

.timeline-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--neutral-gray);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
    margin-left: 4%;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
    margin-right: 4%;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    border: 4px solid var(--background-light);
}

.timeline-content h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Clearfix */
.timeline-item::after {
    content: "";
    display: table;
    clear: both;
}

/* Mission Page Styles */
.vision-section p {
    font-size: 1.5rem;
    color: #5a7a9b;
    max-width: 800px;
    margin: 0 auto;
}

.future-goals .card {
    background-color: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.future-goals .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.future-goals .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Get Involved Page Styles */
.contact-form-section {
    background-color: #f1f8ff;
}

.form-label {
    font-weight: 700;
    color: var(--primary-blue);
}

.form-control {
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    border: 1px solid var(--neutral-gray);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-peach);
    box-shadow: 0 0 0 0.25rem rgba(245, 166, 35, 0.25);
}

.newsletter-section .form-control {
    height: 3.5rem;
}

.newsletter-section .btn-primary {
    height: 3.5rem;
    width: 100%;
}

/* Press Page Styles */
.press-kit-section {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.press-kit-section h2,
.press-kit-section .lead {
    color: var(--text-light);
}

.press-kit-section .btn-primary {
    background-color: var(--text-light);
    color: var(--primary-blue);
    border-color: var(--text-light);
}

.press-kit-section .btn-primary:hover {
    background-color: #f1f1f1;
    border-color: #f1f1f1;
    color: var(--primary-blue);
}

/* Blog Page Styles */
.blog-posts .card {
    background-color: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-posts .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-posts .card-img-top {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.blog-posts .card-body {
    padding: 1.5rem;
}

.blog-posts .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-posts .card-text {
    color: #666;
}

.blog-posts .card-footer {
    background-color: transparent;
    border-top: 1px solid var(--neutral-gray);
    color: #888;
    font-size: 0.9rem;
}

.pagination .page-item .page-link {
    border-radius: 50% !important;
    margin: 0 0.25rem;
    border: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-blue);
    color: var(--text-light);
    transform: scale(1.1);
}

.pagination .page-item .page-link:hover {
    background-color: #e0f7fa;
}

/* Modal Styles */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-title {
    color: var(--primary-blue);
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
}

.modal-body .btn {
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.modal-body .btn img {
    height: 30px;
    margin-right: 10px;
}

