/* =========================================
   PSAD ABOUT PAGE STYLES - DARK THEME
   ========================================= */

/* Container Setup */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 20px 60px 20px;
    color: #e0e0e0; /* Light grey body text - easier on the eyes than pure white */
    line-height: 1.6;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* --- HEADERS --- */
.about-page-header {
    margin-top: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid #444; /* Dark grey line instead of a box */
    padding-bottom: 15px;
}

.about-page-header h1,
.about-page-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff; /* Pure white for high contrast headers */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.title-divider {
    height: 4px;
    width: 60px;
    background-color: #d32f2f; /* Classic automotive red */
    margin: 15px 0 10px 0;
}

.subtitle {
    font-style: italic;
    color: #d32f2f;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* --- SECTIONS & TYPOGRAPHY --- */
.about-section,
.about-bio {
    margin-bottom: 60px;
    background: transparent; /* No boxes */
}

.about-section h3 {
    font-size: 1.5rem;
    color: #ffffff; /* White subheaders */
    margin-top: 0;
    margin-bottom: 15px;
}

.about-section p,
.about-bio p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* --- IMAGES --- */
.shop-image {
    float: right;
    width: 45%;
    max-width: 450px;
    margin: 5px 0 20px 30px;
    border-radius: 4px;
    border: 1px solid #333; /* Very subtle dark border */
}

.about-image {
    float: left;
    width: 35%;
    max-width: 300px;
    margin: 5px 30px 20px 0;
    border-radius: 4px;
    border: 1px solid #333; 
}

/* CLEARFIX */
.about-section::after,
.about-bio::after {
    content: "";
    display: table;
    clear: both;
}

/* --- BUTTON --- */
.cta-container {
    text-align: center;
    margin-top: 50px;
    clear: both;
}

.btn-contact {
    display: inline-block;
    background-color: #d32f2f; /* Red button stands out on dark backgrounds */
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #d32f2f;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: transparent; /* Makes it hollow on hover */
    color: #d32f2f;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .about-container {
        padding: 100px 20px 40px 20px;
    }

    .shop-image,
    .about-image {
        float: none;
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
    }

    .about-page-header h1,
    .about-page-header h2 {
        font-size: 2rem;
    }
}