* {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-size: 15px;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  margin: 0px;
  padding: 0px;
}

.layar-dalam {
  width: 1000px;
  margin: auto;
}

.layar-penuh {
  width: 100%;
}

@keyframes intense-shake {
  0%, 25%, 100% { transform: translate(0, 0) rotate(0) scale(1); }

  2%  { transform: translate(-10px, -5px) rotate(-18deg) scale(1.1); }
  4%  { transform: translate(10px, 5px) rotate(18deg) scale(1.0); }
  6%  { transform: translate(-8px, -4px) rotate(-15deg) scale(1.1); }
  8%  { transform: translate(8px, 4px) rotate(15deg) scale(1.0); }
  10% { transform: translate(-6px, -2px) rotate(-10deg); }
  12% { transform: translate(6px, 2px) rotate(10deg); }
  14% { transform: translate(-4px, -1px) rotate(-8deg); }
  16% { transform: translate(4px, 1px) rotate(8deg); }
  18% { transform: translate(-2px, 0) rotate(-4deg); }
  20% { transform: translate(2px, 0) rotate(4deg); }
  
  22% { transform: translate(0, 0) rotate(0); }
}


.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background-color: #25D366;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    
    animation: intense-shake 10s infinite;
    
    transition: transform 0.3s ease-in-out;
}

.whatsapp-button:hover {
    transform: scale(1.15); 
    animation-play-state: paused;
}

.link-cursor {
    cursor: pointer;
}


nav {
  z-index: 100;
  color: #fff;
  text-align: center;
  position: fixed;
  border-bottom: 1px solid #b1b1b1;
  line-height: 60px;
  width: 100%;
  transition: background-color 0.5s ease;
}

nav.putih {
  background-color: #fff;
}

nav .logo {
  float: left;
  position: relative;
  line-height: 55px;
  text-align: center;
}

nav .logo img {
  vertical-align: middle;
  width: 120px;
}

nav .menu {
  float: right;
  margin-right: -100px;
  margin-top: 15px;
  height: 60px;
  max-width: 600px;
}

nav .menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav .menu ul li {
  list-style-type: none;
  float: left;
  line-height: 60px;
}

nav ul li a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Pengaturan header */
header {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

header img.header-image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -2;
}

header .intro {
  z-index: 100;
  color: #fff;
  text-align: center;
  position: relative;
  top: 50%;
}

header .intro h3 {
  font-size: 50px;
  margin: 0;
  padding: 0;
}

.tombol {
  background-color: #a93131;
  height: 40px;
  line-height: 42px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 0px 20px 0px 20px;
  font-size: 15px;
  border-radius: 4px;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 50%;
  z-index: -1;
}



/* Tombol menu - garis 3 menjadi X */
.tombol-menu {
  position: absolute;
  top: 1.7rem;
  right: 1rem;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 110;
}

.tombol-menu .garis {
  height: 3px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Tampilan default "X" ketika halaman dimuat */
.tombol-menu.active .garis:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.tombol-menu.active .garis:nth-child(2) {
  opacity: 0;
}

.tombol-menu.active .garis:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

section {
  padding: 50px 0px 50px 0px;
}

section h3 {
  font-size: 30px;
}

section h3::after {
  content: "";
  border-bottom: 5px solid #c86b85;
  width: 52px;
  display: block;
  margin: 20px auto;
}

#tentangkami,
#layanan {
  text-align: center;
}

section p.ringkasan {
  font-style: italic;
  font-size: 18px;
  color: #ababab;
}

section .konten-isi p {
  font-style: normal;
}

nav.putih {
  background-color: #fff;
}

nav.putih .tombol-menu .garis {
  background-color: #333;
}

nav.putih ul li a {
  color: #333;
}

nav .logo img.hitam {
  display: none;
}

section.abuabu {
  background-color: #f5f6f6;
}

:root {
  --extra-light: #ffffff;
}

