@import 'header.css';
@import 'footer.css';
@import 'messages.css';
@import 'parallax.css';
@import 'contact.css';
@import 'turnstile.css';
@import 'verify.css';

/* Ensure full height and flexbox layout */
html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #ddd;
}

/* Main container to push the footer down */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content expands but keeps footer at the bottom */
.content-container {
    flex: 1;
    /* Pushes footer down */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    /* Adjust based on header/footer */
}

* {
    box-sizing: border-box;
}

.cf-turnstile {
    width: 200px;
    height: 25px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}