/* style/about.css */

/* Base styles for the page-about content */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A2342; /* Main dark background */
}

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

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

.page-about__text-center {
    text-align: center;
}

.page-about__bg-dark {
    background-color: #0A2342;
    color: #FFFFFF;
}

.page-about__bg-gold {
    background-color: #FFD700;
    color: #0A2342;
}

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #2a4c7c 100%); /* Dark blue gradient */
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-about__hero-subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto;
}

/* General Section Titles and Descriptions */
.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__section-title--dark {
    color: #0A2342; /* Dark blue for titles on gold background */
}

.page-about__section-description {
    font-size: 1.1em;
    color: #CCCCCC;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-about__highlight-alt {
    color: #FFFFFF;
    font-weight: bold;
}

.page-about__highlight-alt--dark {
    color: #0A2342;
}

.page-about__text--dark {
    color: #0A2342;
}

/* Image Styling */
.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-about__image:hover {
    transform: translateY(-5px);
}

.page-about__image--large {
    margin-top: 40px;
    max-height: 500px;
    object-fit: cover;
}

.page-about__image--medium {
    max-height: 400px;
    object-fit: cover;
}

/* Grid Layouts */
.page-about__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .page-about__grid-2-cols {
        grid-template-columns: 1fr;
    }
}

/* Features Grid */
.page-about__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-about__feature-item {
    background-color: #1a3a5c; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__feature-item:hover {
    background-color: #2a4c7c;
    transform: translateY(-5px);
}

.page-about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

.page-about__feature-item p {
    color: #E0E0E0;
}

/* Call to Action Buttons */
.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn--primary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

.page-about__btn--secondary:hover {
    background-color: #0A2342;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__hero-subtitle {
        font-size: 1.3em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-subtitle {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__section-description {
        font-size: 1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-about__section-padding {
        padding: 40px 0;
    }
}