@font-face {
    font-family: 'Fahkwang';
    src: url('../fonts/Fahkwang-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fahkwang", sans-serif;
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 100px;
}

.pt-3 {
    padding-top: 5vh;
}

body {
    background: #101921;
    color: rgb(204, 203, 196);
}


/* Header Section */

/* Header Section End */


/* Navbar Section */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 12vh;
    backdrop-filter: blur(5px);

    .navbar-logo-section {
        flex-basis: 10%;

        #logo {
            width: 100%;
        }
    }

    .navbar-links {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-basis: 80%;

        a {
            text-decoration: none;
            color: rgb(204, 203, 196);
            font-size: 1.5rem;
        }
    }

    .place-holder {
        flex-basis: 10%;
    }
}

/* Navbar Section End */


/* Hero Section */
.hero-animation {
    height: 100%;
}

/* Hero Section End */


/* Scroll Down Animation Section */
.scroll-mouse {
    z-index: 999;
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 15px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-mouse:hover {
    opacity: 1;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Scroll Down Animation Section End */


/* About Section */
#about {
    color: rgb(204, 203, 196);

    .about-h1 {
        text-align: center;
        font-size: 4rem;
        margin-bottom: 8vh;
        word-spacing: 2px;
        letter-spacing: 1px;
    }

    .about-h3 {
        text-align: center;
        font-size: 1.5rem;
        word-spacing: 2px;
        letter-spacing: 1px;
        padding: 8vh;
    }

    .about-text {
        width: 75%;
        margin: 0 auto;
        text-align: center;
        font-size: 1.4rem;
        line-height: 40px;
    }
}

/* About Section End */


/* Mission&Vision Section */
#M-V {
    #voice_control {
        width: 140px;
        height: 95px;
        filter: grayscale(85%) drop-shadow(0px 0px 10px rgb(204, 203, 196));

    }

    &>div {
        padding: 2vw;
    }

    .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    img {
        height: 6vw;
        width: 6vw;
        filter: drop-shadow(0px 0px 10px rgb(204, 203, 196));
        margin: 30px;
    }

    .info-h1 {
        text-align: center;
        font-size: 2.5rem;
        word-spacing: 2px;
        letter-spacing: 1px;
    }

    .mt-3 {
        margin-top: 3vh;
    }

    .info-text {
        width: 80%;
        margin: 0 auto;
        text-align: center;
        font-size: 1.2rem;
        line-height: 30px;
    }
}

#our-ultimate-goal {
    height: 75vh;
    padding: 4vw;

    &>div {
        padding: 2vw;
    }

    .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    img {
        height: 6vw;
        width: 6vw;
        filter: drop-shadow(0px 0px 10px rgb(204, 203, 196));
        margin: 30px;
    }

    .info-h1 {
        text-align: center;
        font-size: 2.5rem;
        word-spacing: 2px;
        letter-spacing: 1px;
    }

    .info-text {
        width: 80%;
        margin: 0 auto;
        text-align: center;
        font-size: 1.2rem;
        line-height: 30px;
    }
}

.link {
    text-decoration: none;
    color: #cccbc4;
    font-weight: 600;
}

footer {
    height: 25vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 2px solid #cccbc4;

    .media-links {
        text-align: center;
    }

    .footer-links {
        text-align: center;

        a {
            text-decoration: none;
            color: #cccbc4;
        }
    }
}

/* Mission&Vision End */


@media screen and (width < 1170px) {
    #about {
        .about-h1 {
            margin-bottom: 3vh;
        }

        .about-text {
            width: 98%;
        }
    }

    #M-V,
    #our-ultimate-goal {
        .info-h1 {
            text-align: center;
            font-size: 2.5rem;
            word-spacing: 2px;
            letter-spacing: 1px;
        }

        .info-text {
            width: 90%;
            margin: 0 auto;
            font-size: 1.2rem;
            line-height: 25px;
        }

        img {
            height: 12vw;
            width: 12vw;
            filter: drop-shadow(0px 0px 10px rgb(204, 203, 196));
            margin: 30px;
        }
    }
}

@media screen and (width < 850px) {
    footer {
        flex-wrap: wrap;

        #right {
            flex-basis: 100%;
            text-align: center;
            padding-bottom: 50px;

        }
    }

    .navbar {

        .navbar-links a {
            font-size: 1rem;
        }

        .place-holder {
            display: none;
        }
    }

    #about {
        .about-h3 {
            text-align: center;
            font-size: 1.5rem;
            word-spacing: 2px;
            letter-spacing: 1px;
            padding: 5vh;
        }

        .about-h1 {
            text-align: center;
            font-size: 4rem;
            margin-bottom: 5vh;
            word-spacing: 2px;
            letter-spacing: 1px;
        }

        .about-text {

            font-size: 1.1rem;
            line-height: 30px;
        }
    }

    #M-V,
    #our-ultimate-goal {
        .info-h1 {
            text-align: center;
            font-size: 1.7rem;
            word-spacing: 2px;
            letter-spacing: 1px;
        }

        .info-text {
            width: 90%;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 25px;
        }

        img {
            height: 10vw;
            width: 10vw;
            filter: drop-shadow(0px 0px 10px rgb(204, 203, 196));
            margin: 30px;
        }
    }

    #about,
    #M-V,
    #our-ultimate-goal {
        height: 100%;
    }
}