/* ========== Reset CSS untuk konsistensi ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #f8f9fa;
    color: #333;
}

/* ========== Navbar ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2a4d2f; 
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.25rem;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.navbar-nav .nav-item {
    margin-left: 20px;
}

.nav-link {
    color: #2a4d2f !important;
}

.nav-link:hover {
    color: #2a4d2f !important;
}

.btn-primary {
    margin-left: 10px;
    white-space: nowrap;
    background-color: #ffffff; 
    border-color: #2a4d2f;
    color: #2a4d2f; 
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: #1b3d29; 
    border-color: #1b3d29; 
    color: white;
}

.btn-primary:active, .btn-primary:focus {
    background-color: #1b3d29 !important;
    border-color: #1b3d29 !important;
    color: white !important;
}

/* ========== Video Header Full Width ========== */
.video-container {
    position: relative;
    width: 100vw;
    max-height: 400px;
    overflow: hidden;
}

.video-header {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ========== Marquee Text ========== */
.marquee-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 0;
}

.marquee-text {
    display: inline-block;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    animation: marquee-scroll 10s linear infinite;
}

@keyframes marquee-scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* ========== Footer ========== */
.footer {
    background-color: #2a4d2f;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-logo-img {
    height: 40px;
    margin-right: 10px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    font-size: 30px;
    color: white;
    transition: color 0.3s ease-in-out;
}

.social-icon:hover {
    color: #e8f5e9;
}

.footer-jargon {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #e8f5e9;
}
