/* Overview Page Styles */

/* Hero */
.overview-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.overview-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.overview-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #000;
    opacity: 0.3;
    z-index: -1;
}

.overview-eyebrow {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    display: block;
}

.overview-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.overview-subtitle {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Stats Section */
.overview-stats-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--theme-primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4b5563;
    line-height: 1.4;
}

/* Quote Section */
.overview-quote-section {
    padding: 8rem 0;
    background-color: var(--theme-light);
    text-align: center;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.overview-quote {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--theme-primary);
    margin-bottom: 3rem;
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-style: normal;
}

.author-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--theme-secondary);
    margin-bottom: 0.25rem;
}

.author-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* History Section */
.overview-history-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-content {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
}

.history-content p {
    margin-bottom: 1.5rem;
}

.overview-history-btn {
    margin-top: 2rem;
}

.history-image {
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
}

/* Impact Section */
.overview-impact-section {
    padding: 6rem 0;
    background-color: var(--white);
    color: #4b5563;
    font-family: var(--font-sans);
}

.impact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.impact-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--theme-secondary);
    margin-bottom: 1rem;
    line-height: 1;
}

.impact-text {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .history-container {
        grid-template-columns: 1fr;
    }
    
    .history-image {
        order: -1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .overview-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
