/* style/about.css */

/* General Styles for the About Page */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #1a1a1a; /* Dark background for overall page */
}

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

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

.page-about__heading {
    font-size: 2.8em;
    color: #F39C12; /* Accent color for main headings */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-about__title {
    font-size: 3.5em;
    color: #F39C12; /* Accent color for hero title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.1;
}

.page-about__subtitle {
    font-size: 1.4em;
    color: #fff; /* White for subtitle */
    margin-bottom: 40px;
    line-height: 1.5;
}

.page-about p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0; /* Light gray for paragraphs */
    margin-bottom: 1em;
}

.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, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.page-about__btn--primary {
    background-color: #C0392B; /* Main brand color for primary buttons */
    color: #ffffff;
    border: 2px solid #C0392B;
}

.page-about__btn--primary:hover {
    background-color: #e74c3c; /* Lighter red on hover */
    border-color: #e74c3c;
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #F39C12; /* Accent color for secondary buttons */
    border: 2px solid #F39C12;
}

.page-about__btn--secondary:hover {
    background-color: #F39C12;
    color: #2C3E50; /* Dark text on accent hover */
}

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

.page-about__btn--outline:hover {
    background-color: #ffffff;
    color: #2C3E50;
}

/* Hero Section */
.page-about__hero {
    position: relative;
    background: linear-gradient(135deg, #2C3E50 0%, #1a1a1a 100%); /* Dark gradient background */
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-about__hero .page-about__container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Mission Section */
.page-about__mission {
    background-color: #2C3E50; /* Auxiliary color for mission section */
    color: #ffffff;
}

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

@media (min-width: 768px) {
    .page-about__grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

.page-about__mission .page-about__heading {
    color: #F39C12;
    text-align: left;
}

.page-about__mission p {
    color: #e0e0e0;
    text-align: left;
}

.page-about__image-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us Section */
.page-about__why-choose-us {
    background-color: #1a1a1a;
}

.page-about__why-choose-us .page-about__heading {
    color: #F39C12;
}

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

.page-about__feature-item {
    background-color: #2C3E50; /* Auxiliary color for feature items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(1) hue-rotate(180deg) saturate(2);
}

.page-about__feature-title {
    font-size: 1.8em;
    color: #C0392B; /* Main brand color for feature titles */
    margin-bottom: 15px;
}

.page-about__feature-item p {
    font-size: 1em;
    color: #e0e0e0;
}

/* Responsible Gambling Section */
.page-about__responsible-gambling {
    background-color: #1a1a1a;
    padding-bottom: 0; /* Image takes up bottom space */
}

.page-about__responsible-gambling .page-about__heading {
    color: #F39C12;
}

.page-about__responsible-gambling p {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-about__image--full-width {
    width: 100%;
    height: auto;
    margin-top: 60px;
    border-radius: 0;
    box-shadow: none;
}

/* CTA Section */
.page-about__cta {
    background-color: #C0392B; /* Main brand color for CTA section */
    color: #ffffff;
    padding: 80px 0;
}

.page-about__cta .page-about__heading {
    color: #ffffff;
}

.page-about__cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-about__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-about__cta-buttons .page-about__btn {
    min-width: 200px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-about__title {
        font-size: 3em;
    }

    .page-about__heading {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
        min-height: 400px;
    }

    .page-about__title {
        font-size: 2.5em;
    }

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

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

    .page-about__heading {
        font-size: 2em;
    }

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

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

    .page-about__feature-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 60px 0;
        min-height: 350px;
    }

    .page-about__title {
        font-size: 2em;
    }

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

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

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

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