/* style/about.css */

/* Base styles for the about page */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray text for dark background */
    line-height: 1.6;
    background-color: #1A202C; /* Dark background */
}

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

.page-about__hero {
    background: linear-gradient(135deg, #1A202C 0%, #333C4A 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold text for contrast */
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(26, 32, 44, 0) 70%);
    animation: page-about__hero-glow 15s infinite alternate;
    z-index: 0;
}

@keyframes page-about__hero-glow {
    0% { transform: scale(0.8) rotate(0deg); opacity: 0.5; }
    100% { transform: scale(1.2) rotate(360deg); opacity: 0.7; }
}

.page-about__hero > * {
    position: relative;
    z-index: 1;
}

.page-about__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-about__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #FFFFFF; /* White for subtitle */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-about__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0; /* Light gray for body text */
}

.page-about__grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.page-about__content-block {
    flex: 1;
}

.page-about__image-block {
    flex: 1;
    text-align: center;
}

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

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    font-size: 1.1em;
    text-align: center;
}

.page-about__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #1A202C; /* Dark text for primary button */
    border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C; /* Dark text on gold hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

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

.page-about__value-item {
    background-color: #2A313C; /* Slightly lighter dark background for items */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-10px);
    background-color: #3A414C; /* Darker on hover */
}

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

.page-about__value-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for value titles */
    margin-bottom: 15px;
}

.page-about__value-text {
    font-size: 1em;
    color: #B0B0B0; /* Slightly lighter gray for value text */
}

.page-about__section--cta {
    background-color: #1A202C; /* Dark background */
    text-align: center;
    padding-bottom: 100px;
}

.page-about__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-about__title {
        font-size: 2.8em;
    }
    .page-about__subtitle {
        font-size: 1.3em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__grid {
        flex-direction: column;
    }
    .page-about__grid--reverse {
        flex-direction: column;
    }
    .page-about__section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-about__title {
        font-size: 2.2em;
    }
    .page-about__subtitle {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 60px 0;
    }
    .page-about__title {
        font-size: 1.8em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
}