/* style/about.css */

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

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

.page-about__container--narrow {
    max-width: 900px;
}

.page-about__section {
    padding: 60px 0;
    text-align: center;
}

.page-about__section--dark {
    background-color: #2F4F4F;
    color: #f0f0f0;
}

.page-about__section-title {
    font-size: 2.8em;
    color: #2F4F4F;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title--light {
    color: #FFD700;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-about__section-title--light::after {
    background-color: #f0f0f0;
}

.page-about__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555;
}

.page-about__section-description--light {
    color: #ccc;
}

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

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #2F4F4F 0%, #000000 100%); /* Dark gradient for premium feel */
    padding: 100px 0;
    color: #f0f0f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Buttons */
.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #2F4F4F;
    border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #2F4F4F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-about__btn-group {
    margin-top: 30px;
}

/* Images */
.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__image--full-width {
    width: 100%;
}

.page-about__image--centered {
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.page-about__grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.page-about__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-about__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-about__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-about__grid-title {
    font-size: 1.8em;
    color: #2F4F4F;
    margin-bottom: 15px;
}

/* Lists */
.page-about__list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.page-about__list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.page-about__list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    top: 0;
}

.page-about__list--light li {
    color: #f0f0f0;
}

.page-about__list--light li::before {
    color: #FFD700;
}

.page-about__list--icon li {
    display: flex;
    align-items: flex-start;
    padding-left: 0;
}

.page-about__list--icon li::before {
    display: none;
}

.page-about__list-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

/* Team Section */
.page-about__team-member {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

.page-about__team-name {
    font-size: 1.6em;
    color: #2F4F4F;
    margin-bottom: 5px;
}

.page-about__team-role {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 15px;
}

.page-about__team-bio {
    font-size: 0.95em;
    color: #555;
}

/* Offerings Section Feature Cards */
.page-about__feature-card {
    background-color: #3a5c5c; /* Darker variant of auxiliary color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #f0f0f0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
    background-color: #4a6d6d;
}

.page-about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(330deg) brightness(100%) contrast(100%); /* Adjust to gold */
}

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

/* CTA Card in Offerings Section */
.page-about__cta-card {
    background-color: #FFD700;
    color: #2F4F4F;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-about__cta-title {
    font-size: 2em;
    margin-bottom: 15px;
    color: #2F4F4F;
}

.page-about__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #444;
}

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

    .page-about__hero-subtitle {
        font-size: 1.2em;
    }

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

    .page-about__grid--2-cols, .page-about__grid--3-cols {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-about__section {
        padding: 40px 0;
    }

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

    .page-about__btn-group .page-about__btn {
        display: block;
        margin: 10px auto;
    }
}