/* Reset sederhana */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Thumbnail Berita */
.thumb-berita {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Dropdown Menu Dasar */
.dropdown-menu li {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

/* Animasi Dropdown */
.dropdown-menu.dropdown-animate {
  animation: dropdownFade 0.3s ease-in-out;
  transform-origin: top;
}

@keyframes dropdownFade {
  0% {
    opacity: 0;
    transform: scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Animasi Rotasi Icon Dropdown */
.nav-item.dropdown.show .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

/* Video Thumbnail */
.video-thumbnail {
  width: 120px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.video-item {
  align-items: flex-start;
  gap: 10px;
}

.video-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;
  max-height: 2.4em;
}

/* Sidebar */
.sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: #1f2937;
  color: #fff;
  padding: 20px;
  transition: 0.3s;
  z-index: 1050;
  overflow-y: auto;
}

.sidebar.closed {
  margin-left: -250px;
}

.sidebar a,
.sidebar button {
  display: block;
  padding: 5px 12px;
  color: #f3f4f6;
  text-decoration: none;
  border: none;
  background: none;
  border-radius: 6px;
  width: 100%;
  text-align: left;
}

.sidebar a:hover,
.sidebar button:hover {
  background-color: #374151;
}

.logo {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.content {
  margin-left: 250px;
  padding: 30px;
  transition: 0.3s;
}

.content.fullwidth {
  margin-left: 0;
}

#sidebarToggle {
  font-size: 24px;
  background: none;
  border: none;
  margin-right: 10px;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1049;
}

#overlay.active {
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 2px solid #e0e0e0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Nav Link Animasi */
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0d6efd;
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  background: url("https://source.unsplash.com/1600x600/?cianjur,city") no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(12, 12, 12);
  text-align: center;
}

/* Hero Slider Scrollbar */
.hero-slider {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.hero-slider::-webkit-scrollbar {
  height: 6px;
}

.hero-slider::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 10px;
}

/* Slider Item */
.slider-item {
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 8px;
  font-size: 14px;
  text-align: center;
  border-radius: 0 0 8px 8px;
}

/* Footer */
footer {
  background-color: #01487e;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Berita Terkini Hover */
.berita-terkini-item:hover h5 a {
  color: #0d6efd;
}

.berita-terkini-item img {
  object-fit: cover;
}

/* Link Hover */
ul li a:hover {
  color: #0d6efd;
}

/* Berita Scroll */
.berita-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.berita-scroll::-webkit-scrollbar {
  height: 8px;
}

.berita-scroll::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

/* Berita Card */
.berita-card {
  min-width: 220px;
  max-width: 220px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
}

.berita-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.berita-card p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

/* Share Buttons */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.share-buttons .share-icon {
  font-size: 1.5rem;
  padding: 8px;
  border-radius: 50%;
  color: white;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.share-buttons .whatsapp {
  background-color: #25D366;
}

.share-buttons .facebook {
  background-color: #3b5998;
}

.share-buttons .twitter {
  background-color: #1DA1F2;
}

.share-buttons .share-icon:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}

/* Custom Dropdown max-height */
.custom-dropdown {
  max-height: none;
  overflow: visible;
  display: block;
}

/* Submenu yang menyamping */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  position: absolute;
  display: none;
  min-width: 10rem;
  z-index: 1000;
}

.dropdown-submenu:hover .dropdown-submenu-menu {
  display: block;
}

/* Dropdown Desktop - Geser kanan */
.dropdown-menu.dropdown-geser-kanan {
  position: absolute !important;
  top: 100% !important;
  left: 670px !important;
  transform: none !important;
  margin: 0 !important;
}

/* RESPONSIVE MOBILE */
@media (max-width: 964.98px) {
  .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .navbar-nav .nav-item {
    flex: 0 0 48%;
    text-align: left;
  }
  .navbar-nav .nav-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
 
   .dropdown-menu.dropdown-geser-kanan {
    position: absolute !important;
    top: 100% !important;
    left: 155px !important;              /* mulai dari kiri tombol */
    min-width: 150px !important;     /* lebar minimal dropdown */
    width: auto !important;          /* lebarnya sesuai isi */
    transform: none !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    padding: 0.5rem 0 !important;
    z-index: 9999 !important;
  }

  /* Item di dalam dropdown */
  .dropdown-menu.dropdown-geser-kanan .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 15px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
  }

  .dropdown-menu.dropdown-geser-kanan .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-menu.dropdown-geser-kanan .dropdown-item:hover {
    background-color: #f5f5f5;
  }
}

@media (max-width: 964.98px) {
  .col-lg-4.terpopuler-col {
    margin-top: 50px !important;
  }
  .col-lg-8.pilihan-col {
    margin-top: -100px !important;
  }

}