/* ============================================================
Frontend & Backend -> BengkelKreatifDotNet - studio
https://BKdotNet.my.id/
=============================================================== */


/* =================== RESET =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Reset semua margin, padding, dan box-sizing agar layout konsisten di semua browser */

body {
  background: #B8F5E3;
  color: #041D16;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}
/* Atur warna latar belakang, warna teks utama, line-height, dan font default */

/* =================== HEADER =================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #0F6C51, #1CC495);
  padding: 8px 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
/* Header tetap di atas, dengan gradasi hijau dan bayangan */

/* ==========================
   HEADER (DESKTOP & MOBILE)
========================== */
.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
/* Header responsif, logo dan teks bisa turun ke bawah jika layar kecil */

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
}
/* Logo dan teks logo berdampingan, bisa turun ke bawah jika layar kecil */

/* Ukuran default (desktop) */
.logo img {
  height: 80px;
  max-width: 100%;
}
.logo-teks img {
  height: 70px;
  max-width: 100%;
}
/* Ukuran logo dan logo teks pada desktop */

/* =================== CAROUSEL =================== */
.carousel {
  margin-top: 105px;
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
/* Area carousel dengan bayangan dan overflow tersembunyi */

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}
/* Kontainer slide carousel */

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
  /* Slide tidak tampil kecuali aktif */
}
/* Setiap slide menumpuk, hanya yang aktif yang terlihat */

.slide.active {
  opacity: 1;
  z-index: 1;
  /* Slide aktif tampil di atas */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Gambar slide memenuhi area dan proporsional */

.caption {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}
/* Caption di tengah bawah gambar, teks putih */

.caption h1 {
  font-size: clamp(72px, 10vw, 100px);
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
  /* Untuk mobile, atur line-height agar jarak antar baris tidak terlalu jauh */
}
/* Judul besar dengan efek bayangan */

/* Responsive caption untuk mobile */
@media (max-width: 768px) {
  .caption h1 {
    font-size: clamp(48px, 8vw, 64px);
    line-height: 1.1;
    line-clamp: 1 ;
    /* Edit di sini untuk mengatur jarak antar baris pada mobile */
  }
}

/* =================== PORTFOLIO =================== */
.portfolio {
  margin: 40px;
  padding-top: 40px;
  text-align: center;
}
/* Area portfolio dengan margin dan padding */

.portfolio h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  /* Atur ukuran judul "Contact Us" di sini */
  /* Ubah nilai font-size sesuai kebutuhan desain */
  text-shadow: 2px 2px 2px #ffffff, 0 0 5px #065241, 0 0 15px #146654;
  /* Untuk mobile, atur line-height agar jarak antar baris tidak terlalu jauh */
}
/* Judul utama portfolio */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  font-size: 18px;
}
/* Grid responsif untuk box portfolio */

.portfolio-box {
  background: #85f0d1;
  padding: 15px;
  border-radius: 12px;
  border: 12px solid #3dcfa6;
  transition: 0.3s;
}
/* Box portfolio dengan warna hijau muda dan sudut membulat */

