/*
Theme Name: Launch Soon Pro
Author: Your Name
Description: A professional Coming Soon theme with a centered logo and background.
Version: 1.0
*/

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow: hidden; /* Prevents scrollbars */
}

/* Main Container */
.coming-soon-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative;
    color: #ffffff;
    text-align: center;
    z-index: 1;
}

/* Background Handling */
body.custom-background {
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity here */
    z-index: 0;
}

/* Logo Styling */
/* Logo Styling */
.site-logo {
    margin-bottom: 2rem;
    /* max-width: 250px;  <-- REMOVED THIS LINE so Admin controls it */
    animation: fadeInDown 1s ease-out;
    text-align: center;
}

/* Heading Styling */
h1.launch-title {
    font-size: 3.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    animation: fadeInUp 1s ease-out;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1.launch-title {
        font-size: 2rem;
        padding: 0 20px;
    }
}

/* 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); }
}