/* style/about.css */

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

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

.page-about__hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #333333 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-about__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold accent for title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.page-about__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A0A0A; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-about__button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-about__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

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

.page-about__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.page-about__content-grid.reverse-grid {
    grid-template-areas: "image text";
}

.page-about__content-grid.reverse-grid .page-about__text-content {
    grid-area: text;
}

.page-about__content-grid.reverse-grid .page-about__image {
    grid-area: image;
}

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

.page-about__text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-about__text-content li {
    font-size: 1.1em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #F5F5F5;
}

.page-about__text-content li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

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

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

.page-about__feature-item {
    background-color: #1A1A1A; /* Slightly lighter dark background for features */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-about__cta-bottom {
    text-align: center;
    padding: 40px 0;
    background-color: #1A1A1A;
    border-radius: 10px;
}

.page-about__cta-bottom p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #F5F5F5;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}

/* 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-grid.reverse-grid {
        grid-template-areas: unset;
    }
    .page-about__content-grid.reverse-grid .page-about__text-content {
        grid-area: unset;
    }
    .page-about__content-grid.reverse-grid .page-about__image {
        grid-area: unset;
    }
    .page-about__image {
        order: -1; /* Image appears above text on mobile */
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 60px 0;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-about__text-content p, .page-about__text-content li {
        font-size: 0.95em;
    }
    .page-about__feature-item {
        padding: 20px;
    }
    .page-about__feature-item h3 {
        font-size: 1.4em;
    }
    .page-about__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-about__cta-bottom p {
        font-size: 1.2em;
    }
}

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