* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333333;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar-wisata {
  background: linear-gradient(90deg,#7A0C0C,#8B1212,#7A0C0C);
  padding:18px 0;
  transition:.3s;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.navbar-wisata.scrolled {
  background-color: #5E0909;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}

.navbar-wisata .navbar-brand {
  color: #FFD700;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-wisata .user-toggle {
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 30px;
  transition: .25s;
}

.navbar-wisata .user-toggle:hover {
  background: rgba(255,255,255,.1);
}

.navbar-wisata .user-toggle::after {
  color: #FFE8A3;
  margin-left: 4px;
}

.user-avatar-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #F0AD4E);
  color: #7A0C0C;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  flex-shrink: 0;
}

.user-avatar-nav-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
  flex-shrink: 0;
}

.user-name-nav {
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
}

.navbar-wisata .dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,.18);
  padding: 10px;
  margin-top: 14px;
  min-width: 210px;
  animation: navDropIn .18s ease;
}

@keyframes navDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-user-info {
  padding: 10px 14px 12px;
  color: #7A0C0C;
}

.navbar-wisata .dropdown-item {
  border-radius: 8px;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 14px;
  transition: .2s;
}

.navbar-wisata .dropdown-item:hover {
  background: #FFF3D6;
}

.navbar-wisata .dropdown-item.text-danger:hover {
  background: #fdecea;
}


.brand-logo{
    width:45px;
    height:45px;
    background:#FFD700;
    color:#7A0C0C;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    box-shadow:0 5px 15px rgba(255,215,0,.35);
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.brand-title{
    font-size:22px;
    font-weight:700;
    color:#FFD700;
}

.brand-subtitle{
    font-size:11px;
    color:#FFE8A3;
    letter-spacing:1px;
}

.navbar-wisata .navbar-brand i {
  font-size: 18px;
}

.navbar-wisata .nav-link {
  color: rgba(255,255,255,.9);
  font-weight:600;
  font-size:15px;
  letter-spacing:.5px;
  text-transform:uppercase;
  margin-left:35px;
  position:relative;
  padding:8px 14px;
  border-radius:30px;
  transition:.3s;
}

.navbar-wisata .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height:3px;
  border-radius:50px;
  background-color: #FFD700;
  transition: width 0.25s ease;
}

.navbar-wisata .nav-link:hover,
.navbar-wisata .nav-link.active {
  color:#FFD700;
  background:rgba(255,255,255,.08);
  transform:translateY(-2px);
}

.navbar-wisata .nav-link:hover::after,
.navbar-wisata .nav-link.active::after {
  width: 100%;
}

.navbar-wisata .navbar-toggler {
  border: none;
  transition: transform 0.3s ease;
}

.navbar-wisata .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-wisata .navbar-toggler[aria-expanded="true"] {
  transform: rotate(90deg);
}

/* ===== HERO (halaman utama) ===== */
.hero{
    position:relative;
    padding:140px 20px;
    text-align:center;

    background:
    linear-gradient(rgba(255,243,214,.82),
    rgba(246,196,83,.78)),
    url("../images/ampera.jpg");

    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:52px;
    font-weight:700;
    color:#8B1111;
    margin-bottom:20px;
    line-height:1.3;
}

.hero p{
    max-width:760px;
    margin:0 auto 35px;
    font-size:20px;
    color:#7a5420;
    line-height:1.8;
}

.hero-content{
    max-width:800px;
    margin:auto;
}

.hero-badge{
    display:inline-block;
    background:#ffffffcc;
    color:#8B0000;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero{
    position:relative;
    padding:160px 20px;
    
}



.destinasi-banner
.hero-button{
    display:inline-block;
    background:#8B0000;
    color:white;
    padding:15px 38px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.hero-button:hover{
    background:#6d0000;
    color:white;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(139,0,0,.25);
}

.btn-hero{
    display:inline-block;
    background:#8B1111;
    color:#FFD54F;
    padding:15px 36px;
    border-radius:50px;
    font-weight:bold;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.btn-hero:hover{
    background:#FFD54F;
    color:#8B1111;
    transform:translateY(-4px);
}

@keyframes munculNaik {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tentang {
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.tentang h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #8B0000;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.tentang h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #DAA520;
  transform: translateX(-50%);
}

/* ===== DESTINASI (kartu di halaman utama) ===== */
.destinasi {
  background-color: #FFF0CC;
  padding: 60px 40px;
}

.destinasi h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #8B0000;
}

.kartu-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  margin-top:25px;
}

.kartu {
  background: #fff;
  border: none;
  border-radius: 18px;
  flex: 0 0 300px;
  width: 300px;
  padding: 18px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.kartu p {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 72px;
}

.kartu .btn-pink {
  margin-top: auto;
}

.kartu:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,.18);
}

.kartu img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
  transition: .3s ease;
}

.kartu:hover img{
    transform: scale(1.05);
}

.kartu h3{
    font-size:30px;
    font-weight:700;
    color:#7A0C0C;
    margin-bottom:10px;
}

.kartu p{
    color:#666;
    line-height:1.7;
}

.kartu strong{
    color:#198754;
    font-size:17px;
}

.kartu:hover img {
  transform: scale(1.08);
}

