/* style/about.css */

/* General page styling */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text for dark background */
    background-color: #0d1a2b; /* Darker variant of primary color */
    line-height: 1.6;
}

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

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

.page-about__section-title {
    color: #FFD700; /* Auxiliary color for section titles */
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #1A2E47; /* Primary color as underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #1A2E47 0%, #0d1a2b 100%); /* Primary to darker variant */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-about__hero-section .page-about__container {
    position: relative;
    z-index: 1;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Auxiliary color for main title */
}

.page-about__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for CTA */
    color: #1A2E47; /* Primary color for text on CTA */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button:hover {
    background-color: #e6c200; /* Slightly darker auxiliary on hover */
    transform: translateY(-3px);
}

.page-about__cta-button--secondary {
    background-color: #1A2E47; /* Primary color for secondary CTA */
    color: #FFD700; /* Auxiliary color for text on secondary CTA */
    border: 2px solid #FFD700;
}

.page-about__cta-button--secondary:hover {
    background-color: #2b4566; /* Slightly lighter primary on hover */
    border-color: #e6c200;
}

/* Mission and Vision Section */
.page-about__mission-vision-section {
    padding: 80px 0;
    background-color: #1A2E47; /* Primary color background */
}

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

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

.page-about__card {
    background-color: #2b4566; /* Darker shade of primary */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-about__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-about__card-title {
    font-size: 1.8em;
    color: #FFD700; /* Auxiliary color for card titles */
    margin-bottom: 15px;
}

.page-about__card-text {
    font-size: 1.1em;
    color: #c0c0c0;
}

/* Values Section */
.page-about__values-section {
    padding: 80px 0;
    background-color: #0d1a2b; /* Darker variant of primary color */
}

.page-about__values-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-about__values-list li {
    background-color: #1A2E47; /* Primary color */
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    font-size: 1.15em;
    color: #e0e0e0;
}

.page-about__values-list li:last-child {
    margin-bottom: 0;
}

.page-about__value-item {
    font-weight: bold;
    color: #FFD700; /* Auxiliary color for value items */
    min-width: 120px;
    margin-right: 20px;
}

/* Team Section */
.page-about__team-section {
    padding: 80px 0;
    background-color: #1A2E47; /* Primary color background */
}

.page-about__team-intro {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #e0e0e0;
}

.page-about__team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

.page-about__team-member {
    background-color: #2b4566; /* Darker shade of primary */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.page-about__member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #FFD700; /* Auxiliary color border */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-about__member-name {
    font-size: 1.6em;
    color: #FFD700; /* Auxiliary color for names */
    margin-bottom: 10px;
}

.page-about__member-role {
    font-size: 1em;
    color: #c0c0c0;
}

/* Commitment Section */
.page-about__commitment-section {
    padding: 80px 0;
    background-color: #0d1a2b; /* Darker variant of primary color */
    text-align: center;
}

.page-about__commitment-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #e0e0e0;
    text-align: left;
}

.page-about__commitment-text ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-top: 15px;
}

.page-about__commitment-text ul li {
    margin-bottom: 10px;
}

.page-about__commitment-text strong {
    color: #FFD700;
}

.page-about__commitment-outro {
    font-size: 1.3em;
    font-weight: bold;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 50px;
}

/* FAQ Section */
.page-about__faq-section {
    padding: 80px 0;
    background-color: #1A2E47; /* Primary color background */
}

.page-about__faq-item {
    background-color: #2b4566; /* Darker shade of primary */
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__faq-question {
    font-size: 1.4em;
    color: #FFD700; /* Auxiliary color for questions */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-about__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-about__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-about__faq-answer {
    font-size: 1.1em;
    color: #c0c0c0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-about__faq-answer.active {
    max-height: 300px; /* Adjust based on expected content */
    opacity: 1;
    padding-top: 15px;
}

.page-about__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-about__faq-answer a:hover {
    color: #e6c200;
}

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

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

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

@media (max-width: 767px) {
    .page-about__hero-section {
        padding: 80px 0;
    }

    .page-about__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-about__mission-vision-section, 
    .page-about__values-section, 
    .page-about__team-section, 
    .page-about__commitment-section, 
    .page-about__faq-section {
        padding: 60px 0;
    }

    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-about__card, .page-about__team-member, .page-about__faq-item {
        padding: 20px;
    }

    .page-about__card-title, .page-about__member-name {
        font-size: 1.5em;
    }

    .page-about__values-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-about__value-item {
        min-width: unset;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .page-about__faq-question {
        font-size: 1.2em;
    }

    .page-about__faq-answer {
        font-size: 0.95em;
    }
}