/* style/about.css */

/* Base styles for the about page content */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text on dark background for readability */
    background-color: #0d1a2c; /* Slightly lighter than main color for body background */
}

/* Container for content */
.page-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-about-hero {
    background-color: #1A2B4C; /* Main color */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, #1A2B4C, #2c4a7e); /* Subtle gradient for depth */
}

.page-about-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FF8C00; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-about-description {
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

.page-about-description-center {
    text-align: center;
}

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

.page-about-btn-primary {
    background-color: #FF8C00; /* Accent color */
    color: #1A2B4C;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.page-about-btn-primary:hover {
    background-color: #e67e00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.page-about-btn-secondary {
    background-color: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
}

.page-about-btn-secondary:hover {
    background-color: #FF8C00;
    color: #1A2B4C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.page-about-cta-group {
    margin-top: 40px;
    text-align: center;
}

/* General Section Styles */
.page-about-section {
    padding: 80px 0;
    background-color: #12233f; /* Darker background for sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-about-section:nth-child(even) {
    background-color: #1A2B4C; /* Main color for alternating sections */
}

.page-about-heading {
    font-size: 2.5em;
    color: #FF8C00; /* Accent color for headings */
    margin-bottom: 40px;
    text-align: left;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-about-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #FF8C00;
    border-radius: 2px;
}

.page-about-heading-center {
    text-align: center;
}

.page-about-heading-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Two Column Layout */
.page-about-two-col {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-about-two-col .page-about-content-block,
.page-about-two-col .page-about-image-block {
    flex: 1;
}

.page-about-reverse {
    flex-direction: row-reverse;
}

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

/* Feature Grid / Benefits Grid / Team Grid */
.page-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about-feature-card,
.page-about-benefit-card,
.page-about-team-member {
    background-color: #1A2B4C; /* Main color for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-feature-card:hover,
.page-about-benefit-card:hover,
.page-about-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-about-card-title {
    font-size: 1.6em;
    color: #FF8C00;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about-feature-card p,
.page-about-benefit-card p {
    color: #cccccc;
}

/* List styles */
.page-about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about-list li {
    background-color: #12233f;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FF8C00;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about-list li strong {
    color: #FF8C00;
}

/* Team Section */
.page-about-team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #FF8C00;
    box-shadow: 0 0 0 5px rgba(255, 140, 0, 0.3);
}

.page-about-member-name {
    font-size: 1.4em;
    color: #FF8C00;
    margin-bottom: 5px;
    font-weight: bold;
}

.page-about-member-role {
    font-size: 1em;
    color: #cccccc;
}

/* CTA Banner */
.page-about-cta-banner {
    background-color: #2c4a7e; /* A slightly lighter shade of main color */
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-top: 60px;
    background-image: linear-gradient(45deg, #1A2B4C, #3c5d94);
}

.page-about-cta-banner .page-about-heading {
    color: #FF8C00;
    margin-bottom: 20px;
    text-align: center;
}

.page-about-cta-banner .page-about-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.page-about-cta-banner .page-about-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* Responsible Gaming Section */
.page-about-responsible-gaming {
    background-color: #1A2B4C;
    padding: 80px 0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-about-title {
        font-size: 2.8em;
    }
    .page-about-subtitle {
        font-size: 1.3em;
    }
    .page-about-heading {
        font-size: 2em;
    }
    .page-about-two-col {
        flex-direction: column;
    }
    .page-about-reverse {
        flex-direction: column;
    }
    .page-about-two-col .page-about-image-block {
        order: -1; /* Image appears above content on smaller screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-about-hero {
        padding: 80px 0;
    }
    .page-about-title {
        font-size: 2.2em;
    }
    .page-about-subtitle {
        font-size: 1.1em;
    }
    .page-about-heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-about-section {
        padding: 60px 0;
    }
    .page-about-grid {
        grid-template-columns: 1fr;
    }
    .page-about-cta-banner {
        padding: 40px 20px;
    }
    .page-about-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-about-title {
        font-size: 1.8em;
    }
    .page-about-subtitle {
        font-size: 1em;
    }
    .page-about-heading {
        font-size: 1.6em;
    }
    .page-about-btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-about-container {
        padding: 0 15px;
    }
}