/* Setting Logo */
@media (min-width: 1200px) {
	.rd-navbar-corporate.rd-navbar-static .rd-navbar-brand img {
		max-width: 100px;
		max-height: 120px;
	}
}

/* Shadow title */
#highlighted-text {
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* bandage merah */
.best-seller-badge {
    position: absolute;
    top: 0;
    left: 0; /* Menempel ke tepi kiri */
    background-color: #dc3545;
    color: white;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0 3px 3px 0; /* Agar hanya kanan yang membulat */
}

/* Kotak judul biru full width */
.car-title {
    background-color: #0d6efd; /* Warna bg-primary */
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 0; /* Menghilangkan border radius agar full */
    width: 100%;
    display: block;
}

.car-title h6,
.car-title h5 {
    color: white !important;
}

/* Bagian Tour Activity */

/* Header Title */
.tour-activity-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Grid Container */
.tour-activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px; /* Mengurangi jarak antar gambar */
}

/* Card Style */
.tour-activity-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
}

/* Image Background */
.tour-activity-img {
    width: 100%;
    height: 400px; /* Menambah tinggi agar lebih portrait */
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

/* Zoom Effect on Hover */
.tour-activity-item:hover .tour-activity-img {
    transform: scale(1.1);
}

/* Tour Info */
.tour-activity-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white; /* Semua teks jadi putih */
    text-align: center;
}

/* Button Style */
.tour-activity-btn {
    background-color: #ff9800;
    border: none;
    padding: 10px 15px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.tour-activity-btn:hover {
    background-color: #e68900;
}

.tour-activity-info h3 {
    color: white !important;
}

/* Split gambar */

.split-tour-activity-img {
    width: 100%;
    height: 400px;
    background: 
        url('/BaliDadDriver/assets/images/rafting.jpg') left center / 50% 100% no-repeat, 
        url('/BaliDadDriver/assets/images/atv.jpg') right center / 50% 100% no-repeat;
    display: flex;
}

/* .tour-activity-img.split {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.tour-activity-img.split::before,
.tour-activity-img.split::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
} */

/* .tour-activity-img.split::before {
    left: 0;
    background-image: url('~/BaliDadDriver/assets/images/rafting.jpg');
    background-position: left center;
}

.tour-activity-img.split::after {
    right: 0;
    background-image: url('~/BaliDadDriver/assets/images/atv.jpg');
    background-position: right center;
} */

.tour-activity-img.split:hover::before {
    height: 55%;
}

.tour-activity-img.split:hover::after {
    height: 45%;
}


/* VIDEO SETTING UI */
.mute-button {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	border: none;
	padding: 8px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 16px;
}

.mute-button:hover {
	background: rgba(0, 0, 0, 0.8);
}

/* FONT DETAIL */
.tour-container {
	position: relative;
	display: inline-block;
	width: 100%;
}

.tour-image {
	width: 100%;
	height: auto;
	border-radius: 10px; /* Membuat gambar lebih stylish */
}

.tour-price {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
}


