body {
  margin: 0;
  padding: 0;
  padding-top: 100px;
  font-family: 'Poppins', sans-serif;
}

.top-bar {
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  background-color: transparent;
  padding: 10px 40px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.top-bar.scrolled {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-bar .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000000;
}

.top-bar .logo small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.top-bar .contact-info {
  display: flex;
  gap: 30px;
  margin-right: 70px;
  font-size: 1.2rem;
}

.top-bar .contact-info i {
  margin-right: 5px;
}

.top-bar .whatsapp-btn {
  background-color: #cc991a;
  color: #FFF;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.top-bar .whatsapp-btn i {
  margin-right: 6px;
}

.top-bar .whatsapp-btn:hover {
  background-color: #25d366;
  transform: scale(1.03);
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-bar .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 90vh;
}

.hero-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  z-index: 1;
  transform: scale(1.2);
  transition: opacity 1s ease-in-out;
}

.hero-image.active {
  opacity: 1;
  animation: zoomOut 5s ease-in-out forwards;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-text {
  position: absolute;
  top: 20%;
  left: 10%;
  color: white;
  z-index: 3;
  max-width: 600px;
  font-family: 'Playfair Display', serif;
}

.hero-text .subtitle {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 300;
}

.hero-text .main-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text .desc {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-text {
    top: 15%;
    left: 5%;
  }

  .hero-text .main-title {
    font-size: 2rem;
  }

  .hero-text .subtitle,
  .hero-text .desc {
    font-size: 1rem;
  }
}

.social-icon {
  color: #000;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #cc991a;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: #cc991a;
}

.animate-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.scroll-images {
  display: flex;
  width: max-content;
  animation: scrollLeft 60s linear infinite;
}

.image-wrapper {
  margin: 0 15px;
  border: 4px solid #cc991a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  transition: transform 0.4s ease;
  background-color: white;
}

.image-wrapper img {
  height: 250px;
  width: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.image-wrapper:hover {
  transform: scale(1.05);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#calendar .fc-toolbar-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b88932;
}

.fc-daygrid-event {
  font-size: 1rem;
  padding: 4px 6px;
  border-radius: 6px;
  text-align: center;
}

 .fc-event.cuti-umum {
    background-color: #ffeb3b !important;
    color: #000 !important;
    border: none !important;
  }

  /* Multiple holidays styling */
  .fc-event.cuti-umum.multiple-holidays {
    background-color: #ff9800 !important;
    border: 2px solid #e65100 !important;
    color: #fff !important;
    font-weight: bold !important;
    font-size: 0.75em !important;
    padding: 3px 6px !important;
    border-radius: 4px !important;
    text-align: center !important;
    position: relative !important;
  }

  .fc-event.cuti-umum.multiple-holidays::before {
    content: "🎉";
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 12px;
    background: #e65100;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  /* Tooltip for multiple holidays */
  .fc-event.cuti-umum.multiple-holidays:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
    z-index: 1000 !important;
  }
   /* ========== FULLCALENDAR MOBILE RESPONSIVE FIX ========== */

  /* Saiz tulisan default */
  .fc .fc-col-header-cell-cushion {
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: center;
  }

  /* Mobile (width < 768px) */
 @media (max-width: 768px) {
  .fc .fc-col-header-cell-cushion {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* penuh tinggi sel */
    font-size: 0.7rem;
    padding: 6px 0;
    text-align: center;
  }

    .fc .fc-daygrid-day-number {
      font-size: 0.75rem;
    }

    .fc-toolbar-title {
      font-size: 1rem;
    }

    .fc .fc-button {
      font-size: 0.75rem;
      padding: 0.25rem 0.5rem;
    }
  }

  /* Extra small screens (e.g. phones < 480px) */
  @media (max-width: 480px) {
    .fc .fc-col-header-cell-cushion {
      font-size: 0.65rem;
    }
  }


