/*body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding-top: 63px;
    background-color: #d8e3fc;
}*/

body {
    width: 100%;
    min-height: 100vh;
    background: url('img/bg-img/langit.jpg') center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #1b4ed0;
    color: #2f3138;
    font-family: "Poppins",sans-serif;
    padding-top: 63px;
}
    
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    border-radius: 6px; /* radius pada wrapper juga */
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 6px; /* radius langsung ke iframe */
    overflow: hidden;
}


.pzf-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 6px 0;
}

.pzf-header .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pzf-header .logo img {
  height: 50px;
}

.pzf-header nav.nav-links {
  display: flex;
  gap: 20px;
}

.pzf-header .nav-link {
  color: #111;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  padding: 4px 10px;
  transition: all 0.2s ease-in-out;
}

.pzf-header .nav-link:hover {
  color: #ff5500;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: #111;
  display: block;
}

@media (max-width: 768px) {
  .pzf-header nav.nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    display: none;
    padding: 12px 0;
    text-align: center;
  }

  .pzf-header nav.nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    /*background-image: url("img/bg-img/langit.jpg");*/
    background: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0 100px;
    overflow: hidden;
}

/*.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        #d8e3fc 100%
    );
    z-index: 2;
}*/


.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-banner h4 {
    font-weight: 500;
    font-size: 1.25rem;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(43, 12, 77, 0.5);
}

.hero-banner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* ===== SLIDER ===== */
.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    margin-top: -20px;
    z-index: 2;
}

.tiny-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.tns-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    pointer-events: none;
}

.tns-nav button {
    pointer-events: all;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    transition: background-color 0.3s ease;
}

.tns-nav .tns-nav-active {
    background-color: #fff;
}

.site-footer {
    /*background-color: #d8e3fc;*/
    color: #333;
    font-size: 14px;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

