
html {
    scroll-behavior: smooth;
}

body{
    width: 100%;
}

title{
    color: #E7CE79 !important;
}


/* Adjusting sections to avoid overlapping with navbar */
main{
    margin-top: 60px; /* This creates space for the fixed navbar */
}

/* Main Intro Section with video */
#intro {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px); /* Full height minus navbar */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #intro {
        height: calc(60vh - 60px); /* Adjust for smaller screens */
    }
}

/* Other sections */
#section2,
#section3,
#contact {
    min-height: 100vh; /* Make sure each section covers full screen */
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);  /* Semi-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;  /* Ensure it's on top of everything */
}

.loading-overlay video {
    max-width: 90%;  /* Adjust based on your preference */
    max-height: 90%;
}
