/* style/about.css */

.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f5f5f5; /* Light text for dark background */
    background-color: #0A2342; /* Main dark background */
}

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

.page-about__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

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

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

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-about__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-about__cta-button--primary {
    background-color: #FFD700;
    color: #0A2342;
}

.page-about__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-about__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-about__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 80px;
    position: relative;
}

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

.page-about__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -40px auto 60px;
    color: #c0c0c0;
}

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

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

.page-about__grid-item {
    background-color: #0A2342;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-about__grid-item .page-about__image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 2px solid #FFD700;
}

.page-about__subtitle {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-about__grid-item p {
    color: #e0e0e0;
    font-size: 1.05em;
}

.page-about__values {
    padding: 80px 0;
    background-color: #0A2342;
}

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

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

.page-about__value-card:hover {
    transform: translateY(-5px);
    background-color: #2b5c97;
}

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

.page-about__value-card p {
    color: #c0c0c0;
}

.page-about__our-story {
    padding: 80px 0;
    background-color: #1A3F6C;
}

.page-about__story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-about__image--story {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.page-about__story-content p {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: justify;
    line-height: 1.8;
}

.page-about__responsible-gaming {
    padding: 80px 0;
    background-color: #0A2342;
}

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

.page-about__text-content {
    flex: 1;
}

.page-about__text-content p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-about__image--right {
    flex: 0 0 450px; /* Fixed width for the image */
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.page-about__our-team {
    padding: 80px 0;
    background-color: #1A3F6C;
}

.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: #0A2342;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #FFD700;
}

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

.page-about__member-role {
    font-size: 1.1em;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 15px;
}

.page-about__member-bio {
    color: #c0c0c0;
    font-size: 0.95em;
    text-align: justify;
}

.page-about__call-to-action {
    padding: 80px 0;
    background-color: #0A2342;
    text-align: center;
}

.page-about__cta-buttons {
    margin-top: 40px;
}

.page-about__cta-buttons .page-about__cta-button:not(:last-child) {
    margin-right: 20px;
}

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

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

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

    .page-about__content-grid {
        grid-template-columns: 1fr;
    }

    .page-about__content-flex {
        flex-direction: column;
    }

    .page-about__image--right {
        flex: none;
        width: 100%;
        max-width: 500px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 60px 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__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
        padding-top: 60px;
    }

    .page-about__section-description {
        margin: -20px auto 40px;
    }

    .page-about__grid-item {
        padding: 25px;
    }

    .page-about__subtitle {
        font-size: 1.8em;
    }

    .page-about__values-grid,
    .page-about__team-grid {
        grid-template-columns: 1fr;
    }

    .page-about__story-content p {
        font-size: 1em;
    }

    .page-about__team-member {
        padding: 25px;
    }

    .page-about__member-name {
        font-size: 1.6em;
    }

    .page-about__cta-buttons .page-about__cta-button:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-about__cta-button--secondary {
        margin-left: 0;
    }

    .page-about__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

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

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

    .page-about__cta-button {
        width: 100%;
        max-width: 280px;
    }

    .page-about__image--right {
        max-width: 100%;
        height: auto;
    }
}