@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  /* Warna Utama */
  --primary-color: #1fa2ff;
  --primary-light-color: #e9f6ff;
  --primary-light2-color: #f3fafe;
  --secondary-color: #ff9800;
  --background-color: #f4f4f4;
  --text-color: #333;

  /* Typography */
  --font-family-main: "Inter", serif;
  --font-size-base: 16px;
  --font-size-heading: 2rem;
  --font-size-subheading: 1.5rem;

  /* Padding dan Margin */
  --padding-base: 16px;
  --margin-base: 16px;

  /* Border */
  --border-radius: 10px;
  --border-color: #ddd;
}

body {
  font-family: "Inter", serif;
}

/* Navbar */
.nav-item .nav-link {
  font-size: 18px;
  font-weight: 500;
  margin: 0px 10px;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 100%;
  top: 76px;
}

.btn-nav-unit {
  width: 300px;
  background-color: #e0e0e0;
  color: #072f46;
}

.btn-nav-unit.active {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: white;
}

/* Navbar */

/* ---------------------------------------------------
   SummerNote
----------------------------------------------------- */

.note-editable {
  font-family: "Poppins" !important;
  font-size: 15px !important;
  text-align: left !important;

  height: 350px !important;
}

/* Table */
table .bg-th {
  background-color: #014694;
  color: white;
}

/* Button */
.btn-primary {
  background-color: var(--primary-color);
  padding: 10px 35px;
  border-radius: var(--border-radius);
  border: 0px;
  
}

.btn-warning {
  background-color: #ffb316;
  padding: 10px 35px;
  border-radius: var(--border-radius);
  border: 0px;
  color: white;
  font-weight: 600;
}

.btn-outline-light {
  background-color: transparent;
  padding: 10px 35px;
  border-radius: var(--border-radius);
  border: 1px solid white;
  color: white;
}

/* Button */

/* Text */
.text-title {
  font-size: 40px;
  font-weight: 800;
}

.text-primary-title {
  color: var(--primary-color);
}

/* Text */

/* Background */
.bg-primary-default {
  background-color: var(--primary-color);
}

.bg-primary-light {
  background-color: var(--primary-light-color);
}

.bg-primary-light2 {
  background-color: var(--primary-light2-color);
}

/* Background */

/* Animasi */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.obj-rotate {
  width: 80%; /* Ukuran lebih fleksibel */
  max-width: 900px; /* Batasi ukuran maksimum */
  animation: rotate 5s infinite linear;
  transform: rotate(15deg);
  z-index: -1;
}

.foto-container {
  width: 100%;
  height: 100vh; /* Mengisi tinggi layar */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Hindari gambar keluar layar */
}

.foto-container img {
  position: absolute;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Media Queries untuk responsivitas */
@media (max-width: 768px) {
  .obj-rotate {
    width: 60%;
  }

  .foto-container img {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .obj-rotate {
    width: 50%;
  }

  .foto-container img {
    width: 70%;
  }
}

/* Animation */

/* Fasilitas */
.img-fasilitas {
  height: 300px;
  width: auto;
  border-radius: 15px;
}

/* Fasilitas */

/* Sweaper */
swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Sweaper */

/* Card Custom */

.people__card {
  position: relative;
  overflow: hidden;
  height: 440px;
  background-color: #111b1a;
  border-radius: 11px;
}

@media (max-width: 1699px) {
  .people__card {
    height: 440px;
  }
}

@media (max-width: 1199px) {
  .people__card {
    height: 350px;
  }
}

@media (max-width: 991px) {
  .people__card {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .people__card {
    height: auto;
  }
}

.people__card .people__card__image {
  display: inline-block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  z-index: 2;
  margin-left: -50px;
  width: 130%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 13px;
  transition: transform 0.7s;
}

.people__card .people__card__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 20px 20px;
  border-radius: 11px;
  transition: 0.3s;
}

.people__card .people__card__content .slide__number {
  margin-bottom: 20px;
  opacity: 1;
  font-size: 32px;
  font-weight: 300;
  color: #ebefe3;
}

@media (max-width: 1199px) {
  .people__card .people__card__content .slide__number {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .people__card .people__card__content .slide__number {
    font-size: 20px;
  }
}

.people__card .slide__gradient {
  position: absolute;
  z-index: 2;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  background-image: linear-gradient(111deg, #000, rgba(0, 0, 0, 0.15) 60%);
}

.is-active .people__card__image {
  transform: translateX(100px);
}

/* Card Custom */

/* Paralax Background */
.section-background {
  background-attachment: fixed;
  background-position: top;
  background-size: cover;
  height: 30vh;
  width: 100%;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parallax {
  background: url("../../assets/images/section-instagram.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

/* Hover */
.feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding: 20px;
  border-radius: 10px;
}

.feature-post {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.feature-video {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.feature-dd {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.feature-post:hover {
  transform: scale(1.05);
  background-color: transparent; /* Warna latar saat hover */
}

.feature-video:hover {
  transform: scale(1.05);
  background-color: transparent; /* Warna latar saat hover */
}

.feature-dd:hover {
  transform: scale(1.05);
  background-color: transparent; /* Warna latar saat hover */
}

.feature:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background-color: transparent; /* Warna latar saat hover */
}

.feature:hover .txt-menu {
  color: #0d6efd !important; /* Misal warna biru Bootstrap saat hover */
}

.feature img {
  transition: transform 0.3s ease;
}

.feature:hover img {
  transform: scale(1.1);
}

.sosmed-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  font-size: 20px;
}

.sosmed-btn.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.sosmed-btn.tiktok {
  background: linear-gradient(#000 100%);
}

.sosmed-btn.youtube {
  background: #ff0000;
}

.sosmed-btn.facebook {
  background: #0066ff;
}

.sosmed-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.animasi-border {
                          position: relative;
                          border-radius: 30px; /* sama dengan rounded-5 Bootstrap */
                          overflow: hidden;
                        }
                        
                        .animasi-border::before {
                          content: "";
                          position: absolute;
                          inset: 0;
                          padding: 10px; /* tebal border */
                          border-radius: inherit;
                          background: linear-gradient(
                            270deg,
                            #ff00ff,
                            #00ffff,
                            #ff9900,
                            #00ff00,
                            #ff00ff
                          );
                          background-size: 300% 300%;
                          animation: borderAnimation 6s linear infinite;
                          -webkit-mask: 
                            linear-gradient(#fff 0 0) content-box, 
                            linear-gradient(#fff 0 0);
                          -webkit-mask-composite: xor;
                                  mask-composite: exclude;
                          z-index: 1;
                        }
                        
                        @keyframes borderAnimation {
                          0% { background-position: 0% 50%; }
                          50% { background-position: 100% 50%; }
                          100% { background-position: 0% 50%; }
                        }
                        
                        .animasi-border .card-body {
                          position: relative;
                          z-index: 2;
                        }