/* ================================
   Oak Tree Montessori - Main Stylesheet
   ================================ */

/* === CSS VARIABLES === */
:root {
    --primary-color: #3d5039;
    --primary-dark: #2a3629;
    --primary-light: #5a7352;
    --secondary-color: #d4a259;
    --accent-color: #87CEEB;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --bg-dark: #3d3d3d;
    --border-color: #DEE2E6;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* === TOP BAR === */
.top-bar {
    display: none;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-top {
    display: flex;
    gap: 2rem;
}

.contact-info-top span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-top i {
    font-size: 0.75rem;
}

.social-links-top {
    display: flex;
    gap: 0.5rem;
}

.social-links-top a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-links-top a:hover {
    color: var(--secondary-color);
}

/* === NAVIGATION === */
.navbar {
    background-color: #ffffff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10000;
    margin: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    margin: 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0 0 0 0;
}

.logo img {
    height: 60px;
    width: auto;
    filter: brightness(0.4) saturate(1.2);
}

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

.nav-menu {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 100%;
}

.nav-menu > li {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.nav-menu a {
    color: #2C3E50;
    font-weight: 500;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #285a1d;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #285a1d;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active::after {
    width: 100%;
    background-color: #285a1d;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 0.5rem 0;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2C3E50;
}

.dropdown-menu a:hover {
    background-color: #285a1d;
    color: #ffffff;
}

.nav-menu > li:last-child {
    padding: 0;
    margin-left: 0;
}

.btn-donate {
    background-color: #ecb338;
    color: #2C3E50;
    padding: 0 1rem !important;
    border-radius: 0;
    font-weight: 600;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 80px;
}

.btn-donate:hover {
    background-color: #d9a430;
    color: #2C3E50;
    transform: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2C3E50;
    margin: 3px 0;
    transition: var(--transition);
}

/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: left;
    color: var(--bg-white);
    z-index: 2;
    padding: 2rem;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 80, 57, 0.5);
    z-index: 1;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.slide-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 300;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--bg-white);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--bg-white);
    transform: scale(1.2);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #c49249;
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* === SECTIONS === */
section {
    padding: 4rem 0;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* === QUICK INFO === */
.quick-info {
    background-color: #54544f;
    color: var(--bg-white);
    padding: 5rem 0;
    margin-top: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: transparent;
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.info-card:hover {
    border-bottom-color: var(--secondary-color);
}

.info-card.highlight {
    background: transparent;
    color: var(--bg-white);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bg-white);
}

.info-card.highlight .info-icon {
    background-color: transparent;
}

.info-card h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
}

