/* Vision & Mission Page - Article Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
    font-family: 'Georgia', 'Times New Roman', serif;
    cursor: default;
    overflow-x: hidden;
    max-width: 100%;
}

/* Hero Section */
.hero-section {
    height: 60vh;
    min-height: 400px;
    background: radial-gradient(ellipse at 50% 30%, #5C3A00 70%, #6d4603 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    cursor: default;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
    cursor: default;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
    cursor: default;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: #F5F5DC;
    margin: 0 auto;
}

/* Article Container */
.vision-mission-article {
    max-width: min(1000px, 95vw);
    width: 100%;
    margin: 0 auto;
    background: #FFFBE9;
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.1);
    position: relative;
    top: -50px;
    z-index: 10;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(245, 245, 220, 0.3);
}

.article-container {
    padding: 60px min(80px, 5vw);
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.article-title {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.3;
    cursor: default;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
    font-size: 0.95rem;
    opacity: 0.8;
    cursor: default;
}

.category, .established {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
}

.article-divider {
    width: 60px;
    height: 2px;
    background: #8B4513;
    margin: 0 auto;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-section {
    margin-bottom: 4rem;ww
    scroll-margin-top: 100px; /* Space for header when navigating to sections */
}

.section-title {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 20px;
    cursor: default;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: #8B4513;
    border-radius: 2px;
}

.section-content {
    color: #5C3A00;
    cursor: default;
}

.lead-paragraph {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #8B4513;
    line-height: 1.6;
    cursor: default;
}

/* Vision & Mission Statements */
.vision-statement, .mission-statement {
    background: linear-gradient(135deg, #F5F5DC 0%, #E6DCC6 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.1);
    border-left: 4px solid #8B4513;
    cursor: default;
}

.statement-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8B4513;
    color: #FFFBE9;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
    cursor: default;
}

.vision-quote, .mission-quote {
    flex: 1;
    margin: 0;
    cursor: default;
}

.vision-quote p, .mission-quote p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #5C3A00;
    font-style: italic;
    margin: 0;
    cursor: default;
}

/* Goals Grid */
.goals-container {
    margin: 3rem 0;
}

.subsection-title {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    cursor: default;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.goal-card {
    background: linear-gradient(135deg, #FFFBE9 0%, #F5F5DC 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
    cursor: default;
}

.goal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    cursor: default;
}

.goal-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8B4513;
    color: #FFFBE9;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.2);
    cursor: default;
}

.goal-card h4 {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: default;
}

.goal-card p {
    color: #5C3A00;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    cursor: default;
}

/* Objectives List */
.objectives-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 69, 19, 0.2);
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.objectives-list li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: #5C3A00;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    cursor: default;
}

.objectives-list li:last-child {
    border-bottom: none;
}

.objectives-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 25px;
    height: 25px;
    background: #8B4513;
    color: #FFFBE9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Core Values - L.I.G.H.T. */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: linear-gradient(135deg, #F5F5DC 0%, #E6DCC6 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.1);
    border-left: 6px solid #8B4513;
    transition: transform 0.3s ease;
    cursor: default;
}

.value-card:hover {
    transform: translateY(-3px);
    cursor: default;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.value-letter {
    font-size: 3rem;
    font-weight: 700;
    width: 80px;
    height: 80px;
    background: #8B4513;
    color: #FFFBE9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
    flex-shrink: 0;
    cursor: default;
}

.value-header h3 {
    color: #8B4513;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    cursor: default;
}

.value-card p {
    color: #5C3A00;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    cursor: default;
}

/* Color variations for different values */
.value-card.love { border-left-color: #E74C3C; }
.value-card.love .value-letter { background: #E74C3C; }

.value-card.integrity { border-left-color: #3498DB; }
.value-card.integrity .value-letter { background: #3498DB; }

.value-card.godcentered { border-left-color: #F39C12; }
.value-card.godcentered .value-letter { background: #F39C12; }

.value-card.harmony { border-left-color: #27AE60; }
.value-card.harmony .value-letter { background: #27AE60; }

.value-card.total { border-left-color: #9B59B6; }
.value-card.total .value-letter { background: #9B59B6; }

/* Article Conclusion */
.article-conclusion {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.inspiring-quote {
    background: #F5F5DC;
    border-left: 4px solid #8B4513;
    padding: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #5C3A00;
    border-radius: 0 8px 8px 0;
    position: relative;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.1);
    cursor: default;
}

.inspiring-quote::before {
    content: '"';
    font-size: 4rem;
    color: #8B4513;
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
    opacity: 0.3;
}

.final-message {
    text-align: center;
    margin-top: 3rem;
    cursor: default;
}

.final-message h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    cursor: default;
}

.final-message p {
    font-size: 1.2rem;
    color: #8B4513;
    font-weight: 500;
    font-style: italic;
    cursor: default;
}

/* Typography Enhancements */
p {
    margin-bottom: 1.5rem;
    text-align: justify;
    cursor: default;
}

strong {
    color: #8B4513;
    font-weight: 600;
    cursor: default;
}

em {
    color: #8B4513;
    font-style: italic;
    cursor: default;
}

h1, h2, h3, h4, h5, h6 {
    cursor: default;
}

/* Ensure all text elements have default cursor */
span, div, article, section, header, main, blockquote {
    cursor: default;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .article-container {
        padding: 40px min(30px, 3vw);
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .vision-statement, .mission-statement {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .value-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .article-container {
        padding: 30px min(20px, 2vw);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .vision-statement, .mission-statement {
        padding: 1.5rem;
    }
    
    .goal-card, .value-card {
        padding: 1.5rem;
    }


