/* --- Base Styles and Typography --- */
:root {
    --body-font: Verdana, Arial, Helvetica, sans-serif;
    --dark-blue: #001248;
    --white: #FFFFFF;
    --text-color-body: #003333;
    --text-color-sm: #003366;
    --text-color-red: #FF0000;
    --text-color-black: #000000;
    --text-color-gray: #333333; /* Used for image borders */
    --content-max-width: 800px;
    --border-radius-lg: 15px;
    --border-radius-sm: 5px;
}

/* Original body background color */
.dark-background {
    background-color: var(--dark-blue);
}

/* Original class mappings (reused for consistency) */
.body-text {
    font-family: var(--body-font);
    font-size: 12px;
    color: var(--text-color-body);
    text-align: center;
}

.body-bold-black {
    font-family: var(--body-font);
    font-size: 13px;
    color: var(--text-color-black);
    font-weight: bold;
    text-align: center;
}

.body-bold-red {
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--text-color-red);
    font-weight: bold;
    text-align: center;
}

.body-sm {
    font-family: var(--body-font);
    font-size: 10px;
    color: var(--text-color-sm);
    text-align: center;
}

/* --- Layout and Responsiveness --- */
.page-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header-section {
    padding: 20px 0;
    text-align: center;
    background-color: var(--white);
}

.nav-links {
    padding: 10px 0;
}

.nav-link {
    text-decoration: none;
    padding: 0 10px;
}

/* Logo styling: Centered, no border, no radius */
.main-logo {
    max-width: 576px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    border-radius: 0; 
    border: none; 
}

/* Main content wrapper background set to white */
.content-section {
    background-color: var(--white); 
    padding: 10px;
}

/* Main Content Boxes */
.intro-box, .contact-box {
    background-color: var(--white);
    padding: 20px;
    margin-bottom: 10px;
    border-radius: var(--border-radius-sm); 
}

/* Image Gallery Styling */
.single-images-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between images and captions */
    padding: 10px;
}

.gallery-item {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
}

/* Styles for all other images (The Car Photos) */
.rounded-car-image {
    /* Rounded corners applied here */
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--text-color-gray);
    display: block;
    width: 100%;
    height: auto;
    max-width: 640px; /* Limit max size for large monitors */
    margin: 0 auto; /* Center the image within its figure */
}

.gallery-item figcaption {
    padding-top: 5px;
}

/* No two-column gallery needed for this page, but if you decided to use it later, 
   you would add the grid-based media query here. */