/* --- Reset Default Browser agar rapi --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Styling Navbar Transparan --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.4); 
    padding: 15px 0;
    transition: 0.5s;
}

/* --- Styling Hero Section (Tempat Gambar Masjid) --- */
.hero-section {
    /* Gunakan background-attachment: scroll agar gambar ikut berjalan ke atas */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('foto_masjid.jpeg');
    
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    background-attachment: scroll; /* INI KUNCINYA: Gambar akan ikut tergeser saat di-scroll */
    
    height: 100vh; 
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Warna merah marun untuk kata "Jamik" */
.text-danger, .hero-section h1 span {
    color: #800000 !important; /* Diubah ke Maroon sesuai preferensi kamu */
}

/* Memperbaiki Dropdown agar muncul saat di-hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

html {
    scroll-behavior: smooth;
}
.hero-section h1{
    line-height: 1.5;
}

.hero-section .text-danger{
    display: inline-block;
    margin-top: 10px;
}