/* style/about.css */

/* General Styles for .page-about */
.page-about {
    font-family: Arial, sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

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

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

.page-about__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

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

.page-about__hero {
    background: linear-gradient(135deg, #0A192F 0%, #301934 100%); /* Slightly lighter dark gradient */
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-about__hero .page-about__container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-about__hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #f5e6d0;
}

.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;
    font-size: 1.1em;
    margin: 10px;
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

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

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

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

.page-about__section--story {
    background-color: #1a2a47;
}

.page-about__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-about__content-grid:nth-child(even) {
    flex-direction: row-reverse;
}

.page-about__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #d1d8e0;
}

.page-about__text-content p {
    margin-bottom: 20px;
}

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

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

.page-about__section--mission-vision {
    background-color: #0A192F;
}

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

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

.page-about__mission-item:hover {
    transform: translateY(-10px);
}

.page-about__mission-item img.page-about__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-about__mission-item p {
    color: #d1d8e0;
    font-size: 1.05em;
}

.page-about__section--why-us {
    background-color: #1a2a47;
}

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

.page-about__why-us-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #FFD70033;
}

.page-about__why-us-item:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
}

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

.page-about__why-us-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-about__why-us-item p {
    color: #d1d8e0;
    font-size: 1em;
}

.page-about__section--cta {
    background-color: #0A192F;
    padding: 80px 0;
}

.page-about__cta-content {
    background-color: #1a2a47;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.page-about__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-about__cta-description {
    font-size: 1.2em;
    color: #d1d8e0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 3em;
    }
    .page-about__hero-description {
        font-size: 1.2em;
    }
    .page-about__section-title {
        font-size: 2.2em;
    }
    .page-about__content-grid {
        flex-direction: column;
    }
    .page-about__content-grid:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__mission-grid, .page-about__why-us-grid {
        grid-template-columns: 1fr;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-content {
        padding: 30px;
    }
}