/* style/about.css */

/* General styles for the about page content */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f8f8;
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: #A80000; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-about__hero-section {
    background: linear-gradient(135deg, #A80000 0%, #cc0000 100%); /* Darker red gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Secondary color for emphasis */
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-about__button--primary {
    background-color: #FFD700; /* Secondary color */
    color: #A80000; /* Primary color */
}

.page-about__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-about__button--secondary {
    background-color: #A80000; /* Primary color */
    color: #FFD700; /* Secondary color */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-about__button--secondary:hover {
    background-color: #8a0000; /* Slightly darker red */
    transform: translateY(-2px);
}

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

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

.page-about__story-text {
    flex: 1;
}

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

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

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-about__mission-vision-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.page-about__mission-vision-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-about__mission-vision-item:hover {
    transform: translateY(-5px);
}

.page-about__mission-vision-item h3 {
    font-size: 1.8em;
    color: #A80000; /* Primary color */
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-about__mission-vision-item p {
    font-size: 1em;
    color: #555555;
}

.page-about__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.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-card {
    background-color: #fdfdfd;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: box-shadow 0.3s ease;
    border-top: 5px solid #A80000;
}

.page-about__value-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-about__value-card h4 {
    font-size: 1.5em;
    color: #A80000; /* Primary color */
    margin-bottom: 10px;
}

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

.page-about__cta-section {
    background-color: #A80000; /* Primary color */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-description a {
    color: #FFD700;
    text-decoration: underline;
}

.page-about__cta-description a:hover {
    color: #ffffff;
}

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

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

    .page-about__hero-description {
        font-size: 1.1em;
    }

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

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

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

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

    .page-about__button--secondary {
        margin-left: 0;
    }
}

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

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

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

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

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