/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
}

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

.page-about__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_gold_red_pattern,luxury,gaming]') no-repeat center center/cover;
    opacity: 0.15;
    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: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-about__section:nth-of-type(odd) {
    background-color: #222;
}

.page-about__section:nth-of-type(even) {
    background-color: #1a1a1a;
}

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

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

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

@media (min-width: 768px) {
    .page-about__introduction .page-about__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-about__introduction .page-about__image-wrapper {
        order: 2;
    }
    .page-about__introduction .page-about__text-content {
        order: 1;
    }
}

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

.page-about__image-wrapper {
    text-align: center;
}

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

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

.page-about__feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.page-about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

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

.page-about__detail-pages .page-about__section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #d0d0d0;
    margin-top: -40px;
    margin-bottom: 60px;
}

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

.page-about__detail-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__detail-item:hover {
    transform: translateY(-5px);
    background-color: #333;
    border-left-color: #8B0000;
}

.page-about__detail-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-about__detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about__detail-title a:hover {
    color: #fff;
}

.page-about__detail-description {
    color: #c0c0c0;
    font-size: 1em;
    margin-bottom: 25px;
}

.page-about__cta {
    background: linear-gradient(90deg, #8B0000, #b30000);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-about__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-about__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn--primary:hover {
    background-color: #e6c200;
    color: #660000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 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: #8B0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 3em;
    }
    .page-about__section-title {
        font-size: 2.4em;
    }
    .page-about__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__introduction .page-about__content-grid {
        grid-template-columns: 1fr;
    }
    .page-about__introduction .page-about__image-wrapper {
        order: unset;
    }
    .page-about__introduction .page-about__text-content {
        order: unset;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__features-grid,
    .page-about__detail-list {
        grid-template-columns: 1fr;
    }
}