/* style/about.css */

/* Base styles for the page content, ensuring text color contrasts with body background */
.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF3E6; /* Text Main color, contrasts with #0D0E12 body background */
    background-color: transparent; /* Body background is handled by shared.css */
    padding-bottom: 60px; /* Add some padding at the bottom */
}

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

/* Hero Section */
.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
    background-color: #0D0E12; /* Background color for the section */
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for hero image */
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
    filter: none; /* Ensure no filter is applied */
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 0;
    width: 100%;
    max-width: 900px;
}