/* --- CSS Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #192432;
    --accent-yellow: #E5A80E;
    --text-white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@font-face {
    font-family: 'Meloriac';
    src: url('/assets/fonts/Meloriac.woff2') format('woff2'),
        url('/assets/fonts/Meloriac.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NewPanam Skyline';
    src: url('/assets/fonts/NewPanam-SkylineRegular.woff2') format('woff2'),
        url('/assets/fonts/NewPanam-SkylineRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NewPanam Skyline';
    src: url('/assets/fonts/NewPanam-SkylineMedium.woff2') format('woff2'),
        url('/assets/fonts/NewPanam-SkylineMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



body,
html {
    height: 100%;
    background-color: var(--bg-dark);
    color: var(--text-white);

    /* Prevent scrolling for a clean splash page */
}

/* --- Layout --- */
.container {
    display: flex;
    flex-direction: column;
    height: 100vh;

}

/* --- Hero Section (Top) --- */
.hero {
    height: 40vh;
    min-height: 300px;
    /* Shorter image area on mobile to prioritize text */
    background: url('../images/main-image.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}


/* --- Content Section (Bottom) --- */
.content {
    flex: 1;
    /* Take up remaining space */
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 10;
}

/* Logo and Mascot */
.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: .5rem;
}

.mascot-img {
    max-width: 100px;
    /* Smaller mascot on mobile */
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: 0.2rem;
}




/* Main Message */
.coming-soon-heading {
    font-family: 'Meloriac', sans-serif;
    font-weight: normal;
    line-height: 1;
    font-size: 45px;
    color: var(--accent-yellow);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    line-height: 100%;
    letter-spacing: 0%;
    /* Tighter spacing */
}

.site-arriving {
    font-family: 'NewPanam Skyline', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-top: 1rem;
    /* approx 20px */
    color: var(--text-white);
    line-height: 1;
    letter-spacing: 0%;
    text-align: center;
}

/* Contact Footer */
.contact-details {
    margin-top: 2rem;
    font-family: 'NewPanam Skyline', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0%;
    text-align: center;
}

.contact-details a {
    color: var(--text-white);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

/* --- Desktop Enhancements (Media Queries) --- */
@media (min-width: 1024px) {
    .container {
        height: 100vh;
    }

    .hero {
        height: 50vh;
    }

    .content {
        height: 50vh;
        min-height: 350px;
        padding: 2rem 4rem;

    }

    .mascot-img {
        max-width: 180px;
    }



    .coming-soon-heading {
        margin: 1.5rem 0 0.5rem 0;
        font-size: 60px;
    }

    .site-arriving {
        font-size: 35px;
    }

    .contact-details {
        font-size: 22px;
    }
}

/* --- 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);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}