/* Layout styles for Tenshikiro */

/* Ensure the body takes up at least the full viewport height */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Make the main content area grow to push footer down */
main.container {
    flex: 1 0 auto;
    padding-bottom: 2rem; /* Add padding to ensure content doesn't touch footer */
}

/* Make footer not sticky, but still at the bottom */
footer.footer {
    flex-shrink: 0;
    position: relative; /* Override any absolute/fixed positioning */
    width: 100%;
    background-color: #f8f9fa; /* Light background */
    border-top: 1px solid #e9ecef; /* Subtle top border */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    main.container {
        padding-bottom: 1rem;
    }
    
    footer.footer {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}
