


/* 1. HTML ----------------------------------------------------------*/
html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Prevent scrolling */
}
/* ------------------------------------------------------------------*/



/* 2. TEXT AND BUTTONS ----------------------------------------------*/
.video-text-container {
    position: absolute;
    z-index: 3; /* Ensure it's above the video and overlays */
    width: 100%; /* Use full width to center content */
    max-width: 600px; /* Max width for the content */
    left: 50%; /* Center horizontally */
    bottom: 10%; /* Distance from the bottom */
    transform: translateX(-50%); /* Center-align the container */
    color: #FFFFFF; /* White text for contrast */
    text-align: center; /* Align text to the center */
    padding: 20px; /* Add padding for some space inside the container */
}
.video-text-container h3, .video-text-container p, .video-text-container {
    margin: 10px 0; /* Adjust spacing around elements */
    color: #FFFFFF; /* White text for contrast */
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .video-text-container {
        max-width: 90%; /* Allows text container to take more space on smaller screens */
        bottom: 20%;
        padding: 10px; /* Smaller padding for tighter spaces */
    }

    .video-text-container h3 {
        font-size: 1.2rem; /* Adjust title font size for smaller screens */
    }

    .video-text-container p {
        font-size: 1rem; /* Adjust paragraph font size for smaller screens */
    }
}
.video-text-container .button-container button.nav-btn {
    margin-right: 10px; /* Adds space to the right of each button */
}
.video-text-container .button-container button.nav-btn:last-child {
    margin-right: 0; /* Removes space from the right of the last button */
}
button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
/* ------------------------------------------------------------------*/



/* 3. VIDEO ---------------------------------------------------------*/
/* Make the video container fill the entire viewport */
.video-container {
    position: fixed; /* Use fixed or absolute positioning */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1; /* Ensure video is below navigation tabs */
}
/* Ensure the video covers the full area of its container */
#landingVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity as needed */
    z-index: 1; /* Ensure the overlay is above the video but below other content */
}
/* ------------------------------------------------------------------*/



/* 4. NAVIGATION TABS -----------------------------------------------*/
/* Style the navigation tabs to be at the bottom of the video container */
.nav-tab-container {
    position: fixed; /* Positioning relative to the viewport */
    bottom: 0;
    left: 0;
    right: 0; /* Stretch across the bottom of the screen */
    display: flex;
    justify-content: space-around; /* Adjust this as needed */
    align-items: center;
    background-color: rgb(60,124,191, 0.5); /* Semi-transparent background */
    padding: 10px;
    z-index: 2; /* Ensure navigation tabs are above the video */
}

.nav-btn {
    background-color: transparent;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    border-radius: 20px;
    text-align: center;
}

.nav-btn:hover {
    background-color: rgb(248, 206, 70, 0.5); 
}

.nav-btn.highlighted {
    background-color: rgb(7, 167, 218, 0.5);
}

.nav-btn.highlighted:hover {
    background-color: rgb(2, 34, 70, 0.5);
}
/* ------------------------------------------------------------------*/



/* 5. WELCOME MESSAGE -----------------------------------------------*/
.fade-in {
    opacity: 0;
    color: #FFFFFF !important;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} 

.ml11 {
    /* font-weight: 700; */
    /* font-size: 3.5em; */
    color: #FFFFFF !important;
}

.ml11 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
}

.ml11 .line {
    display: none;
}

@keyframes blink {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.ml11 .line1 {
    top: 0;
    left: 0;
}

.ml11 .letter {
    display: inline-block;
    line-height: 1em;
}


/* ------------------------------------------------------------------*/


