/* style/about.css */

.page-about {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    line-height: 1.6;
    background-color: #1A202C; /* Main dark background */
}

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

.page-about__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:hero:abstract_pattern,dark_background,tech_lines]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-about__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-about__brand-name {
    color: #FFD700;
}

.page-about__hero-subtitle {
    font-size: 1.5em;
    color: #B0B0B0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.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, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.page-about__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-about__mission-vision {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-about__mission-vision .page-about__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 768px) {
    .page-about__mission-vision .page-about__container {
        grid-template-columns: 1fr 1fr;
    }
}

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: left;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
}

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

.page-about__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__values {
    padding: 80px 0;
    background-color: #2D3748; /* Slightly lighter dark background */
    text-align: center;
}

.page-about__values .page-about__section-title {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: none;
    padding-bottom: 0;
}

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

.page-about__value-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-10px);
    background-color: #2a3342;
}

.page-about__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-about__cta-section {
    background: linear-gradient(90deg, #1A202C, #2D3748);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:background:abstract_lines,gold_elements,dark_texture]');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.page-about__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-about__cta-text {
    font-size: 1.2em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

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

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

.page-about__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

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

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-subtitle {
        font-size: 1.1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__mission-vision .page-about__container {
        grid-template-columns: 1fr;
    }
    .page-about__section-title {
        font-size: 1.8em;
        text-align: center;
    }
    .page-about__value-item {
        padding: 25px;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-text {
        font-size: 1em;
    }
    .page-about__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-subtitle {
        font-size: 1em;
    }
    .page-about__hero-section,
    .page-about__mission-vision,
    .page-about__values,
    .page-about__cta-section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__value-title {
        font-size: 1.3em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__btn {
        width: 100%;
        max-width: 280px;
    }
    .page-about__cta-buttons {
        gap: 15px;
    }
}