/* main.css */

/* Existing imports */
@import 'special/xloader.css';
@import 'variables.css';

/* Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #eaeaea;
}

body {
    display: flex; /* Enables Flexbox */
    flex-direction: column; /* Stacks children vertically */
    min-height: 100vh; /* Ensures body takes at least the full viewport height */
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

section {
    padding: 20px 0;
    flex: 1; /* Allows sections to grow and fill available space */
}

img {
    max-width: 100%;
    height: auto;
}

/* Responsive Typography */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5em;
    }

    .countdown h2,
    .subscription-form h2 {
        font-size: 2.5em;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 40px;
    }
}