@import url(./main.css);

body {
    overflow: hidden;
}

/* Preloader Section */

.preloader-section {
    height: 100vh;
    width: 100%;
    background-color: var(--color-two);
    color: var(--color-one);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    /* fix for full screen */
    top: 0;
    left: 0;
    z-index: 30;
}

.preloader-text {
    white-space: pre;
    overflow: hidden;
}

.preloader-text span {
    display: inline-block;
    pointer-events: none;
}

/* Main Index Section */

.main-index-section {
    position: relative;
}

/* Navbar Section */

.navbar-section {
    position: absolute;
    height: 60px;
    width: 100%;
    border-bottom: .5px solid var(--color-two);
}

.navbar-section .container {
    display: flex;
    align-items: center;
    
}

.navbar-section .navbar-brand {
    width: 10%;
}

.navbar-section .navbar-links {
    width: 90%;
    padding-left: 20px;
}

.navbar-section img {
    height: 50px;
}
.navbar-links ul {
    display: flex;
    justify-content: flex-end;
    gap: 20PX;
}
.navbar-links li {
    list-style: none;
}
.navbar-links a{
    text-decoration: none;
    color: var(--color-two);
}

/* Hero Section */

.hero-section {
    height: auto;
    width: 100%;
    padding-top: var(--gap-xxl);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    text-transform: uppercase;
}

/* Intro Video Section */

.intro-video-section{
    width: 100%;
    height: auto;
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.intro-video-section .container{
    display: flex;
    justify-content: center;
}
.intro-video-section video{
    background-color: aliceblue;
    width: 100%;
    height: 90vh;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Text Carousel Section */

.carousel-section{
    height: auto;
    width: 100%;
}
.carousel-section > div{
    object-fit: cover;
}