/* style/about.css */

.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light background */
    background-color: #f9f9f9; /* Slightly off-white background for the page content */
}

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

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Primary blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-about__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.page-about__highlight {
    color: #ffc107; /* Secondary color for highlights */
    font-weight: bold;
}

.page-about__inline-link {
    color: #ffc107; /* Secondary color for inline links */
    text-decoration: underline;
}

.page-about__inline-link:hover {
    color: #ffe08a;
}

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

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

.page-about__button--primary {
    background-color: #ffc107; /* Secondary color for primary action */
    color: #333333; /* Dark text for contrast */
}

.page-about__button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-about__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-about__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* General Sections */
.page-about__section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
    font-weight: bold;
}

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

.page-about__story-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-about__story-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px; /* Ensure images are large enough */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-about__story-text {
    flex: 2;
    min-width: 300px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-about__story-text p {
    margin-bottom: 15px;
}

.page-about__text-link {
    color: #007bff;
    text-decoration: underline;
}

.page-about__text-link:hover {
    color: #0056b3;
}

/* Mission Vision Section */
.page-about__mission-vision-section {
    padding: 80px 0;
    background-color: #f0f8ff; /* Light blue background */
}

.page-about__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-about__card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-about__card:hover {
    transform: translateY(-5px);
}

.page-about__card-icon {
    width: 200px; /* Minimum size requirement */
    height: 200px; /* Minimum size requirement */
    margin-bottom: 20px;
    object-fit: contain;
}

.page-about__card-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-about__card-description {
    font-size: 1em;
    color: #555555;
}

/* Values Section */
.page-about__values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-about__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-about__value-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid #ffc107; /* Highlight with secondary color */
}

.page-about__value-icon {
    width: 200px; /* Minimum size requirement */
    height: 200px; /* Minimum size requirement */
    margin-bottom: 20px;
    object-fit: contain;
}

.page-about__value-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-about__value-description {
    font-size: 0.95em;
    color: #666666;
}

/* Call to Action Section */
.page-about__cta-section {
    background: linear-gradient(45deg, #007bff, #0056b3); /* Primary blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-about__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-about__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }

    .page-about__hero-description,
    .page-about__cta-description {
        font-size: 1em;
    }

    .page-about__section-title,
    .page-about__cta-title {
        font-size: 2em;
    }

    .page-about__story-content {
        flex-direction: column;
    }

    .page-about__story-image {
        max-width: 100%;
    }

    .page-about__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-about__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }

    .page-about__section-title,
    .page-about__cta-title {
        font-size: 1.8em;
    }

    .page-about__button {
        font-size: 1em;
        padding: 12px 25px;
    }
}