/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set the full-screen background image */
body, html {
    height: 100%;
}

/* The body container */
.background-container {
    position: relative;
    width: 100%;
    height: 100vh; /* 100% of viewport height */
    /* height: 100%; */
    /* background: url('launching_soon_v1.jpg') no-repeat center center fixed;
    	    background-size: cover; */
    background-image: url('1920X960.jpg'); /* Desktop background image */
    background-size: cover; /* Make sure the image covers the entire container */
    background-position: center; /* Center the image */
    background-attachment: fixed; /* Keeps background fixed while scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* The "Coming Soon" message style */
.coming-soon-text {
    font-size: 1.5rem;
    font-family: Calibri, Arial, sans-serif;
    color: #7E8084;
    /* font-weight: bold;
    text-transform: uppercase; */
    padding-left: 250px;
    padding-right: 250px;
    margin-top: -100px;
    z-index: 1;
    text-align: left;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer styling */
.footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.footer a {
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #0076B5; /* Change hover color if desired */
}

/* Social media icon styling */
.footer i {
    font-size: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .background-container {
        background-image: url('Website_mobile.jpg'); /* Mobile background image */
        background-attachment: scroll; /* Prevent fixed background on mobile */
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1rem;
    }

    .social-icon {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .social-icon {
        font-size: 0.8rem;
    }
}






