body {
	
    background-repeat: repeat;
    background-color: #ffffff;
    background-blend-mode: overlay; /* Mode blending antara gambar dan warna */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
	
}

.jumbotron {
    background-color: #f8f9fa;
    border-radius: 10px;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-nav .nav-link {
    font-weight: 600; /* atau 700 untuk lebih tebal */
}

/* Menu aktif lebih tebal */
    .navbar-nav .nav-link.active {
        font-weight: 700;
    }
	
	/* Warna merah untuk menu aktif */
.navbar-dark .navbar-nav .nav-link.active {
        color: #ff0000 !important;
        font-weight: bold;
    }
    
    /* Efek hover untuk semua menu */
    .navbar-dark .navbar-nav .nav-link:hover {
        color: rgba(255,255,255,0.8) !important;
    }
    
    /* Warna default menu tidak aktif */
    .navbar-dark .navbar-nav .nav-link {
        color: rgba(255,255,255,0.75);
    }

.nav-link.active {
    font-weight: bold;
    opacity: 1;
    transform: scale(1.05);
}

.card {
    
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
}

.card:hover {
    transform: none;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
}

footer {
    background-color: #343a40;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #ddd;
    text-decoration: underline;
}

.bi {
    margin-right: 8px;
}

/* Logo styling */
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
   transform: none !important;
}

/* Hero Slider Styles */
#heroCarousel {
    margin-top: -1px; /* Untuk menghilangkan gap antara navbar dan slider */
}

.carousel-item {
    height: 70vh;
    min-height: 400px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    bottom: 30%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 1.2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
    }
    
    .carousel-caption {
        bottom: 20%;
    }
    
    .carousel-caption h5 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
}

/* Kategori Styles */
.btn-group .btn {
    border-radius: 20px !important;
    margin: 0 5px 5px 0;
}

.badge.bg-primary {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
}

.category-filter {
    margin-bottom: 20px;
}

.category-filter .category-item {
    margin-right: 10px;
    margin-bottom: 10px;
}

.category-filter .category-item.active {
    background-color: #0d6efd;
    color: white;
}

/* Language Switcher */
.language-switcher {
    margin-left: auto;
    padding: 0 15px;
}

.language-switcher a {
    color: #333;
    text-decoration: none;
    padding: 5px;
}

.language-switcher a.active {
    font-weight: bold;
    color: #007bff;
}

.language-switcher a:hover {
    text-decoration: underline;
}

/* Hotel Recommendations */
.hotel-card {
    transition: transform 0.2s;
}
.hotel-card:hover {
    transform: translateY(-3px);
}
.hotel-price {
    font-weight: bold;
    color: #28a745;
}

.navbar {
    background: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
    color: #333 !important;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #0d6efd !important;
}
/* Warna teks menu saat mouse diarahkan */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #0d6efd !important;   /* kuning emas */
    transition: 0.3s;
}

/* Background halus saat hover */
.navbar-dark .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

/* Semua menu navbar normal (tidak bold) */
.navbar-nav .nav-link {
    font-weight: 400 !important; /* normal */
}

/* Menu aktif juga jangan bold */
.navbar-nav .nav-link.active {
    font-weight: 400 !important;
}

/* Hover juga tetap normal */
.navbar-nav .nav-link:hover {
    font-weight: 400 !important;
}

/* ===== TOP HEADER ===== */
.top-header {
    background: linear-gradient(90deg, #0d6efd, #dc3545); /* biru → merah */
    color: white;
    font-size: 14px;
    padding: 6px 0;
}

.top-header i {
    margin-right: 5px;
}

.top-header .top-right a {
    color: white;
    margin-left: 12px;
    font-size: 16px;
    transition: 0.3s;
}

.top-header .top-right a:hover {
    color: #ffd000;
}

.galeri-card {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 12px;
}

.galeri-card img {
    transition: transform 0.4s ease;
}

.galeri-card:hover img {
    transform: scale(1.08);
}

.galeri-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Paksa tinggi carousel mengikuti isi */
#galeriCarousel .carousel-item {
    height: auto !important;
}

#galeriCarousel .carousel-inner {
    height: auto !important;
}

/* Hilangkan jarak bawah row */
.galeri-section .row {
    margin-bottom: 0;
}

/* Hilangkan padding bawah section */
.galeri-section {
    padding-bottom: 0 !important;
}

#galeriCarousel .carousel-item {
    display: flex;
    align-items: center;
}

/* Hero Text - Positioned ABOVE the images */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.hero-text {
    margin-top : 80px;
}
.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 10px;
    color: #fff;
}

.hero-text p {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #f0f0f0;
}

/* Responsive Hero Text */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

