@font-face {
    font-family: 'Mosk';
    src: url('/assets/fonts/Mosk_Typeface/mosk/Mosk\ Semi-Bold\ 600.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Makmur';
    src: url('/assets/fonts/Makmur_Typeface/makmure.ttf') format('woff2');
    font-weight: bold;
}


.title {
    font-family: 'Makmur', sans-serif;
    color: #273b09
}

.text {
    color: #273b09
}

.page-title {
    font-size: 2.5rem;
}

body {
    font-family: 'Mosk', sans-serif;
    background-color: white;
    color: white;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0.3rem;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: white;
}

.navbar-nav .nav-link:hover {
    color: #ffffff;
}

.navbar-nav .nav-link.active {
    color: #ff6600;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
    border: none;
}


#navbarNav {
    margin-left: 0;
}


.navbar-nav .nav-item {
    padding: 0.5rem 0;
}

.logo {
    width: 40px;
    height: auto;
}

.hero-section {
    position: relative;
    overflow: hidden;
    height: 90vh;
    width: 100%;
    color: #F5F5DC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    background: url(/assets/gallery/nuchikaenabuka-image54.jpg);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    align-items: center;
    z-index: 0;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    margin-left: 20%;
    margin-right: 20%;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
}


.hero-title,
.hero-subtitle {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: white;
}

/* Custom Smooth Animation */
@keyframes smoothFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.smooth-animate {
    animation: smoothFadeIn 1.5s ease-out forwards;
    opacity: 0;
    /* Start hidden */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}


/* How It Started Section */
.how-it-started h2 {
    font-weight: bold;
    color: #333;
}

/* How It's Going Section */
.how-its-going h2 {
    font-weight: bold;
    color: #333;
}

/* Future Section */


.future h2 {
    font-weight: bold;
    color: #333;
}

/* Video Container */
.video-container {
    margin-top: 30px;
    text-align: center;
}

/* Footer Section */
footer p {
    margin: 0;
}