/* style/about.css */
.page-about {
    padding-top: var(--header-offset, 120px);
    color: #000000; /* Dark text for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #FFFFFF;
}

.page-about__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-about__hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-about__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-about__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1.1em;
}

.page-about__button--primary {
    background-color: #FCBC45;
    color: #000000;
}

.page-about__button--primary:hover {
    background-color: #e0a73b;
}

.page-about__button--secondary {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #FCBC45;
}

.page-about__button--secondary:hover {
    background-color: #1a1a1a;
    border-color: #e0a73b;
}

/* Story Section */
.page-about__story-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.page-about__story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-about__story-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-about__story-text {
        order: 1;
    }
    .page-about__story-image-container {
        order: 2;
    }
}

.page-about__story-text p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-about__story-image-container {
    text-align: center;
}

.page-about__story-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Mission Section */
.page-about__mission-section {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.page-about__mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-about__mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-about__mission-text h3 {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-about__mission-text p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-about__mission-image-container {
    text-align: center;
}

.page-about__mission-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Why Choose Section */
.page-about__why-choose-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.page-about__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-about__feature-card {
    background-color: #000000;
    color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-about__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FCBC45;
}

.page-about__feature-card p {
    font-size: 1em;
    color: #f0f0f0;
}

.page-about__why-choose-image-container {
    text-align: center;
}

.page-about__why-choose-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* CTA Section */
.page-about__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-about__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-about__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45;
}

.page-about__cta-description {
    font-size: 1.4em;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 3em;
    }
    .page-about__hero-description {
        font-size: 1.2em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        height: 60vh;
    }
    .page-about__hero-content {
        padding: 30px;
    }
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__button {
        width: 100%;
        padding: 12px 20px;
    }
    .page-about__story-grid, .page-about__mission-grid {
        grid-template-columns: 1fr;
    }
    .page-about__story-text, .page-about__story-image-container, .page-about__mission-text, .page-about__mission-image-container {
        order: unset; /* Reset order for mobile */
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-description {
        font-size: 1.2em;
    }
    .page-about__story-text p, .page-about__mission-text p, .page-about__feature-card p {
        font-size: 0.95em;
    }
    /* Ensure content images are responsive and don't overflow */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-about__hero-section {
        height: 50vh;
    }
    .page-about__hero-content {
        padding: 20px;
    }
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 0.9em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
}