.logo{
    height: 55px;
}
.navbar {
  background-color: transparent !important;
  transition: background-color 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8); 
}
html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      width: 100%;
    }
.video-banner-wrapper {
  position: relative;
  width: 100%;
  height: 91vh;
  overflow: hidden;
}
.video-banner-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -1;
}
.video-overlay-text {
      position: absolute;
      top: 75%; 
      left: 38%;
      transform: translate(-50%, -50%);
      z-index: 2; 
      color: white;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
      text-align: left;
      padding: 0 1rem;
    }
    
    h1 strong{
      font-size: 50px;
    }
    p.shadow-sm{
      font-size: 30px;
    }
     @media (max-width: 768px) {
      .video-overlay-text {
        font-size: 1.5rem;
        top: 60%; 
      }
    }
    @media (max-width: 576px) {
      .video-overlay-text {
        font-size: 1rem;
        top: 60%; 
      }
    } 
    .footer{
      text-align: left;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #740202;
      color: white;
      padding-left: 35px;
      padding-right: 35px;
    }
   .logo2{
    width: 300px;
    height: auto;
}
@media screen and (max-width:600px){
    .logo2{
        width: 150px;
        height: auto;
    }
    .footer{
        font-size: 14px;
    }
}
    #textpargraph1{
      text-align: center;
    }
    .carousel-inner{
    text-align: center;
}
button{
    font-size: 25px;
}

header{
    color: #ffd907;
}

.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* rasio 16:9 */
  overflow: hidden;
  border-radius: 10px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
#global-footer{
  width: 100%;
  background: #191547;
  padding: 45px 0;
  margin: 0;
}

.footer-content{
  max-width: 100%;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

#global-footer .left,
#global-footer a{
  color: #ffd907;
  font-weight: 500;
  font-size: 15px;
}

#global-footer .right{
  display: flex;
  gap: 50px;
}

#global-footer a{
  text-decoration: none;
  transition: .3s;
}

#global-footer a:hover{
  color: #ffffff;
}

.time-box {
  background: #191547;
  color: #ffd907;
  padding: 20px 25px;
  border-radius: 12px;
  min-width: 120px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.time-box h1 {
  font-size: 40px;
  margin: 0;
  font-weight: bold;
}

.time-box p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
}

.time-box:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* ================= HEADER ANIMATION ================= */
header {
  animation: fadeDown 1.2s ease-out;
}


@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* ================= COUNTDOWN ================= */
.time-box {
  transition: transform 0.3s ease;
}

.time-box.animate {
  transform: scale(1.15);
}


/* ================= CARD ANIMATION ================= */
.service-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}


/* ================= ABOUT US ================= */
.about-logo,
.about-text {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s ease;
}

.about-show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
body {
  transition: background-color 0.4s ease, color 0.4s ease;
}

.card {
  transition: background-color 0.4s ease, color 0.4s ease;
}

.navbar {
  transition: background-color 0.4s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffc107; /* Kuning (yellow) */
  transition: color 0.3s ease;
  font-weight: bold;
}
.gallery-img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

/* Modal Preview */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.image-modal img {
    display: block;
    max-width: 90%;
    max-height: 80vh;
    margin: auto;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}