/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #ffffff; /* White text */
    line-height: 1.6;
}

body {
    /* --- Simple Animated Gradient Background --- */
    background: linear-gradient(-45deg, #2c3e50, #3498db, #1abc9c, #27ae60); /* Example gradient */
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
    display: flex; /* Use flexbox to center content */
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; /* Needed for overlay positioning */
}

/* Keyframes for the gradient animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Optional Overlay - uncomment/adjust if using a video/image background */
/*
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); // Dark semi-transparent overlay
    z-index: 1; // Below content, above background video/image
}
*/

.container {
    position: relative; /* Ensure content is above the overlay */
    z-index: 2;
    max-width: 800px;
    padding: 40px;
}

.content {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for the text box */
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3em; /* Responsive units like vw could also be used */
    font-weight: 600;
    margin-bottom: 0.3em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 1.5em;
    color: #dddddd;
}

p {
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 1em;
}

.soon {
    font-weight: 600;
    font-size: 1.1em;
    margin-top: 1.5em;
}

.contact {
    margin-top: 2em;
    font-size: 0.9em;
}

.contact a {
    color: #aed6f1; /* Light blue link color */
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

#bg-video {
    position: fixed; /* Or absolute if body is relative */
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Place it behind everything */
    object-fit: cover; /* Cover the entire screen */
}

/* Make sure to uncomment and potentially adjust the .overlay style in the original CSS to ensure text readability over the video */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: 1;
}

/* Ensure body doesn't have its own background */
body {
   /* Remove or comment out the background/animation properties from the body */
   /* background: linear-gradient(...); */
   /* background-size: 400% 400%; */
   /* animation: gradientBG 20s ease infinite; */
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   position: relative;
}

/* Basic Responsive Adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2em;
    }
    .subtitle {
        font-size: 1em;
    }
    .content {
        padding: 20px 30px;
    }
}