/* Custom CSS Tambahan */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}
.navbar-brand span {
    font-weight: bold;
    color: #0d6efd;
}

.hero-section {
    position: relative;
    /* Pastikan foldernya 'image' dan ekstensinya '.jpg' */
    background-image: url('../image/training.jpg'); 
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

/* Overlay gelap di atas gambar untuk keterbacaan teks */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}


.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}


.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px; 
}

.brand-logo {
    height: 50px; 
    width: auto;  
    display: block;
}

.brand-text {
    font-size: 24px; 
    font-weight: bold;
    line-height: 1;
    margin: 0;
}