/* HEADER SECTION */
.header-section {
	position: relative;
	width: 100%;
	height: 120vh;
	background-color: var(--dark-brown);
	overflow: hidden;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.pahoda-title {
	position: relative;
	display: inline-block; /* supaya garisnya menyesuaikan lebar teks */
	padding-bottom: 20px; /* jarak teks ke garis */
	font-family: 'DM Serif Text', serif;

}

.pahoda-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 200%; /* lebih panjang dari teks */
	height: 1px;
	background-color: white; /* warna garis */
}

.quicksand-text {
    font-family: 'Quicksand', sans-serif;
}

/* card */
.card-floating {
	position: relative;
	margin-top: -150px; /* efek melayang */
	z-index: 5;
}

.card.card-overlay {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.card.card-overlay img {
	height: 300px; /* tinggi card */
	object-fit: cover;
}

.card.card-overlay .card-img-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
	padding: 1rem;
}

.card.card-overlay .card-title {
	font-size: 1.2rem;
	font-family: 'DM Serif Text', serif;
}

/* askara */
.gambar img {
	max-width: 250px;
	width: 100%;
	height: 330px;
}

.desk {
	width: 100%;
	max-width: 600px;
}

.ques {
	position: relative;
	display: inline-block; /* supaya garisnya menyesuaikan lebar teks */
	padding-bottom: 10px; /* jarak teks ke garis */
	font-family: 'DM Serif Text', serif;

}

.ques::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 220%; /* lebih panjang dari teks */
	height: 1px;
	background-color: black; /* warna garis */
}

.tombol {
	background-color: #611919;
	color: white;
	border-radius: 50px;
	padding: 10px 20px;
	text-decoration: none;
	display: inline-block;
	border: 2px solid #611919; /* supaya ukuran tombol stabil */
	transition: all 0.3s ease; /* efek smooth */
}

.tombol:hover {
	background-color: white;
	color: #611919;
	border: 2px solid #611919;
}

/* budaya */
.budaya-section .content-box {
	background-color: #611919;
	min-height: 100%;
}

.budaya-section .divider {
	border-left: 2px solid rgba(255, 255, 255, 0.5);
	height: 48vh;
}

.budaya-section p {
	line-height: 1.6;
}

.budaya-section .budaya-img {
	border-radius: 20px 0 0 20px; /* sudut kanan tidak dibulatkan */
	position: relative;
	z-index: 2;
	width: 100%; /* pastikan memenuhi kolom */
	height: 470px; /* supaya memenuhi tinggi kolom */
	object-fit: cover;
}

.budaya-section .col-lg-4 {
	padding: 0; /* hilangkan semua padding kanan */
	margin: 0;
}

.budaya-section .col-lg-8 {
	padding-right: 40px; /* geser konten kiri agar gambar terlihat overlap */
}

.budaya-section .btn {
	font-weight: bold;
	transition: all 0.3s ease;
}

.budaya-section .btn:hover {
	background-color: #611919;
	color: white;
	border: 2px solid white;
}

/* galeri */
.galeri-section .carousel-inner img {
	height: 310px;
	width: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.galeri-section .carousel-inner img {
		height: 200px;
	}
}

.galeri-title {
    font-family: 'DM Serif display', serif;
	font-size: 3rem;
}

.galeri-section .carousel-control-prev,
.galeri-section .carousel-control-next {
	width: 40px; /* ukuran tombol */
	height: 40px;
	background-color: #611919; /* warna maroon */
	border-radius: 50%; /* bikin bulat */
	top: 50%;
	transform: translateY(-50%);
	opacity: 1; /* biar tidak transparan */
}

.galeri-section .carousel-control-prev-icon,
.galeri-section .carousel-control-next-icon {
	background-size: 60% 60%; /* kecilkan icon panah */
}

.galeri-section .carousel-control-prev {
	left: 10px; /* jarak dari kiri */
}

.galeri-section .carousel-control-next {
	right: 10px; /* jarak dari kanan */
}

.kol-kiri {
	display: flex;
	flex-direction: column;
	gap: 0.75rem; /* sama dengan g-3 Bootstrap */
	height: 100%;
}

.kol-kiri img {
	flex: 1; /* bagi tinggi kolom sama rata */
	height: calc(50% - 0.375rem); /* setengah tinggi minus setengah gap */
	object-fit: cover;
	width: 100%;
}

.btn-maroon {
	background-color: #611919;
	color: #fff;
	font-weight: bold;
}
.btn-maroon:hover {
	background-color: #fff;
	color: #611919;
	border: 2px solid #611919;
}

.ornamen-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ornamen-line {
    flex: 1;
    height: 2px;
    background-color: #800000; /* Merah marun */
    border: none;
}

.ornamen-img {
    height: 75px; /* Atur sesuai gambar ornamen */
}


/* teka-teki */
.badge-batak {
	background-color: #800000;
	/* maroon */
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-weight: 500;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.badge-batak:hover {
	background-color: #a52a2a;
	/* maroon lebih terang saat hover */
}

a.badge-batak {
        text-decoration: none;
        color: white; /* mengikuti warna teks */
    }
    a.badge-batak:hover {
        opacity: 0.8; /* efek hover tanpa garis bawah */
    }