/* ===== BANNER HALAMAN DESTINASI ===== */
.destinasi-banner {
  background: linear-gradient(135deg, #8B0000 0%, #B22222 50%, #6B0F0F 100%);
  padding: 50px 20px;
  color: #ffffff;
}

/* ===== PENCARIAN (halaman destinasi) ===== */
.filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.input-cari {
  flex: 1;
  min-width: 220px;
  padding: 10px 16px;
  border: 1px solid #EAD08C;
  border-radius: 20px;
  font-size: 14px;
}

.input-cari:focus {
  outline: none;
  border-color: #B22222;
  box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.15);
}

.kategori-btn-group {
  display: flex;
  gap: 10px;
}

.btn-kategori {
  border: 1px solid #B22222;
  background-color: #ffffff;
  color: #B22222;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-kategori.aktif {
  background-color: #B22222;
  color: #FFD700;
}

.btn-detail {
  background-color: #B22222;
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.15s ease;
}

.btn-detail:hover {
  background-color: #8B0000;
}

.btn-detail:active {
  transform: scale(0.96);
}

.pesan-kosong {
  text-align: center;
  color: #8B0000;
  padding: 30px 0;
  width: 100%;
}

.modal-destinasi .modal-header {
  background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
  color: #FFD700;
  border: none;
}

.modal-destinasi .btn-close {
  filter: invert(1);
}

.modal-foto {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.list-detail {
  list-style: none;
  padding-left: 0;
  margin-top: 14px;
}

.list-detail li {
  padding: 6px 0;
  border-bottom: 1px solid #F0DDA8;
  color: #555555;
  font-size: 14px;
}

/* ===== REKOMENDASI ===== */
.rekomendasi-destinasi {
  padding: 50px 20px;
}

.rekomendasi-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.rekomendasi-card {
  min-width: 180px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.rekomendasi-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.rekomendasi-info {
  padding: 10px;
}

.rekomendasi-info h4 {
  font-size: 14px;
  color: #7A1010;
  margin-bottom: 2px;
}

.rekomendasi-info span {
  color: #B8860B;
  font-weight: bold;
  font-size: 13px;
}

/* ===== KONTAK ===== */
.kontak {
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.kontak h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #8B0000;
}

.kontak form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.kontak label {
  font-weight: bold;
  margin-bottom: 4px;
  display: block;
  color: #7A1010;
}

.kontak input,
.kontak textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #EAD08C;
  border-radius: 4px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.kontak input:focus,
.kontak textarea:focus {
  outline: none;
  border-color: #B22222;
  box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.15);
}

.kontak button {
  background-color: #B22222;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
}

.kontak button:hover {
  background-color: #8B0000;
  box-shadow: 0 6px 14px rgba(178, 34, 34, 0.35);
}

.kontak button:active {
  background-color: #6B0F0F;
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(107, 15, 15, 0.4);
}

.footer-wisata {
  background: linear-gradient(135deg, #FFF3D6 0%, #FCE1A8 50%, #F6C453 100%);
  padding: 50px 0 24px;
  transition: background 0.4s ease;
}

.footer-col h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #7A1010;
  letter-spacing: 0.3px;
}

.footer-col p {
  color: #8a4a1a;
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #8a4a1a;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
  color: #8B0000;
  padding-left: 6px;
}

.footer-copy {
  text-align: center;
  border-top: 1px solid rgba(139, 0, 0, 0.2);
  margin-top: 34px;
  padding-top: 16px;
  color: #8a5a1a;
  font-size: 13px;
}

/* ===== HALAMAN TENTANG ===== */
.tentang-hero {
  background: linear-gradient(135deg, #FFF3D6 0%, #FCE1A8 50%, #F6C453 100%);
  padding: 70px 20px 50px;
}

.tentang-hero h1 {
  color: #7A1010;
  font-weight: bold;
  margin-bottom: 16px;
}

.tentang-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #8a4a1a;
  font-size: 16px;
  line-height: 1.7;
}

.tentang-kota {
  padding: 60px 20px;
}

.tentang-kota h2 {
  color: #8B0000;
  font-weight: bold;
  margin-bottom: 18px;
}

.tentang-kota p {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.tentang-img {
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.15);
}

.tentang-keunggulan {
  background-color: #FFF8E7;
  padding: 60px 20px;
}

.tentang-keunggulan h2 {
  color: #8B0000;
  font-weight: bold;
  margin-bottom: 36px;
}

.keunggulan-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.keunggulan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(178, 34, 34, 0.18);
}

.keunggulan-card h3 {
  color: #B22222;
  font-size: 18px;
  margin-bottom: 10px;
}

