/* style/about.css */

/* Base styles for the about page */
.page-about {
    background-color: #0A192F;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-about__section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-about__section-title {
    font-size: 3.2em;
    color: #E0B400;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-about__sub-title {
    font-size: 1.8em;
    color: #E0B400;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-about__text strong {
    color: #E0B400;
}

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a6b 100%);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.page-about__hero-content {
    max-width: 600px;
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.page-about__hero-title {
    font-size: 4.5em;
    color: #E0B400;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 900;
    text-shadow: 3px 3px #000000;
}

.page-about__hero-description {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 300;
}

.page-about__hero-description strong {
    color: #E0B400;
}

.page-about__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    overflow: hidden;
}

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

/* Buttons */
.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1em;
}

.page-about__btn--primary {
    background-color: #E0B400;
    color: #0A192F;
    border: 2px solid #E0B400;
}

.page-about__btn--primary:hover {
    background-color: #f5c73c;
    border-color: #f5c73c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-about__btn--secondary {
    background-color: #E0B400;
    color: #0A192F;
    border: 2px solid #E0B400;
}

.page-about__btn--secondary:hover {
    background-color: #f5c73c;
    border-color: #f5c73c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-about__btn--outline {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
    margin-left: 20px;
}

.page-about__btn--outline:hover {
    background-color: #E0B400;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

/* Our Story Section */
.page-about__our-story {
    background-color: #0A192F;
    text-align: center;
}

/* Mission & Vision Section */
.page-about__mission-vision {
    background-color: #1a2a47; /* Slightly lighter dark blue for contrast */
}

.page-about__mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__mission-vision-image-wrapper {
    text-align: center;
}

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

/* Values Section */
.page-about__values {
    background-color: #0A192F;
    text-align: center;
}

.page-about__value-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about__value-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    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: #2c3e5e;
}

.page-about__value-title {
    font-size: 1.6em;
    color: #E0B400;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Call to Action Section */
.page-about__cta {
    background-color: #E0B400;
    color: #0A192F;
    text-align: center;
    padding: 100px 0;
}

.page-about__cta-title {
    font-size: 3.5em;
    color: #0A192F;
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
}

.page-about__cta-description {
    font-size: 1.3em;
    color: #333333;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-about__cta-description strong {
    color: #0A192F;
}

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

.page-about__cta-buttons .page-about__btn--secondary {
    background-color: #0A192F;
    color: #E0B400;
    border-color: #0A192F;
}

.page-about__cta-buttons .page-about__btn--secondary:hover {
    background-color: #2c3e5e;
    border-color: #2c3e5e;
    color: #f5c73c;
}

.page-about__cta-buttons .page-about__btn--outline {
    background-color: transparent;
    color: #0A192F;
    border-color: #0A192F;
}

.page-about__cta-buttons .page-about__btn--outline:hover {
    background-color: #0A192F;
    color: #E0B400;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 3.5em;
    }
    .page-about__hero-description {
        font-size: 1.2em;
    }
    .page-about__section-title {
        font-size: 2.5em;
    }
    .page-about__cta-title {
        font-size: 2.8em;
    }
    .page-about__mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__sub-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
    .page-about__cta-description {
        font-size: 1.1em;
    }
    .page-about__value-item {
        padding: 25px;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__btn--outline {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-description {
        font-size: 0.95em;
    }
    .page-about__btn {
        width: 100%;
        text-align: center;
    }
    .page-about__value-list {
        grid-template-columns: 1fr;
    }
}