:root {
    --primary-color: #000;
    --background-color: #fff;
    --text-color: #000;
    --accent-color: #f7e61c;
    /* To match the yellow in the logo */
    --font-heading: 'Montserrat', sans-serif;
    --font-tagline: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    /* Support for mobile devices with notches */
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(20px, 5vw, 40px);
    width: 100%;
}

/* Logo Section */
.logo-section {
    margin-bottom: clamp(20px, 4vh, 40px);
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: clamp(150px, 60vw, 300px);
    height: auto;
}

/* Content Section */
.content-section {
    text-align: center;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 900px;
}

.coming-soon {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(32px, 12vw, 100px);
    letter-spacing: clamp(1px, 0.5vw, 5px);
    margin-bottom: clamp(10px, 2vh, 20px);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.1;
}

.tagline {
    font-family: var(--font-tagline);
    font-weight: 400;
    font-size: clamp(16px, 2.5vw, 24px);
    line-height: 1.6;
    color: #333;
    animation: fadeInUp 1s ease-out 0.4s both;
    padding: 0 10px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breakpoints for even finer control */
@media (max-width: 480px) {
    .coming-soon {
        font-weight: 800;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
        margin: 0 auto;
    }
}