/* Styles will be added later */ 

.main-content {
    min-height: calc(100vh - 87px - 400px); /* viewport height minus header and footer heights */
    margin-top: 87px; /* header height */
    background-color: var(--white);
}

body {
    background-color: var(--white);
}

/* About Header */
.about-header {
    background-color: var(--blush-rose);  /* Lighter blush rose color */
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.about-header h1 {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: normal;
    color: var(--deep-slate-gray);
    letter-spacing: 0.5px;
}

.about-header p {
    font-size: 1rem;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.5;
    color: var(--white);
    opacity: 0.8;
}

/* About Sections */
.about-section {
    padding: 20px 20px;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Even sections (2nd and 4th) have text on right */
.about-section:nth-child(3) .content-wrapper .text-content,
.about-section:nth-child(5) .content-wrapper .text-content {
    order: 2;
}

.about-section:nth-child(3) .content-wrapper .image-content,
.about-section:nth-child(5) .content-wrapper .image-content {
    order: 1;
}

/* Text Content */
.text-content {
    padding: 20px;
}

.text-content h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--deep-slate-gray);
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--deep-slate-gray);
    opacity: 0.8;
}

/* Quote Section */
.quote-mark {
    font-size: 6rem;
    font-family: var(--heading-font);
    color: var(--deep-slate-gray);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.1;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-author {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--deep-slate-gray);
}

/* Image Content */
.image-content {
    width: 90%;
    height: 600px;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        max-width: 900px;
        gap: 20px;
    }

    .text-content h2 {
        font-size: 2.2rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .image-content {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: 40px 20px;
    }

    .about-header h1 {
        font-size: 2.2rem;
    }

    .about-section {
        padding: 40px 20px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 30px;
    }

    /* Make all image sections come first */
    .image-content {
        order: 1;
        width: 100%;
        height: 300px;
        margin: 0 auto;
    }

    /* Make all text sections come second */
    .text-content {
        order: 2;
        padding: 0;
        text-align: center;
    }

    /* Override any existing order styles */
    .about-section:nth-child(3) .content-wrapper .text-content,
    .about-section:nth-child(5) .content-wrapper .text-content {
        order: 2;
    }

    .about-section:nth-child(3) .content-wrapper .image-content,
    .about-section:nth-child(5) .content-wrapper .image-content {
        order: 1;
    }

    .text-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .quote-mark {
        font-size: 4rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .quote-text {
        font-size: 1.1rem;
        text-align: center;
    }

    .quote-author {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-header {
        padding: 30px 15px;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .about-section {
        padding: 30px 15px;
    }

    .content-wrapper {
        gap: 20px;
    }

    .image-content {
        height: 250px;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .quote-author {
        font-size: 1.6rem;
    }
} 