/* style/about.css */

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

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

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

.page-about__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent for headings */
    margin-bottom: 40px;
    font-weight: bold;
}

.page-about__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__subtitle {
    font-size: 1.2em;
    color: #B0B0B0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Buttons */
.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, border-color 0.3s ease;
    margin: 10px;
}

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

.page-about__btn--primary:hover {
    background-color: #E0B500; /* Slightly darker gold on hover */
    border-color: #E0B500;
}

.page-about__btn--secondary {
    background-color: #333333; /* Darker gray background */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #444444;
    border-color: #E0B500;
}

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

.page-about__btn--outline:hover {
    background-color: #FFD700;
    color: #1A1A1A;
}

/* Hero Section */
.page-about__hero {
    background-color: #1A1A1A; /* Deep dark background */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

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

/* Mission & Vision Section */
.page-about__mission-vision {
    background-color: #222222;
    padding: 80px 0;
}

.page-about__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-about__card {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 48%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-about__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700); /* Gold glow effect */
}

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

.page-about__card-text {
    font-size: 1em;
    color: #B0B0B0;
}

/* Core Values Section */
.page-about__values {
    padding: 80px 0;
    background-color: #1A1A1A;
}

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

.page-about__value-item {
    background-color: #222222;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

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

.page-about__value-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-about__value-text {
    font-size: 0.95em;
    color: #B0B0B0;
}

/* Why Us Section */
.page-about__why-us {
    background-color: #222222;
    padding: 80px 0;
}

.page-about__why-us-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-about__text-block {
    flex: 1;
    min-width: 300px;
}

.page-about__why-us-content p {
    margin-bottom: 20px;
    color: #E0E0E0;
}

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

.page-about__why-us-content ul li {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-about__why-us-content ul li strong {
    color: #FFD700;
}

.page-about__why-us-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

/* Call to Action Section */
.page-about__cta {
    background-color: #1A1A1A;
    padding: 80px 0;
    text-align: center;
}

.page-about__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__cta-text {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Animation for sections */
.page-about__section.fade-in,
.page-about__cta.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-about__section.fade-in.is-visible,
.page-about__cta.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__heading {
        font-size: 2em;
    }
    .page-about__title {
        font-size: 2.5em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__grid,
    .page-about__why-us-content {
        flex-direction: column;
    }
    .page-about__card,
    .page-about__text-block,
    .page-about__why-us-image {
        max-width: 100%;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-about__heading {
        font-size: 1.8em;
    }
    .page-about__title {
        font-size: 2em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__card {
        padding: 20px;
    }
    .page-about__value-item {
        padding: 20px;
    }
}