/* Gambar default */
.gambar {
  width: 100%;
  height: 15rem;
  background-color: rgb(187, 187, 187);
}

/* Typography */
.tulisan {
  font-size: 14pt;
  color: #333;
}

.up {
  margin-top: 5px;
}

/* Slider gambar - responsif dan elegan */
.gambar-slider-1,
.gambar-slider-2,
.gambar-slider-3 {
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; 


  filter: brightness(80%);
}

.gambar-slider-1 {
  background-image: url("img/satu.jpg");
}

.gambar-slider-2 {
  background-image: url("img/dua.jpg");
}

.gambar-slider-3 {
  background-image: url("img/tiga.jpg");
}

/* Styling untuk map dengan margin dan shadow */
.map {
  display: block;
  margin: auto;
  width: 90vw;
  height: 20rem;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

/* Gambar untuk kamar */
.gambar-kamar {
  border-radius: 0.5rem;
  height: 15rem;
  display: block;
  margin: auto;
}

/* Heading */
h1, h2 {
  font-size: 1.5rem  !important;

  transition: color 0.3s  !important;
  cursor: pointer  !important;
}

h1:hover, h2:hover {
  color: #ff6500  !important;
}
/* Typing effect for .typing class */
.typing {
  white-space: nowrap; /* Prevent text wrapping */
  overflow: hidden; /* Hide overflowing text */
  display: inline-block; /* Needed for width animation */
  position: relative; /* To ensure proper alignment */
}

.typing {
  animation: typing 5s linear 1 !important; /* Smooth animation over 4 seconds */
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
  .typing {
    font-size: 1rem !important; /* Smaller font size for mobile */
  }
}


/* Lead paragraph */
.lead {
  font-size: 16px;
  text-align: justify;
  color: #555;
}

/* Shadow dan tampilan elegan untuk card informasi */
.col-lg-9 {
  border-radius: 1rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background-color: #fff;
}

/* Quote icon styling */
.fa-quote-left {
  color: #bbb;
  margin-bottom: 1rem;
}

/* Heading style */
h4 {
  color: #ff6500; /* Warna orange untuk heading */
}

/* Margin dan spasi antar elemen */
h5 {
  margin-top: 1.5rem;
}

p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.text-muted {
  color: #888;
}

/* Icon links */
.icon-link {
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
}

.icon-link:hover {
  color: #ff6500;
  transform: translateY(-5px);
}

/* Media query untuk ponsel kecil (di bawah 480px) */
@media only screen and (max-width: 480px) {
  .gambar-slider-1,
  .gambar-slider-2,
  .gambar-slider-3 {
      height: 35vh;
  }



  .lead {
      font-size: 14px;
  }
}

/* Media query untuk layar sedang (min-width: 768px) */
@media only screen and (min-width: 768px) {
  .gambar-slider-1,
  .gambar-slider-2,
  .gambar-slider-3 {
      height: 50vh;
  }


}

/* Media query untuk layar besar (min-width: 1200px) */
@media only screen and (min-width: 1200px) {
  .gambar-slider-1,
  .gambar-slider-2,
  .gambar-slider-3 {
      height: 60vh;
  }


}

.custom-responsive {
  width: 40%;
  max-width: 900px;
  margin: 0 auto;
}

/* Media query untuk HP (layar dengan lebar <= 768px) */
@media (max-width: 768px) {
  .custom-responsive {
      width: 80%; /* Lebar 80% pada perangkat HP */
  }
}


/* Specific styling for the organization structure cards */
.org-card {
  border-radius: 0.5rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.org-card:hover {
  transform: translateY(-5px);
}

.org-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}

.org-name {
  font-size: 1rem;
  color: #555;
}

.org-role {
  font-size: 0.875rem;
  color: #888;
}

.org-image {
  width: 100%;
  height: 10rem;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.org-header {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6500;
  margin-bottom: 1.5rem;
}