.keunggulan-card p {
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.tentang-galeri {
  padding: 60px 20px;
}

.tentang-galeri h2 {
  color: #8B0000;
  font-weight: bold;
  margin-bottom: 30px;
}

.galeri-img {
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.galeri-img:hover {
  transform: scale(1.05);
}

.tentang-cta {
  background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
  padding: 60px 20px;
  color: #ffffff;
}

.tentang-cta h2 {
  font-weight: bold;
  margin-bottom: 12px;
  color: #FFD700;
}

.tentang-cta p {
  margin-bottom: 24px;
  opacity: 0.9;
}

.btn-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #7A1010;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.15s ease;
}

.btn-cta:hover {
  background-color: #FFE9A8;
  transform: translateY(-2px);
}

.btn-cta:active {
  transform: scale(0.96);
}

/* ===== HALAMAN KONTAK ===== */
.kontak-hero {
  background: linear-gradient(135deg, #FFF3D6 0%, #FCE1A8 50%, #F6C453 100%);
  padding: 70px 20px 50px;
  text-align: center;
}

.kontak-hero h1 {
  color: #7A1010;
  font-weight: bold;
  margin-bottom: 12px;
}

.kontak-hero p {
  color: #8a4a1a;
}

.kontak-utama {
  padding: 60px 20px;
}

.kontak-utama h2 {
  color: #8B0000;
  font-weight: bold;
  margin-bottom: 20px;
}

.opsional {
  font-weight: normal;
  font-size: 12px;
  color: #a0a0a0;
}

.kontak-form .form-control {
  border: 1px solid #EAD08C;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.kontak-form .form-control:focus {
  outline: none;
  border-color: #B22222;
  box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.15);
}

.btn-kirim {
  background-color: #B22222;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
}

.btn-kirim:hover {
  background-color: #8B0000;
  box-shadow: 0 6px 14px rgba(178, 34, 34, 0.35);
}

.btn-kirim:active {
  background-color: #6B0F0F;
  transform: scale(0.96);
}

.info-list {
  list-style: none;
  padding-left: 0;
}

.info-list li {
  margin-bottom: 16px;
}

.info-list strong {
  color: #7A1010;
  display: block;
  margin-bottom: 2px;
}

.info-list p {
  color: #555555;
  margin: 0;
}

.sosial-list {
  display: flex;
  gap: 14px;
}

.sosial-list a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFF3D6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.sosial-list a:hover {
  background-color: #B22222;
  transform: translateY(-3px);
}

.sosial-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jam-table {
  width: 100%;
  border-collapse: collapse;
}

.jam-table td {
  padding: 8px 0;
  color: #555555;
  border-bottom: 1px solid #F0DDA8;
}

.jam-table .tutup {
  color: #c0392b;
  font-weight: bold;
}

.kontak-peta {
  background-color: #FFF8E7;
  padding: 60px 20px;
}

.kontak-peta h2 {
  color: #8B0000;
  font-weight: bold;
  margin-bottom: 24px;
}

.peta-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.15);
}

.kontak-faq {
  padding: 60px 20px;
}

.kontak-faq h2 {
  color: #8B0000;
  font-weight: bold;
  margin-bottom: 30px;
}

.accordion-button:not(.collapsed) {
  background-color: #FFF3D6;
  color: #7A1010;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.15);
}

