/* style/about.css */

/* General Page Styling */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light text for dark background */
    background-color: #1A202C; /* Main background color */
    line-height: 1.6;
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Secondary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-about__text {
    font-size: 1.1em;
    color: #CBD5E0; /* Slightly lighter text for readability */
    margin-bottom: 20px;
}

.page-about__text--center {
    text-align: center;
}

.page-about__keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a5c 100%); /* Gradient for hero */
    padding: 100px 0;
    text-align: center;
    border-bottom: 5px solid #FFD700;
}

.page-about__hero-title {
    font-size: 3.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-subtitle {
    font-size: 1.5em;
    color: #E2E8F0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #1A202C; /* Dark text on gold button */
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-about__btn--secondary {
    background-color: #2D3748; /* Darker secondary button */
    color: #FFD700; /* Gold text on dark button */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

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

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

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

.page-about__grid-item {
    padding: 30px;
    background-color: #2D3748;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-about__grid-item .page-about__section-title {
    font-size: 2em;
    margin-bottom: 25px;
    text-align: left;
}

.page-about__grid-item .page-about__section-title::after {
    margin-left: 0;
}

.page-about__image-small {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Values Section */
.page-about__values-section {
    padding: 80px 0;
    background-color: #222B38;
    text-align: center;
}

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

.page-about__value-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px; /* Ensure consistent height */
}

.page-about__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Glow effect for icons */
}

.page-about__value-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

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

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

.page-about__team-member {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.page-about__member-name {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 5px;
    font-weight: bold;
}

.page-about__member-role {
    font-size: 1.1em;
    color: #CBD5E0;
}

/* Call to Action Section */
.page-about__cta-section {
    background: linear-gradient(45deg, #1A202C, #2D3748);
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-about__cta-content {
    max-width: 800px;
}

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

.page-about__cta-text {
    font-size: 1.3em;
    color: #E2E8F0;
    margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 3em;
    }
    .page-about__hero-subtitle {
        font-size: 1.3em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
    .page-about__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 80px 0;
    }
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-subtitle {
        font-size: 1.1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__grid-item, .page-about__value-item, .page-about__team-member {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-section {
        padding: 60px 0;
    }
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-subtitle {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-text {
        font-size: 1em;
    }
    .page-about__grid--values {
        grid-template-columns: 1fr;
    }
    .page-about__team-grid {
        grid-template-columns: 1fr;
    }
}