/* style/about.css */

/* Base styles for the page-about content */
.page-about {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #F8F8F8; /* Light gray for general text on dark backgrounds */
    background-color: #1A2A3A; /* Dark blue background */
    line-height: 1.7;
    font-size: 16px;
}

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

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

.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__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-about .highlight {
    color: #FFD700;
}

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #1A2A3A 0%, #3a4a5a 100%); /* Dark gradient */
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,gold_lines,dark_background]') no-repeat center center/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;
    color: #FFD700; /* Gold for hero title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2A3A; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

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

.page-about__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-about__mission-vision-section > .page-about__container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-about__mission-vision-section .page-about__text-content {
    flex: 2;
}

.page-about__mission-vision-section .page-about__image-right {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-about__value-item {
    background-color: #1A2A3A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-10px);
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

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

.page-about__value-item p {
    color: #E0E0E0;
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
    padding: 80px 0;
    background-color: #1A2A3A;
}

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

.page-about__feature-item {
    background-color: #0f1a24;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: background-color 0.3s ease;
}

.page-about__feature-item:hover {
    background-color: #2a3a4a;
}

.page-about__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 7px rgba(255, 215, 0, 0.8));
}

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

.page-about__feature-item p {
    color: #E0E0E0;
}

/* Responsible Gaming Section */
.page-about__responsible-gaming-section {
    padding: 80px 0;
    background-color: #0f1a24;
}

.page-about__responsible-gaming-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 50px;
}

.page-about__responsible-gaming-content .page-about__text-block {
    flex: 2;
}

.page-about__responsible-gaming-content .page-about__text-block h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-about__responsible-gaming-content .page-about__text-block p {
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-about__responsible-gaming-image {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-about__team-member {
    background-color: #0f1a24;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-about__member-role {
    color: #E0E0E0;
    font-style: italic;
}

.page-about__closing-text {
    margin-top: 60px;
    font-size: 1.2em;
    color: #FFD700;
    font-weight: 500;
}

/* Bottom CTA Section */
.page-about__cta-bottom {
    background-color: #FFD700; /* Gold background */
    padding: 60px 0;
    text-align: center;
    color: #1A2A3A; /* Dark blue text on gold background */
}

.page-about__cta-bottom .page-about__section-title {
    color: #1A2A3A;
}

.page-about__cta-bottom .page-about__section-title::after {
    background-color: #1A2A3A;
}

.page-about__cta-bottom p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 20px auto 40px auto;
    color: #3A3A3A;
}

.page-about__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    background-color: #1A2A3A; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue button */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.page-about__cta-button--large:hover {
    background-color: #2a3a4a; /* Slightly lighter dark blue on hover */
    transform: translateY(-5px);
}

/* Animation classes for JS */
.page-about--hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-about--fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__mission-vision-section > .page-about__container {
        flex-direction: column;
    }
    .page-about__mission-vision-section .page-about__image-right {
        max-width: 100%;
        margin-top: 30px;
    }
    .page-about__responsible-gaming-content {
        flex-direction: column;
    }
    .page-about__responsible-gaming-image {
        max-width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__sub-title {
        font-size: 1.5em;
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__values-grid, .page-about__features-grid, .page-about__team-grid {
        grid-template-columns: 1fr;
    }
    .page-about__responsible-gaming-content .page-about__text-block {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__hero-description {
        font-size: 0.95em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-about {
        font-size: 15px;
    }
}