/* ===== POPUP FOTO TAMAN (kalau masih dipakai di halaman lain) ===== */
.popup-foto {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 248, 231, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.popup-foto.tampil {
  display: flex;
  opacity: 1;
}

.popup-isi {
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.popup-foto.tampil .popup-isi {
  transform: scale(1);
}

.popup-isi img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.popup-isi p {
  margin-top: 12px;
  font-weight: bold;
  color: #7A1010;
  font-size: 18px;
}

.btn-pink {
    background-color: #B22222;
    border-color: #B22222;
    color: #FFD700;
    transition: all 0.3s ease;
}
.btn-pink:hover {
    background-color: #8B0000;
    border-color: #8B0000;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.3);
}

.text-pink {
    color: #B22222;
}

.pengalaman-wisata {
  padding: 60px 20px;
  background-color: #FFF8E7;
}

.pengalaman-wisata h2 {
  color: #8B0000;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 40px;
}

.pengalaman-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pengalaman-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  width: 280px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pengalaman-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(178, 34, 34, 0.18);
}

.pengalaman-card img {
  width: 100%;
  max-width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.pengalaman-isi {
  padding: 20px;
}

.pengalaman-isi h3 {
  color: #B22222;
  font-size: 18px;
  margin-bottom: 10px;
}

.pengalaman-isi p {
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ===== DETAIL DESTINASI ===== */
.btn-outline-tema {
  border: 1px solid #B22222;
  color: #B22222;
  background-color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-tema:hover {
  background-color: #B22222;
  color: #ffffff;
}

.btn-tema {
  border: none;
  background-color: #B22222;
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-tema:hover {
  background-color: #8B0000;
  color: #ffffff;
}

.btn-hapus-wrapper {
  text-align: center;
  margin-top: 24px;
}

.btn-hapus {
  background-color: #ffffff;
  color: #B22222;
  border: 1px solid #B22222;
  padding: 10px 28px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-hapus:hover {
  background-color: #B22222;
  color: #ffffff;
}


/* ===== DETAIL DESTINASI ===== */
.btn-outline-tema {
  border: 1px solid #B22222;
  color: #B22222;
  background-color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-tema:hover {
  background-color: #B22222;
  color: #ffffff;
}

.btn-tema {
  border: none;
  background-color: #B22222;
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-tema:hover {
  background-color: #8B0000;
  color: #ffffff;
}

.btn-hapus-wrapper {
  text-align: center;
  margin-top: 24px;
}

.btn-hapus {
  background-color: #ffffff;
  color: #B22222;
  border: 1px solid #B22222;
  padding: 10px 28px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-hapus:hover {
  background-color: #B22222;
  color: #ffffff;
}

.fasilitas-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.fasilitas-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px;
    border-radius: 10px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.fasilitas-item:hover {
    background-color: #fff8e6;
    transform: translateY(-3px);
}

.fasilitas-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background-color: #FFF3D6;
    color: #8B0000;
    font-size: 1.4rem;
    margin-bottom: 10px;
    border: 1px solid #FFE29A;
    transition: all 0.2s ease;
}

.fasilitas-item:hover .fasilitas-icon {
    background-color: #8B0000;
    color: #FFD700;
    border-color: #8B0000;
}

/* ===== FORM PENCARIAN DESTINASI ===== */
.input-cari-tema {
  border: 1px solid #EAD08C;
  padding: 10px 16px;
  font-size: 14px;
}

.input-cari-tema:focus {
  outline: none;
  border-color: #B22222;
  box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.15);
  z-index: 2;
}

.btn-cari-tema {
  background-color: #B22222;
  color: #ffffff;
  border: 1px solid #B22222;
  padding: 10px 24px;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.btn-cari-tema:hover {
  background-color: #8B0000;
  color: #ffffff;
}

/* ===== PAGINATION ===== */
.pagination-tema .pagination {
  gap: 6px;
}

.pagination-tema .page-link {
  color: #B22222;
  border: 1px solid #EAD08C;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination-tema .page-link:hover {
  background-color: #FFF3D6;
  border-color: #B22222;
  color: #8B0000;
}

.pagination-tema .page-item.active .page-link {
  background-color: #B22222;
  border-color: #B22222;
  color: #FFD700;
}

.pagination-tema .page-item.disabled .page-link {
  color: #c9b28a;
  background-color: #ffffff;
  border-color: #EAD08C;
}

:root {
    --maroon: #6b0f1a;
    --maroon-dark: #4d0a12;
    --gold: #f0b429;
    --gold-dark: #d99a1b;
}

.detail-ulasan {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(240, 180, 41, 0.06), rgba(107, 15, 26, 0.04));
    border-radius: 16px;
}

.ulasan-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    border: 1px solid rgba(107, 15, 26, 0.08);
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 14px rgba(107, 15, 26, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ulasan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(107, 15, 26, 0.12);
}

.ulasan-quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.35;
}

.ulasan-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
}

.ulasan-stars i {
    font-size: 0.85rem;
    color: var(--gold);
    margin-right: 1px;
}

.ulasan-stars i.bi-star {
    color: #dcdcdc;
}

.ulasan-komentar {
    color: #444;
    font-style: italic;
    line-height: 1.6;
}

.text-maroon {
    color: var(--maroon);
}

/* Tombol utama (Tambah User) */
.btn-gold {
    background-color: var(--gold);
    color: #3a2600;
    border: none;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.btn-gold:hover {
    background-color: var(--gold-dark);
    color: #3a2600;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Tombol Edit */
.btn-outline-maroon {
    color: var(--maroon);
    border: 1px solid var(--maroon);
    transition: all 0.2s ease-in-out;
}
.btn-outline-maroon:hover {
    background-color: var(--maroon);
    color: #fff;
}

/* Card pembungkus tabel */
.user-card {
    border-radius: 12px;
    overflow: hidden;
}

/* Header tabel */
.user-table thead tr {
    background-color: var(--maroon);
}
.user-table thead th {
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 14px 16px;
}
.user-table tbody td {
    padding: 14px 16px;
    border-color: #f0f0f0;
}

/* Efek hover baris tabel */
.user-table tbody tr {
    transition: background-color 0.15s ease-in-out;
}
.user-table tbody tr:hover {
    background-color: #fff8e7; /* krem lembut, senada kuning keemasan */
}

/* Avatar inisial nama */
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--gold);
    color: #3a2600;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Badge Role */
.role-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.role-admin {
    background-color: var(--maroon);
    color: #fff;
}
.role-user {
    background-color: #e9ecef;
    color: #495057;
}

/* Card form */
.form-card {
    border: none;
    border-radius: 14px;
    border-top: 4px solid var(--gold);
    transition: box-shadow 0.2s ease-in-out;
}
.form-card:hover {
    box-shadow: 0 8px 24px rgba(107, 15, 26, 0.12) !important;
}

.form-title {
    color: var(--maroon);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
.form-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

/* Input & select bertema */
.themed-input {
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 10px 14px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.themed-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 6px;
}

:root {
    --maroon: #7a0c0c;
    --maroon-dark: #5c0909;
    --gold: #f4b942;
    --gold-light: #f9d98a;
}

/* Badge kategori */
.badge-atraksi {
    background-color: var(--maroon);
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: .3px;
}

/* Card atraksi */
.card-atraksi {
    border: none;
    border-top: 4px solid var(--gold);
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card-atraksi:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(122, 12, 12, 0.15) !important;
}

.card-atraksi .harga {
    color: var(--maroon);
    font-size: 1.1rem;
}

/* Tombol tema */
.btn-maroon {
    background-color: var(--maroon);
    border-color: var(--maroon);
    color: #fff;
    transition: background-color .2s ease;
}
.btn-maroon:hover {
    background-color: var(--maroon-dark);
    color: var(--gold-light);
}

.btn-outline-maroon {
    color: var(--maroon);
    border-color: var(--maroon);
}
.btn-outline-maroon:hover {
    background-color: var(--maroon);
    color: #fff;
}

.empty-state {
    padding: 60px 20px;
    color: #999;
}
.empty-state i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* ======================================================
   TEMA PALEMBANG — MAROON & GOLD
   Prefix "pb-" agar tidak bentrok dengan class lain.
====================================================== */

.pb-wrapper {
    --pb-maroon: #7a0d0d;
    --pb-maroon-dark: #5c0909;
    --pb-gold: #f4c542;
    --pb-gold-deep: #d4a017;
    --pb-cream: #fffaf0;
    --pb-ink: #2b1a1a;
    --pb-line: rgba(122, 13, 13, 0.12);

    background: linear-gradient(180deg, #fdf6e8 0%, #f8f9fa 260px);
    padding-top: 48px;
    padding-bottom: 70px;
    min-height: 85vh;
}

/* ---------- BREADCRUMB ---------- */
.pb-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(122, 13, 13, 0.08);
    font-size: 13.5px;
    margin-bottom: 28px;
}
.pb-breadcrumb a {
    color: var(--pb-maroon);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.pb-breadcrumb a:hover { color: var(--pb-gold-deep); }
.pb-sep { color: #c9b8a8; }
.pb-current { color: var(--pb-gold-deep); font-weight: 700; }

/* ---------- FORM CARD ---------- */
.pb-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(122, 13, 13, 0.07);
    border: none;
    animation: pb-fade-up 0.5s ease;
}

@keyframes pb-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.pb-card-header {
    background: #fffdf7;
    padding: 2.4rem 2.6rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

/* aksen garis emas tipis di bawah header */
.pb-card-header::after {
    content: '';
    position: absolute;
    left: 2.6rem; right: 2.6rem; bottom: 0;
    height: 1px;
    background: rgba(122,13,13,0.08);
}

.pb-icon {
    width: 48px;
    height: 48px;
    flex: none;
    background: rgba(244,197,66,0.16);
    color: var(--pb-maroon);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: none;
}

.pb-card-header h2 {
    color: var(--pb-maroon, #7a0d0d);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.pb-card-header p {
    color: #a08d78;
    font-size: 0.85rem;
    margin: 0;
}

.pb-card-body { padding: 1.8rem 2.6rem 2.6rem; }

/* ---------- ALERT ERROR ---------- */
.pb-alert {
    background-color: #fdecea;
    border: 1px solid #f3c2be;
    color: var(--pb-maroon);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pb-alert i { color: var(--pb-gold-deep); }

/* ---------- FORM FIELDS ---------- */
.pb-group { margin-bottom: 1.2rem; }

.pb-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--pb-maroon);
    margin-bottom: 7px;
}
.pb-group label i { color: var(--pb-gold-deep); font-size: 0.82rem; }

.pb-input {
    width: 100%;
    border: 1.5px solid #e5d9c8;
    border-radius: 10px;
    padding: 0.7rem 0.95rem;
    font-size: 0.95rem;
    color: var(--pb-ink);
    background-color: #fdfaf3;
    transition: all 0.25s ease;
}

.pb-input:hover {
    border-color: #e0c07a;
}

.pb-input:focus {
    outline: none;
    border-color: var(--pb-gold-deep);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(244, 197, 66, 0.25);
}

.pb-input.is-invalid {
    border-color: #c0392b;
    background-color: #fdf1f0;
}

.pb-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a0d0d' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.4rem;
}

.pb-hint {
    font-size: 0.78rem;
    color: #a08d78;
    margin-top: 5px;
}

.pb-error {
    font-size: 0.8rem;
    color: #c0392b;
    margin-top: 5px;
    font-weight: 600;
}

.pb-divider {
    border: none;
    border-top: 1px dashed #e5d9c8;
    margin: 1.6rem 0;
}

/* ---------- ACTIONS ---------- */
.pb-actions {
    display: flex;
    gap: 12px;
}

.pb-btn-save {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--pb-gold), var(--pb-gold-deep));
    color: var(--pb-maroon-dark);
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.9rem;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(212, 160, 23, 0.35);
    transition: all 0.25s ease;
}
.pb-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(212, 160, 23, 0.45);
}
.pb-btn-save:active { transform: translateY(0); }

.pb-btn-cancel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--pb-maroon);
    border: 1.5px solid var(--pb-maroon);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.7rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.pb-btn-cancel:hover {
    background-color: var(--pb-maroon);
    color: #ffffff;
}

@media (max-width: 576px) {
    .pb-card-header { flex-direction: column; text-align: center; }
    .pb-actions { flex-direction: column-reverse; }
    .pb-btn-save, .pb-btn-cancel { width: 100%; justify-content: center; }
}

/* ======================================
   DESTINATION CREATE
====================================== */

.destination-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(122,12,12,.12);
    transition:.3s;
}

.destination-card:hover{
    transform:translateY(-5px);
    box-shadow:0 24px 50px rgba(122,12,12,.18);
}

.destination-header{

    background:linear-gradient(135deg,#7A0C0C,#5d0808);

    padding:28px;

    text-align:center;

    border-bottom:4px solid #F4C542;

}

.destination-header h2{

    color:white;

    font-weight:700;

    margin:0;

}

.destination-header p{

    color:rgba(255,255,255,.8);

    margin-top:8px;

}

.themed-input{

    border-radius:12px;

    border:1px solid #e4d7bc;

    padding:12px 16px;

    transition:.25s;

}

.themed-input:focus{

    border-color:#F4C542;

    box-shadow:0 0 0 4px rgba(244,197,66,.25);

}

.btn-gold{

    background:#F4C542;

    border:none;

    color:#5d0808;

    font-weight:700;

    border-radius:10px;

    padding:10px 24px;

    transition:.25s;

}

.btn-gold:hover{

    background:#d8a11a;

    transform:translateY(-2px);

}

.btn-outline-maroon{

    border:2px solid #7A0C0C;

    color:#7A0C0C;

    border-radius:10px;

    padding:10px 24px;

    transition:.25s;

}

.btn-outline-maroon:hover{

    background:#7A0C0C;

    color:white;

}

.form-label{

    font-weight:700;

    color:#7A0C0C;

}

.destination-card textarea{

    resize:none;

}

/* ===== STATISTIK ===== */

.statistik{
    background:#fff;
    padding:70px 0;
}

.stat-box{
    background:#ffffff;
    border-radius:15px;
    padding:35px 20px;
    border:1px solid #f2d07a;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(122,12,12,.18);
}

.stat-box h2{
    font-size:46px;
    font-weight:700;
    color:#8B0000;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    color:#666;
    margin:0;
}

/*==========================
 HERO DESTINASI
==========================*/

.destinasi-banner{
    background:linear-gradient(135deg,#8B0000,#B71C1C);
    padding:90px 0;
    color:white;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#FFD54F;
    padding:8px 20px;
    border-radius:30px;
    font-size:15px;
    margin-bottom:18px;
    font-weight:600;
}

.hero-title{
    font-size:54px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-subtitle{
    max-width:700px;
    margin:auto;
    font-size:18px;
    color:#F8F8F8;
    line-height:1.8;
}

.btn-hero{
    display:inline-block;
    margin-top:35px;
    background:#FFD54F;
    color:#8B0000;
    padding:14px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn-hero:hover{
    background:white;
    color:#8B0000;
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.2);
}

.sub-judul{
    text-align:center;
    color:#777;
    margin-top:-10px;
    margin-bottom:35px;
    font-size:17px;
}

.sub-pengalaman{
    max-width:700px;
    margin:15px auto 45px;
    text-align:center;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.kartu{
    transition:.35s ease;
}

.kartu:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.kartu img{
    transition:.35s;
}

.kartu:hover img{
    transform:scale(1.05);
}

.kartu{
    overflow:hidden;
}

.pengalaman-card{
    transition:.35s ease;
}

.pengalaman-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.status-buka,
.status-tutup{
    display:inline-block;
    margin:15px 0;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.status-buka{
    background:#d4edda;
    color:#198754;
}

.status-tutup{
    background:#f8d7da;
    color:#dc3545;
}

.badge-harga-tiket {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f5c518, #d4a017);
    color: #7a1e1e;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(122, 30, 30, 0.15);
}

.badge-harga-tiket i {
    font-size: 0.9rem;
}

.hero-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: #8B0000; /* merah maroon, sama kayak navbar */
    color: #FFD700 !important; /* kuning keemasan */
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #FFD700; /* kebalik jadi kuning */
    color: #8B0000 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(139,0,0,0.55) 0%, rgba(240,173,78,0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-content h1,
.hero-content p,
.hero-badge {
    color: #fff;
}

.hero-content h1 {
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.kartu-img-wrapper {
    position: relative;
}

.badge-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.badge-status.buka {
    background-color: #28a745;
}

.badge-status.tutup {
    background-color: #dc3545;
}

.kartu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.harga {
    font-weight: 700;
    color: #8B0000;
}

.btn-detail {
    background-color: #FF69B4;
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.pengalaman-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pengalaman-card:hover {
    transform: translateY(-5px);
}

.pengalaman-card.active {
    border: 3px solid #8B0000;
    box-shadow: 0 6px 14px rgba(139,0,0,0.25);
}

.btn-reset-filter {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 16px;
    background-color: #f8d7da;
    color: #8B0000;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.kartu-img-wrap {
    position: relative;
}

.badge-kategori {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.badge-alam { background-color: #2e7d32; }
.badge-budaya { background-color: #8B0000; }
.badge-kuliner { background-color: #e67e22; }

.input-group {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.input-cari-tema {
    border: none;
    padding: 14px 22px;
}

.input-cari-tema:focus {
    box-shadow: none;
    outline: none;
}

.btn-cari-tema {
    border: none;
    padding: 14px 28px;
    background-color: #8B0000;
    color: #fff;
    font-weight: 600;
}

.destinasi-banner {
    background-size: cover;
    background-position: center;
    position: relative;
}

.destinasi-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(139,0,0,0.85), rgba(200,30,30,0.75));
}

.destinasi-banner .container {
    position: relative;
    z-index: 1;
}

.badge-jumlah {
    background: #8B0000;
    color: #fff;
    font-size: 12px;
    padding: 2px 9px;
    border-radius: 12px;
    margin-left: 6px;
    vertical-align: middle;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.empty-state .pesan-kosong {
    color: #7a5420;
    font-size: 17px;
    margin-bottom: 16px;
}

.foto-detail img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

.btn-hapus-destinasi {
    display: block;
    margin: 40px auto 0;
}

.btn-hapus-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.btn-hapus {
    border: 1px solid #8B0000;
    background: transparent;
    color: #8B0000;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-hapus:hover {
    background: #8B0000;
    color: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 15s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }

@keyframes heroFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    30%  { opacity: 1; }
    35%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(255,243,214,.82), rgba(246,196,83,.78));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.info-terbaru {
    padding: 70px 0;
    background: #fff;
}

.info-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(139,0,0,0.15);
}

.info-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.info-card-body {
    padding: 18px 20px;
    flex-grow: 1;
}

.info-tanggal {
    display: inline-block;
    background: #FFD700;
    color: #8B0000;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.info-card-body h3 {
    color: #8B0000;
    font-size: 18px;
    margin-bottom: 10px;
}

.info-card-body p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.atraksi-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.atraksi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(128, 0, 0, 0.18);
}

.atraksi-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.atraksi-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.atraksi-card:hover .atraksi-img-wrap img {
    transform: scale(1.08);
}

.atraksi-badge-kategori {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #7a0c0c;
    color: #ffd966;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.atraksi-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.atraksi-body .atraksi-desc {
    margin-bottom: 0;
}

.atraksi-card > .mt-2 {
    text-align: center;
}

.atraksi-title {
    color: #7a0c0c;
    font-weight: 700;
    margin-bottom: 8px;
}

.atraksi-desc {
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1;
    margin-bottom: 12px;
}

.atraksi-harga {
    align-self: flex-start;
    background: #fff3cd;
    color: #8a6300;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 20px;
}

/* ===== EDIT PROFIL — layout & avatar upload ===== */


.pb-avatar-img,
.pb-avatar-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pb-gold, #f4c542);
    box-shadow: 0 6px 18px rgba(122, 13, 13, 0.18);
}

.pb-avatar-placeholder {
    background: var(--pb-maroon, #7a0d0d);
    color: var(--pb-gold, #f4c542);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
}

.pb-avatar-edit {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 34px;
    height: 34px;
    background: var(--pb-gold, #f4c542);
    color: var(--pb-maroon-dark, #5c0909);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    border: 2px solid #fff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pb-avatar-edit:hover {
    background: var(--pb-gold-deep, #d4a017);
    transform: scale(1.08);
}

.pb-avatar-input {
    display: none;
}

/* ===== EDIT PROFIL — layout baru ===== */
.pb-profile-layout {
    display: flex;
    gap: 2.2rem;
    align-items: flex-start;
}

.pb-profile-side {
    flex: 0 0 160px;
    text-align: center;
    padding-top: 4px;
}

.pb-avatar-img,
.pb-avatar-placeholder {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pb-gold, #f4c542);
    box-shadow: 0 8px 22px rgba(122, 13, 13, 0.2);
}

.pb-avatar-placeholder {
    background: linear-gradient(135deg, var(--pb-maroon, #7a0d0d), var(--pb-maroon-dark, #5c0909));
    color: var(--pb-gold, #f4c542);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto;
}

.pb-btn-foto {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 7px 18px;
    border: 1.5px solid var(--pb-gold-deep, #d4a017);
    color: var(--pb-maroon, #7a0d0d);
    background: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: .2s ease;
}

.pb-btn-foto:hover {
    background: var(--pb-gold, #f4c542);
    color: var(--pb-maroon-dark, #5c0909);
    transform: translateY(-2px);
}

.pb-avatar-input {
    display: none;
}

.pb-profile-main {
    flex: 1;
    min-width: 0;
}

.pb-section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--pb-gold-deep, #d4a017);
    margin: 1.8rem 0 1rem;
}

.pb-section-label:first-child {
    margin-top: 0;
}

.pb-group label {
    font-weight: 600;
}

.pb-input {
    border-radius: 12px;
}

.pb-btn-save,
.pb-btn-cancel {
    border-radius: 50px;
}

.pb-password-block {
    margin-top: 2.4rem;
    padding-top: 2rem;
    border-top: 1px dashed #e5d9c8;
}

@media (max-width: 640px) {
    .pb-profile-layout {
        flex-direction: column;
        align-items: center;
    }
    .pb-profile-side {
        flex: none;
    }
}

/* ===== EDIT PROFIL — sidebar layout ===== */
.pb-account-layout {
    display: flex;
    gap: 0;
    min-height: 500px;
}

.pb-account-sidebar {
    flex: 0 0 240px;
    background: #fcfaf5;
    padding: 2.4rem 1.6rem;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.04);
}

.pb-account-sidebar .pb-avatar-img,
.pb-account-sidebar .pb-avatar-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pb-gold, #f4c542);
    margin: 0 auto 10px;
}

.pb-account-sidebar .pb-avatar-placeholder {
    background: linear-gradient(135deg, var(--pb-maroon,#7a0d0d), var(--pb-maroon-dark,#5c0909));
    color: var(--pb-gold, #f4c542);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 700;
}

.pb-account-name {
    font-weight: 700;
    color: var(--pb-maroon, #7a0d0d);
    margin-bottom: 4px;
}

.pb-account-email {
    font-size: 0.78rem;
    color: #a08d78;
    margin-bottom: 1.6rem;
}

.pb-account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pb-account-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #6b5840;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    transition: .2s ease;
    cursor: pointer;
}

.pb-account-menu li a:hover {
    background: rgba(122,13,13,0.06);
}

.pb-account-menu li a.active {
    background: rgba(122,13,13,0.07);
    color: var(--pb-maroon, #7a0d0d);
    border-left: 3px solid var(--pb-gold-deep, #d4a017);
    padding-left: 11px;
}

.pb-account-content {
    flex: 1;
    padding: 2rem 2.2rem;
    min-width: 0;
}

.pb-tab-pane { display: none; }
.pb-tab-pane.active { display: block; }

.pb-ulasan-item {
    padding: 14px 16px;
    border: 1px solid #f0dda8;
    border-radius: 12px;
    margin-bottom: 12px;
}

.pb-ulasan-item .stars i {
    color: var(--pb-gold-deep, #d4a017);
    font-size: 0.85rem;
}

@media (max-width: 700px) {
    .pb-account-layout { flex-direction: column; }
    .pb-account-sidebar { flex: none; }
}

/* ===== Refresh tampilan kartu destinasi ===== */
.kartu {
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kartu:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.kartu-img-wrap img {
    border-radius: 12px;
}

.kartu h3 {
    font-size: 1.25rem;
    margin-top: 12px;
    margin-bottom: 8px;
}

.kartu .badge {
    background-color: #fff3cd !important;
    color: #8a6d00 !important;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.kartu .status-buka {
    display: inline-block;
    background-color: #e6f7ec;
    color: #1e7e34;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 10px 0;
}

.kartu .status-tutup {
    display: inline-block;
    background-color: #fdecea;
    color: #c0392b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 10px 0;
}

.kartu .btn-pink {
    background-color: #b3121c;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.kartu .btn-pink:hover {
    background-color: #8f0e16;
}

.kartu-container {
    gap: 24px;
}

/* ===== Refresh tampilan kartu destinasi ===== */
.kartu {
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kartu:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.kartu-img-wrap img {
    border-radius: 12px;
}

.kartu h3 {
    font-size: 1.25rem;
    margin-top: 12px;
    margin-bottom: 8px;
}

.kartu .badge {
    background-color: #fff3cd !important;
    color: #8a6d00 !important;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.kartu .status-buka {
    display: inline-block;
    background-color: #e6f7ec;
    color: #1e7e34;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 10px 0;
}

.kartu .status-tutup {
    display: inline-block;
    background-color: #fdecea;
    color: #c0392b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 10px 0;
}

.kartu .btn-pink {
    background-color: #b3121c;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.kartu .btn-pink:hover {
    background-color: #8f0e16;
}

.kartu-container {
    gap: 24px;
}

.col-md-6 .badge.bg-secondary {
    background-color: #fff3cd !important;
    color: #8a6d00 !important;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ===== Filter Kategori (pill button) ===== */
.filter-kategori-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-kategori-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1.5px solid #e5d9c8;
    background-color: #ffffff;
    color: #6b5840;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-kategori-pill:hover {
    border-color: #B22222;
    color: #B22222;
    text-decoration: none;
}

.btn-kategori-pill.aktif {
    background-color: #B22222;
    border-color: #B22222;
    color: #FFD700;
    box-shadow: 0 4px 10px rgba(178, 34, 34, 0.25);
}

/* ===== Tombol Lihat Detail Atraksi ===== */
.btn-lihat-atraksi {
    display: inline-block;
    background-color: transparent;
    color: #B22222;
    border: 1.5px solid #B22222;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-lihat-atraksi:hover {
    background-color: #B22222;
    color: #fff;
}

/* ===== Modal Detail Atraksi ===== */
.modal-atraksi-tema {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.modal-atraksi-tema .modal-header {
    background: linear-gradient(135deg, #8B0000, #B22222);
    border: none;
    padding: 18px 22px;
}

.modal-atraksi-tema .modal-title {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.15rem;
}

.modal-atraksi-tema .btn-close {
    filter: invert(1);
}

.modal-atraksi-tema .modal-body {
    padding: 22px;
}

.modal-atraksi-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 auto 16px;
    background-color: #f5f0e6;
}

.modal-atraksi-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.badge-atraksi-kategori {
    background-color: #7a0c0c;
    color: #ffd966;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

.modal-atraksi-harga {
    background-color: #fff3cd;
    color: #8a6300;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 14px;
    border-radius: 20px;
}

.modal-atraksi-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.modal-atraksi-tema .modal-footer {
    border: none;
    padding: 16px 22px 22px;
}

.kenapa-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.kenapa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.kenapa-icon {
    font-size: 2.5rem;
}

.kenapa-card h5 {
    font-weight: 700;
    color: #7a1f1f;
    margin-bottom: 0.5rem;
}

.kenapa-card p {
    color: #555;
    font-size: 0.9rem;
}

/* Fix tinggi kartu destinasi biar sama rata */
.kartu {
    display: flex;
    flex-direction: column;
}

.kartu p {
    flex-grow: 1;
}

.kartu .btn-pink {
    margin-top: auto;
}