/* About Us Page Styles */

/* About Hero Section */
#about-hero {
    background-color: #7a9e9f;
    /* Sage/Teal green matching The Vine School */
    padding: 3rem 2rem;
    text-align: left;
}

.about-hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

#about-hero h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hero-divider {
    width: 3px;
    height: 60px;
    background-color: white;
    margin: 0.5rem 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1.5rem;
}

.hero-subtitle {
    color: white;
    font-size: 1.1rem;
    font-weight: 300;
    display: inline-block;
    vertical-align: middle;
}

/* Bible Quote Section */
#bible-quote-section {
    padding: 3rem 0;
    background-color: white;
    text-align: center;
}

.bible-quote {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bible-quote p {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-secondary-text);
    margin-bottom: 1.5rem;
}

.bible-quote cite {
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
}

/* About Image Section */
#about-image {
    width: 100%;
    padding: 2rem;
    background-color: #f9fafb;
}

.about-image-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(15, 118, 110, 0.9);
    /* Teal with opacity */
    color: white;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    max-width: 70%;
}

.image-caption p {
    margin: 0;
    line-height: 1.4;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
    background-color: white;
}

.content-section--highlight {
    background-color: #f9fafb;
}

.content-section .container {
    max-width: 900px;
}

/* Section Title */
.section-title {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-secondary-text);
    margin-bottom: 0.5rem;
}

.title-divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-secondary-text);
    margin: 0 auto 2rem;
}

/* Content Typography */
.content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-primary-text);
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Introduction Section Special Styles */
#about-intro {
    padding-top: 4rem;
}

.intro-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-secondary-text);
}

.intro-lead strong {
    font-weight: 600;
}

.cta-text {
    font-style: italic;
    color: var(--color-accent);
}

/* Brand Section Override for About Page */
#brand-section {
    padding: 1.5rem 0;
}

.brand-container {
    justify-content: flex-start;
}

.brand-logo img {
    max-height: 80px;
    width: auto;
}

/* Top Nav Active State */
#top-nav a.active {
    font-weight: 600;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #about-hero {
        padding: 2rem 1rem;
    }

    #about-hero h1 {
        font-size: 2rem;
    }

    .hero-divider {
        display: none;
    }

    .hero-subtitle {
        display: block;
        margin-top: 0.5rem;
    }

    .bible-quote p {
        font-size: 1rem;
    }

    .image-caption {
        position: static;
        max-width: 100%;
    }

    .content-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    #about-hero h1 {
        font-size: 1.75rem;
    }

    .content-section p {
        font-size: 0.95rem;
    }
}