.tentang {
  background-color: #f5f6f6;
}
.tentang_container {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.tentang__image {
  position: relative;
}
.tentang__image img {
  position: absolute;
  top: 260px;
  left: 35%;
  border: 0.5rem solid var(--extra-light);
  border-radius: 2rem;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}

.tentang__image img:nth-child(1) {
  max-width: 350px;
  transform: translate(-75%, -50%);
}

.tentang__image img:nth-child(2) {
  max-width: 250px;
  transform: translate(0%, -25%);
}
.tentang__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tentang__content > div {
  max-width: 1000px;
  display: grid;
  gap: 1rem;
}

.tentang__content .sub__tentang {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.tentang__content h1 {
  margin-left: 570px;
  margin-top: 120px;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.tentang__content p {
  margin-top: -20px;
 margin-left: 575px;
 margin-bottom: 100px;
}

.tkami{
  text-align: center;
}

.layarr{
  width: 1000px;
}

.support,
.tim,
.layanan {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}

.support h6,
.tim h6 {
  margin: 0px;
  margin-top: 20px;
  padding: 0px;
  font-size: 18px;
  font-weight: bold;
}

.support img {
  width: 50px;
}

.support div,
.tim div {
  text-align: center;
  width: 26%;
}

/* Gallery Section Styling */
.gallery-title {
  text-align: center; /* Centers the title */
  margin-bottom: 20px; /* Adds space below the title */
  padding: 50px 0px 20px 0px;
}

.gallery-title h3 {
  font-size: 30px;
}

.gallery-title h3::after {
  content: "";
  border-bottom: 5px solid #c86b85;
  width: 52px;
  display: block;
  margin: 20px auto;
}

section#gallery2 {
  display: flex;
  overflow-x: auto;
  padding: 10px 0;
  gap: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

section#gallery2 div {
  display: inline-block;
  flex-shrink: 0;
}

section#gallery2 div img {
  height: 350px;
  object-fit: fit;
  width: 300px;
  border-radius: 5px;
}

section#gallery2::-webkit-scrollbar {
  height: 8px;
}

section#gallery2::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

section#gallery2 div img:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.1);
}

section#gallery {
  display: flex;
  overflow-x: auto;
  padding: 10px 0;
  gap: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

section#gallery div {
  display: inline-block;
  flex-shrink: 0;
}

section#gallery div img {
  height: 200px;
  object-fit: fit;
  width: 300px;
  border-radius: 5px;
}

section#gallery::-webkit-scrollbar {
  height: 8px;
}

section#gallery::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

section#gallery div img:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.1);
}

.more,
.more2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  text-align: center;
}