.info-link {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.info-link:hover {
    color: var(--bg-white);
}

.info-card.highlight .info-link {
    color: var(--bg-white);
}

.info-link.yellow {
    background-color: #f9d342;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.info-link.yellow:hover {
    background-color: #f4c30d;
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* === MONTESSORI FEATURES === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* === GALLERY === */
.gallery-section {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(107, 142, 35, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--bg-white);
}

.gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

/* === TESTIMONIALS === */
.testimonials {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--bg-white);
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-btn {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background-color: var(--bg-white);
}

/* === MAP SECTION === */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 450px;
}

/* === FOOTER === */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-info i {
    margin-top: 0.2rem;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* === PAGE HEADER === */
.page-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 4rem 0;
}

.page-header-logo {
    margin-bottom: 2rem;
}

.page-header-logo img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* === FORMS === */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 50px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--bg-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* === UTILITY CLASSES === */
.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-info-top {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 75%;
        height: calc(100vh - 80px);
        background-color: #4a6741;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        color: #ffffff !important;
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
        padding: 0.5rem;
        margin-right: 0.5rem;
        align-self: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1.5rem;
        padding-top: 0.5rem;
        display: none;
        background-color: transparent;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        padding-left: 0.5rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .btn-donate {
        background-color: #ecb338;
        color: #2C3E50 !important;
        padding: 0.75rem 1.5rem !important;
        margin-top: 1rem;
        min-height: auto;
        width: auto;
        text-align: center;
    }

    .hero-slider {
        height: 600px;
        margin-top: 0;
    }

    .slide-title {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .slide-text {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .slide-buttons {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .slide-buttons .btn {
        font-size: 0.75rem;
        padding: 0.6rem 0.85rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 35px;
        box-sizing: border-box;
    }

    .slide-buttons .btn-primary {
        border: 2px solid transparent;
    }

    .slide-content {
        text-align: left;
        padding: 0.75rem 1rem;
        top: 20%;
        transform: translateY(0);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .info-grid,
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 0.6rem 1.5rem;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* === MONTESSORI ENVIRONMENT PAGE === */
.maria-montessori {
    background-color: var(--bg-light);
}

.maria-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.maria-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.maria-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.maria-text blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

.maria-text blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* Principles Grid */
.montessori-principles {
    background-color: var(--bg-white);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.principle-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.principle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-white);
}

.principle-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Montessori Areas */
.montessori-areas {
    background-color: var(--bg-light);
}

.area-section {
    margin-bottom: 4rem;
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.area-section.reverse .area-content {
    direction: rtl;
}

.area-section.reverse .area-text {
    direction: ltr;
}

.area-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.area-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.area-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.area-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.area-text ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.area-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.area-benefit {
    background-color: var(--bg-white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.story-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-text p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mv-card {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-white);
}

.mv-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.value-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: var(--transition);
}

/* Individual value card colors */
.value-card:nth-child(1) .value-icon {
    background-color: rgba(173, 216, 230, 0.3); /* Light blue */
    color: #4682B4;
}

.value-card:nth-child(2) .value-icon {
    background-color: rgba(144, 238, 144, 0.3); /* Light green */
    color: #2E8B57;
}

.value-card:nth-child(3) .value-icon {
    background-color: rgba(255, 218, 185, 0.3); /* Light peach/orange */
    color: #D2691E;
}

.value-card:nth-child(4) .value-icon {
    background-color: rgba(255, 182, 193, 0.3); /* Light pink/coral */
    color: #C85A5A;
}

.value-card:nth-child(5) .value-icon {
    background-color: rgba(221, 238, 187, 0.3); /* Light lime green */
    color: #6B8E23;
}

.value-card:nth-child(6) .value-icon {
    background-color: rgba(221, 160, 221, 0.3); /* Light purple */
    color: #8B4789;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* What Makes Us Special Section */
.what-makes-special {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.special-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.special-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.special-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.special-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.special-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Accreditations Section */
.accreditations {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.accred-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.accred-item {
    flex: 0 1 250px;
}

.accred-placeholder {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.accred-placeholder i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.accred-placeholder p {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive for Montessori Page */
@media (max-width: 768px) {
    .maria-content {
        grid-template-columns: 1fr;
    }

    .area-content {
        grid-template-columns: 1fr;
    }

    .area-section.reverse .area-content {
        direction: ltr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* About Page Responsive */
    .story-content {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .special-grid {
        grid-template-columns: 1fr;
    }

    .accred-logos {
        gap: 2rem;
    }

    /* Staff Page Responsive */
    .staff-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   STAFF PAGE STYLES
   ================================ */

/* Staff Introduction */
.staff-intro {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Staff Sections */
.leadership-team,
.primary-teachers,
.toddler-teachers,
.support-staff {
    padding: 4rem 0;
}

.leadership-team {
    background-color: var(--bg-white);
}

.primary-teachers {
    background-color: var(--bg-light);
}

.toddler-teachers {
    background-color: var(--bg-white);
}

.support-staff {
    background-color: var(--bg-light);
}

/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Director Grid - Single centered card */
.director-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 2rem auto;
}

/* Director Card - Taller image for better framing */
.director-grid .staff-image {
    height: 450px;
}

.director-grid .staff-image img {
    object-position: center center;
}

/* Staff Cards */
.staff-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.staff-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: var(--bg-light);
    position: relative;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.staff-info {
    padding: 2rem;
}

.staff-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.staff-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.staff-cert {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.staff-bio {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.staff-contact {
    margin-top: 1rem;
}

.staff-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.staff-contact a:hover {
    color: var(--primary-light);
}

.staff-contact i {
    font-size: 1rem;
}

/* ================================
   CAREERS PAGE STYLES
   ================================ */

/* Why Work Here */
.why-work-here {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

/* Current Openings */
.current-openings {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.jobs-list {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
}

/* Modern Job Cards */
.job-card-modern {
    background-color: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.job-card-modern:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.job-card-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.job-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-summary {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.job-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.job-detail-col h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.job-detail-col ul {
    list-style: none;
    padding: 0;
}

.job-detail-col li {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.job-detail-col li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.job-card-modern .btn {
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
}

.no-opening {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.no-opening p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Application Form */
.application-form {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.career-form {
    max-width: 800px;
    margin: 2rem auto 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-group label {
    flex: 1;
    margin-bottom: 0;
}

/* ================================
   PROGRAMS PAGE STYLES
   ================================ */

/* Programs Intro */
.programs-intro {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.programs-intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.programs-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.programs-intro .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.montessori-quote {
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.montessori-quote p {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.montessori-quote cite {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Program Cards */
.programs-cards {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.program-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.program-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.program-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--bg-light);
}

.program-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-card-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin: 0;
}

.program-card-body p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.program-card-body h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 2.5rem 0 1.5rem;
}

/* Schedule Options */
.schedule-options {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.option-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.option-item:hover {
    background-color: rgba(212, 162, 89, 0.1);
    transform: translateX(8px);
}

.option-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-icon i {
    font-size: 1.5rem;
    color: white;
}

.option-details h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.option-details .time {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.option-details .note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0.5rem 0 0;
    font-style: italic;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, var(--primary-color), #4a6347);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.contact-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.contact-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-box a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

.contact-box a:hover {
    color: white;
}

/* Program Features Section */
.program-features {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

/* Responsive */
@media (max-width: 768px) {
    .program-card {
        padding: 2rem;
    }

    .program-card-header h2 {
        font-size: 1.8rem;
    }

    .option-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-box {
        flex-direction: column;
        padding: 2rem;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.75rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem 4.5rem;
}

.faq-answer p {
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 3rem;
    }
}

/* ================================
   NEWS & EVENTS PAGE
   ================================ */

/* News Section */
.news-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.news-article {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.news-article:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.news-article.featured {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.article-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.news-article:not(.featured) .article-image {
    height: 300px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.news-article:hover .article-image img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--primary-color);
}

.news-article h2,
.news-article h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.news-article.featured h2 {
    font-size: 2rem;
}

.news-article p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
    gap: 0.8rem;
}

.read-more i {
    transition: var(--transition);
}

/* Upcoming Events */
.upcoming-events {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), #4a6347);
    color: white;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date .day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.event-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-body);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.event-time i,
.event-location i {
    color: var(--primary-color);
}

.event-info > p {
    color: var(--text-body);
    line-height: 1.7;
    margin: 1rem 0;
    flex: 1;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: var(--transition);
}

.event-link:hover {
    color: var(--secondary-color);
    gap: 0.8rem;
}

/* Responsive News & Events */
@media (max-width: 768px) {
    .article-image {
        height: 250px;
    }

    .news-article.featured .article-image {
        height: 300px;
    }

    .article-content {
        padding: 1.5rem;
    }

    .news-article.featured h2 {
        font-size: 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .events-list {
        grid-template-columns: 1fr;
    }

    .event-date .day {
        font-size: 2.5rem;
    }

    .event-info {
        padding: 1.5rem;
    }
}

/* ================================
   DONATE PAGE
   ================================ */

/* Donate Header */
.donate-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #285a1d 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    color: var(--bg-white);
}

.donate-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.donate-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Why Donate Section */
.why-donate {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.why-donate .intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.why-donate .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.impact-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.impact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.impact-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Donation Levels */
.donation-levels {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.level-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    position: relative;
}

.level-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(212, 146, 56, 0.2);
    transform: scale(1.05);
}

.level-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.level-card.featured:hover {
    transform: translateY(-5px) scale(1.07);
}

.level-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.level-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.level-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.level-card .amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.level-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.level-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.level-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Donation Form Section */
.donation-form-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.donate-form {
    max-width: 800px;
    margin: 3rem auto 0;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.donate-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.donation-type,
.donation-amount {
    margin-bottom: 2.5rem;
}

.type-buttons,
.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.type-option,
.amount-option {
    position: relative;
    cursor: pointer;
}

.type-option input[type="radio"],
.amount-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.type-option span,
.amount-option span {
    display: block;
    padding: 1rem;
    background-color: var(--bg-white);
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.type-option input[type="radio"]:checked + span,
.amount-option input[type="radio"]:checked + span {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
}

.type-option:hover span,
.amount-option:hover span {
    border-color: var(--secondary-color);
}

.custom-amount {
    margin-top: 1.5rem;
}

.input-with-icon {
    position: relative;
}

.dollar-sign {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--text-light);
}

.input-with-icon input {
    padding-left: 35px;
}

.designation {
    margin-bottom: 2.5rem;
}

.designation select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--bg-white);
    cursor: pointer;
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.honor-fields {
    margin-top: 1rem;
    margin-left: 2rem;
}

.honor-fields input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.tax-info {
    background-color: rgba(74, 103, 65, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.tax-info p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Other Ways to Give */
.other-ways {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.other-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.way-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.way-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.way-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.way-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.way-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.way-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.way-link::after {
    content: "→";
    transition: var(--transition);
}

.way-link:hover::after {
    transform: translateX(5px);
}

/* Donor Recognition */
.donor-recognition {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.recognition-levels {
    max-width: 900px;
    margin: 3rem auto 0;
}

.recognition-group {
    margin-bottom: 3rem;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.recognition-group h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.donor-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.donor-list li {
    color: var(--text-light);
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donate-header h1 {
        font-size: 2rem;
    }

    .donate-header p {
        font-size: 1rem;
    }

    .impact-grid,
    .levels-grid,
    .other-ways-grid {
        grid-template-columns: 1fr;
    }

    .level-card.featured {
        transform: scale(1);
    }

    .donate-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .type-buttons,
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .donor-list {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Form in News Page */
.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 146, 56, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
        min-width: auto;
    }
}
