/* --- Base Styles & Resets --- */
:root {
    --primary-text-color: #212529; /* A dark, near-black for text */
    --secondary-text-color: #495057; /* A slightly lighter gray for sub-text */
    --background-color: #ffffff; /* Clean white */
    --button-bg-color: #0056b3; /* A professional blue */
    --button-hover-bg-color: #004494; /* A darker blue for hover */
    --border-color: #dee2e6; /* A light gray for borders/placeholders */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--primary-text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

header, main, footer {
    width: 100%;
}

header {
    padding: 20px 0;
    margin-bottom: 30px;
}

section {
    margin-bottom: 50px;
}

/* --- Placeholders --- */
.logo-placeholder {
    max-width: 200px;
    height: auto;
    padding: 10px;
    color: var(--secondary-text-color);
}

.screenshot-placeholder {
    width: 100%;
    max-width: 800px;
    height: auto;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 0 auto 20px auto;
    display: block;
    background-color: #f8f9fa;
}

/* --- Typography & Content --- */
h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    max-width: 700px;
    margin: 0 auto;
}

.caption {
    font-size: 1rem;
    color: var(--secondary-text-color);
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* --- Call to Action Button --- */
.cta-button {
    display: inline-block;
    background-color: var(--button-bg-color);
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover, .cta-button:focus {
    background-color: var(--button-hover-bg-color);
    transform: translateY(-2px);
    color: #ffffff;
}

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 30px;
    color: var(--secondary-text-color);
}

footer a {
    color: var(--primary-text-color);
    text-decoration: none;
    font-weight: 700;
}

footer a:hover {
    text-decoration: underline;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    h1 {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }

    .sub-headline {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    .sub-headline {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 15px 20px;
    }
}
/* --- New Footer Styles --- */
.footer-content {
    display: flex;
    justify-content: center; /* Horizontally center the items */
    align-items: center;    /* Vertically align the items */
    gap: 15px;              /* Space between the image and the text */
}

.headshot {
    width: 45px;            /* Set the width */
    height: 45px;           /* Set the height */
    border-radius: 50%;     /* This makes the image a perfect circle */
    object-fit: cover;      /* Prevents the image from being stretched or squished */
    border: 2px solid var(--border-color); /* Optional: adds a subtle border */
}

/* --- Responsive adjustment for the footer on small screens --- */
@media (max-width: 500px) {
    .footer-content {
        flex-direction: column; /* Stack the image on top of the text */
        gap: 10px;
    }
}