.more a,
.more2 a {
  background-color: #ff0000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.more a:hover,
.more2 a:hover {
  background-color: #c30000;
}


section.quote {
  background: url("asset/33.jpeg") no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-style: italic;
  padding: 100px;
}

section.quote .layar-dalam p {
  display: inline;
  background: url("asset/quote-icon.png") no-repeat;
  padding: 40px;
}

.tim img {
  width: 100%;
  box-shadow: 0px -10px 30px #ccc;
  border-radius: 5px;
}

.layanan .area {
  width: 47%;
  box-shadow: 0px -10px 30px #ccc;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}

.layanan div.area div {
  width: 50%;
}

.layanan .area .gambar {
  border-radius: 5px 0px 0px 5px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
}

.layanan .area .text article {
  padding: 40px;
  padding-left: 20px;
}

.layanan .area .text article h4 {
  margin: 0px;
  font-style: bold italic;
  font-size: 18px;
  color: #393939;
}



.layanan .area .text article ul li {
  font-style: italic;
  line-height: 25px;
  font-size: 15px;
  color: #333;
  text-align: left;
}

.layanan .area .text article ul li p {
  color: #7e7e7e;
}

.layanan .area .text article p {
  color: #7e7e7e;
  font-size: 1em;
  text-decoration: none;
  transition: color 0.5s ease;
}


footer {
  padding: 50px 0px 50px 0px;
  
  background-color: #343a40;
  color: #fff;
}

footer .layar-dalam {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

footer .layar-dalam div {
  width: 20%;
}

footer .layar-dalam h5 {
  margin-top: 0px;
  font-size: 20px;
  font-weight: bold;
}

footer a {
    text-decoration: none !important;
    color: #fff !important;  /* Mengubah warna teks link menjadi putih */  
}

footer .layar-dalam .copyright {
  width: 100%;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #666;
  text-align: center;
}
footer img {
  width: 30px; /* Atur lebar ikon sesuai kebutuhan */
  height: 30px; /* Atur tinggi ikon sesuai kebutuhan */
  text-align: center;
}

footer .layar-dalam p.contact-number, 
p.contact-email, 
p.sosmed-ig,
p.sosmed-tt
{
  
  display: inline-block;
  margin-left: 2px; /* Add some space between the icon and number */
  vertical-align: middle; /* Vertically align with the icon */
  text-decoration: none;
}
footer .layar-dalam .contact-info,
.sosmed
{
  display: flex;
  align-items: center; /* Vertically center the content */
}

footer .layar-dalam .contact-info a ,
.sosmed
{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff !important;
}

footer .layar-dalam .contact-info img ,
.sosmed img
{
  width: 30px; /* Adjust the icon size */
  height: 30px; /* Adjust the icon size */
  margin-right: 10px; /* Add space between icon and number */
}

footer .layar-dalam .contact-info p.contact-number p.contact-email
p.sosmed-ig p.sosmed-tt p.alamat
{
  margin: 0; /* Remove default margin */
  font-size: 16px; /* Adjust the font size */
  color: #fff; /* Adjust text color if necessary */
}

@media screen and (max-width: 991.98px) {
  .layar-dalam {
    width: min(1000px, 90%);
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  }

  header .intro h3 {
    font-size: 25px;
    margin: 0;
    padding: 0;
    margin-bottom: 50px;
  }

  header .intro p {
    color: #00000000;
  }

   nav .menu ul {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 60px;
    width: 60%;
    background: #f42f2f;
    z-index: 999;
  }

  nav .menu ul li {
    width: 100%;
    border-bottom: 1px solid #ccc;
    background-color: #f42f2f;
    line-height: 40px;
  }

  .tt {
    border-radius: 8px 8px 0 0;
    width: auto;
    height: 100%;
  }

  .pp {
    border-radius: 0 0 8px 8px;
    width: auto;
    height: 100%;
  }

  nav .menu ul li a {
    color: #ffffff;
    width: auto;
    height: 100%;
    padding: 10px;
    text-align: center;
    text-decoration: none;
  }

  .tombol-menu {
    display: flex;
  }

  nav .menu.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #333;
    padding: 10px;
  }




 .more, .more2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  text-align: center;
  width: auto;
}

  .more a,
  .more2 a {
    padding: 10px 20px;
    font-size: 14px;
  }

  .layanan .area {
    display: block;
  }

  .layanan div.area div {
    width: 100%;
  }
  
  .layanan .area .text article ul li{
  margin-left: -15px;
}

  .layanan .area .gambar {
    border-radius: 5px 5px 0px 0px;
    height: 200px;
  }

  .support {
    display: block;
  }

  .support div {
    width: 100%;
    padding-bottom: 30px;
  }
  
  #gallery {
    width: 100%;
    overflow-x: auto;
    gap: 5px;
  }

  #gallery div img {
    width: 150px;
    height: 120px;
  }

  #gallery2 {
    width: 100%;
    overflow-x: auto;
    gap: 5px;
  }

  #gallery2 div img {
    width: 150px;
    height: 120px;
  }

.tentang__image img:nth-child(1) {
  margin-left: 155px;
  height: 280px;
  width: 150%;
  transform: translate(-75%, -50%);
}

.tentang__image img:nth-child(2) {
  width: 140px;
  height: 200px;
  margin-top: 40px;
  margin-left: 65px;
  transform: translate(0%, -25%);
}

.tentang__content h1 {
  margin-left: 150px;
  margin-top: 500px;
  font-size: 22px;
  line-height: 2rem;
  font-weight: 800;
}

.tentang__content p {

  text-align: center;
  margin-top:0;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 50px;
  font-size: 15px;
}

footer .layar-dalam {
    display: flex; /* Menggunakan Flexbox untuk tata letak baris */
    justify-content: space-between; /* Menyebar elemen di seluruh baris */
    align-items: flex-start; /* Menyelaraskan elemen ke atas */
  }

  footer .layar-dalam div {
    width: 40%; /* Lebar div sosial media, kontak, alamat masing-masing 32% */
}

   footer .layar-dalam h5 {
    font-size: 16px; /* Ukuran font lebih kecil untuk header */
  }

  footer .layar-dalam p {
    font-size: 12px; /* Ukuran font lebih kecil untuk teks */
  }

  footer .layar-dalam .contact-info p.contact-number,
  footer .layar-dalam .contact-info p.contact-email,
  footer .layar-dalam .sosmed p.sosmed-ig,
  footer .layar-dalam .sosmed p.sosmed-tt,
  footer .layar-dalam p.alamat {
    font-size: 10px; /* Ukuran font lebih kecil untuk teks kontak */
  }

  footer .layar-dalam .contact-info img ,
.sosmed img
{
  width: 20px; /* Adjust the icon size */
  height: 20px; /* Adjust the icon size */
  margin-right: 2px; /* Add space between icon and number */
}

  footer .layar-dalam iframe {
    display: none; /* Sembunyikan iframe (Google Maps) pada layar kecil */
  }
}