/* Portfolio link (card) style: teks hitam, tanpa garis bawah */
.portfolio-grid a.portfolio-box {
  color: #111;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.3s, color 0.3s, background 0.3s;
  border-radius: 20px;
  cursor: pointer;
  border: 6px solid #3dcfa6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}
/* Link portfolio tampil seperti kartu, tanpa garis bawah, warna teks hitam */

.portfolio-box:hover {
  background: #064b37;
  color: #B8F5E3;
  /* warna terang saat hover */
}
/* Efek hover pada kartu portfolio */

.portfolio-box:hover h3,
.portfolio-box:hover p {
  color: #B8F5E3;
  /* warna terang untuk judul dan deskripsi saat hover */
}

.portfolio-box img {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px; 
  border: 1px solid #B8F5E3;
}
/* Gambar portfolio memenuhi box dan sudut membulat */

.portfolio-box h3 {
  color: #111;
  text-decoration: underline;
  margin-bottom: 10px;
  transition: color 0.3s;
  font-size: 1.6rem;
  font-weight: 800;
  /* Ubah ukuran huruf judul di atas gambar agar lebih besar */
}
/* Judul di atas gambar, bergaris bawah, ukuran besar */

.btn-gallery {
  display: inline-block;
  padding: 14px 28px;
  background: #0F6C51;
  color: #B8F5E3;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
  border: 1px solid #064b37;
  transition: background 0.3s, color 0.3s;
}
/* Tombol galeri dengan warna hijau dan sudut membulat */

.btn-gallery:hover {
  background: #053a2a;
  /* lebih gelap */
  color: #ff9800;
  /* oranye */
}
/* Efek hover pada tombol galeri */

/* =================== CONTACT =================== */
.contact {
  margin-top:80px; 
  padding: 60px 80px;
  text-align: center;
  background: linear-gradient(180deg, #88ecd2, #90dfc8);
}
/* Area kontak dengan padding dan gradasi hijau muda */

.contact h1 {

  margin-bottom: 20px;
  font-size: 2.5rem;
  /* Atur ukuran judul "Contact Us" di sini */
  /* Ubah nilai font-size sesuai kebutuhan desain */
  text-shadow: 2px 2px 2px #ffffff, 0 0 5px #065241, 0 0 15px #146654;
  /* Untuk mobile, atur line-height agar jarak antar baris tidak terlalu jauh */
}
/* Judul utama kontak */

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
/* Kontainer kontak menggunakan flex agar responsif */

.contact-left,
.contact-right {
  flex: 1;
/*   min-width: 280px; */
}
/* Kolom kiri dan kanan kontak, responsif */

.contact-box {
  background: #d5fdf1;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #3dcfa6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}
/* Box kontak dengan background biru muda dan border */

.contact-form h2 {
  margin-bottom: 20px;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
/* Input dan textarea kontak memenuhi lebar box dan sudut membulat */

.contact textarea {
  height: 120px;
}

.contact button {
  background: #1CC495;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.contact button:hover {
  background: #0F6C51;
  color: #ffc400;
}
/* Tombol kirim pesan dengan warna hijau dan efek hover */

.contact-text h1 {
  margin-bottom: 1px;
  text-align: center;
  font-size: 34px;
}

.contact-text h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 28px;
}

.contact-text p {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 20px;
}

.contact-info {
  display: flex;
  gap: 20px;
  justify-content: center;
  
}

.contact-info img {
  width: 280px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

.contact-info .contact-text {
  flex: 1;
}

.contact-details {
  line-height: 1.8;
  text-align: justify;
  font-size: 20px;
}

.contact-details div {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    text-align: center;
  }

  .contact-info img {
    margin-bottom: 15px;
  }

  .contact-text {
    text-align: center;
  }
}
/* Responsif kontak untuk layar kecil */

/* =================== FOOTER =================== */
footer {
  background: #041D16;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #B8F5E3;
}
/* Footer dengan background gelap dan teks kecil */

/* =================== BACK TO TOP =================== */
#backToTop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  padding: 2px 10px;
  border-radius: 20%;
  font-size: 2rem;
  /* Membuat ikon panah lebih besar dan tegas */
  font-weight: bold;
  background: #fff;
  color: #0F6C51;
  border: 2px solid #0F6C51;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
/* Tombol back to top di pojok kanan bawah, dengan ikon panah besar dan border tegas */

#backToTop:hover {
  background: #1CC495;
  color: #fff;
  border-color: #1CC495;
}
/* Efek hover pada tombol back to top */

/* =============================
   WhatsApp Floating Button Styles (Solid Color)
   ============================= */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 0.5rem 0.5rem;
  background:#fff; /*var(--accent); /* Solid WhatsApp green */
  border-radius: 999px;
  box-shadow: 0 2px 15px rgb(2, 65, 5);
  transform: translateY(12px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s cubic-bezier(.2, .9, .3, 1);
  z-index: 9999;
  border: 1px solid var(--accent-dark);
  animation: wa-pulse 1.2s infinite alternate;
}

.whatsapp-btn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  flex: 0 0 28px;
  background: var(--accent); /* Solid background for icon */
  border-radius: 50%;
  padding: 0.5px;
}

.whatsapp-text {
  font-weight: 600;
  font-size: .95rem;
  color: #0b3a2a;
}

@media (max-width:520px) {
  .whatsapp-text {
    display: none;
  }
  .whatsapp-btn {
    padding: .8rem .8rem;
  }
}

.whatsapp-btn:focus {
  outline: 3px solid rgba(37, 211, 102, .18);
  outline-offset: 3px;
}

/* Animasi pulse/goyang */
@keyframes wa-pulse {
  0% { box-shadow: 0 2px 15px rgb(2, 65, 5); transform: scale(1) rotate(-2deg); }
  50% { box-shadow: 0 4px 22px #00ee0c; transform: scale(1.08) rotate(2deg); }
  100% { box-shadow: 0 2px 15px rgb(2, 65, 5); transform: scale(1) rotate(-2deg); }
}

/* =============================
   Responsive Layout (Desktop/Mobile)
   ============================= */
body.desktop {
  /* Style khusus desktop */
}
body.mobile {
  /* Style khusus mobile */
}

/* Pada layar sangat kecil, logo dan teks logo ditumpuk dan diperkecil. */
/* Mobile (HP) */
@media (max-width: 520px) {
  .logo {
    flex-direction: column;
    /* menumpuk */
  }

  .logo img {
    height: 80px;
    /* perkecil biar pas di layar HP */
  }

  .logo-teks img {
    height: 60px;
  }

  .carousel {
    margin-top: 180px;
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  }

  .contact-details {
    line-height: 1.8;
    text-align: justify;
  }
}
/* Pada layar sangat kecil, logo dan teks logo ditumpuk dan diperkecil */