/*
Theme Name: Coming Soon Splash Page
Theme URI: https://www.genexmarketing.com
Description: A simple coming soon splash page theme with customizable logo, background, and message. Multisite compatible.
Version: 1.0
Author: Genex Marketing Agency Ltd.
Author URI: https://www.genexmarketing.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coming-soon-splash
*/

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #1a1a2e;
    color: #ffffff;
}

.splash-container {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    width: 100%;
}

.splash-logo {
    margin-bottom: 40px;
}

.splash-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.splash-message {
    font-size: 1.25rem;
    line-height: 1.8;
}

.splash-message h1,
.splash-message h2,
.splash-message h3 {
    margin-bottom: 20px;
}

.splash-message p {
    margin-bottom: 15px;
}

.splash-message a {
    color: inherit;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .splash-container {
        padding: 30px 15px;
    }

    .splash-logo img {
        max-width: 200px;
    }

    .splash-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .splash-container {
        padding: 20px 15px;
    }

    .splash-logo {
        margin-bottom: 30px;
    }

    .splash-message {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
