/* Page Layout Styles */

/* Sticky Footer Layout - Keep footer at bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 70px; /* Space for fixed header */
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

/* Inner Page Layout - Common inner page layout */
.inner-page {
    padding: 60px 0;
}

/* Page content title area - Not to be confused with <header> element */
/* <header> = Site navigation bar (in components/header.css) */
/* .inner-page-header = Page content title (this file) */
.inner-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.inner-page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.inner-page-header .subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.inner-page-content {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Adjust for mobile header height */
    }

    .inner-page {
        padding: 40px 0;
    }
    
    .inner-page-header {
        margin-bottom: 40px;
    }
    
    .inner-page-header h1 {
        font-size: 32px;
    }
}
