@font-face {
  font-family: 'Soft Marshmallow';
  src:
    url('font/SoftMarshmallow.woff2') format('woff2'),
    url('font/SoftMarshmallow.woff') format('woff');
}


@font-face {
  font-family: 'Montserrat-Reguler';
  src: url(font/Montserrat-Regular.ttf) format('truetype');
}


* {
margin: 0;
  padding: 0;
  box-sizing: border-box;
  
  
}

html {
  font-size: clamp(14px, 3vw, 18px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-image: url(../bahan/Vektor/bg/desktop-tablet.png);
  background-repeat: no-repeat;
  background-size: 100% auto; /* agar penuh lebar */
  background-position: top center;
  background-attachment: scroll ;
  min-height: 100vh;
  overflow-x: hidden;
  width: auto; /* Lebar header 100% dari viewport */
      top: 0;
      left: 0;
      margin: 0;
      color: white;
      font-family: "Montserrat", sans-serif;
      
}



.hamburger {
  display: none; /* default sembunyi (untuk desktop) */
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
  color: #333;
  position: absolute;
  top: 1.25px;
  right: 60px;
  z-index: 1100;
  
}


/* NAVBAR */
.navbar {
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border: 4px 4px solid #333;
}

.nav-container {  
  border-radius: 25px;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px 30px;
  gap: 30px;
  position: relative;
  background-color: white;
  max-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 10px 10px 12px rgba(0 ,0, 0, 0.4);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: 'Soft Marshmallow', cursive;
  font-size: 15px;
  transition: color 0.2s;
  opacity: 100%;
}

.nav-links a:hover {
  color: #00a9e0;
}

.btn-navbar {
  background-color: #fff;
  color: #333;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-left: auto;
  border: 2px solid #333 ;
  order: 1;
  transition: background-color 0.3 ease, color 0.3 ease;
}

.btn-navbar:hover {
  background-color: #00a9e0;
  border-color: #00a9e0;
  color: #fff;
}


/* HERO */
.hero {
 font-size: 40px;
  text-align: center;
  font-weight: bold;
  justify-items: center;
  margin-top: 120px;
  min-height: auto;    /* GANTI dari 100vh */
  height: auto;
  justify-content: center;
  padding-bottom: 80px ;
  margin-bottom: 0;
  padding-top: 110px;
}


.badge {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  background-color: #e7f5ff;
  color: #0077b6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-weight: bold;
  height: 40px;        /* atur tinggi badge */
  padding: 0 20px;     /* jarak kiri kanan */
  text-align: center;
  margin: 0 auto;      /* biar badge di tengah halaman */
  max-width: fit-content;
}

.hero-title {
  text-align: center;
  margin-top: 10px; /* atur sesuai posisi */
  line-height: 80px;
}

.festival-title {
  font-size: 60px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: white;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);
  margin: 0;
}

.main-title {
  font-size: 120px;
  font-weight: 900;
  color: white;
  text-shadow: 6px 6px 10px rgba(0, 0, 0, 0.45);
  font-family: 'Soft Marshmallow', cursive; 
  margin: 0;
}

.spacer {
  height: 700px;
}


/* About Section */
.about {
   display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 20px 20px;
  scroll-margin-top: 100px;
  overflow-wrap: anywhere;
  padding-bottom: 120px;
}

.about-title h1 {
   font-size: 60px;
  color: white;
  font-family: 'Soft Marshmallow', sans-serif;
  letter-spacing: 4px;
  margin: 0;
  padding: 0;
  text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.45);
  font-weight: bold;
  paddi

}

.about-isi p {
  font-family: 'Montserrat-Reguler', sans-serif;
  font-size: 18px;
  color: white;
  line-height: 1.6;
  max-width: 1000px;
  margin-bottom: 0;
  padding: 0 20px;
  font-weight: bold;
  padding-top: 80px;
}
.video{
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
.play-button {
      cursor: pointer;
      width: 80px;
      max-width: 100%;
      height: auto;
      padding-top: 40px;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 999999;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
    }

    .modal video {
      width: 90%;
      max-width: 800px;
      border-radius: 10px;
      height: auto;
    }
    .modal-content {
  position: relative;

}
    .modal.show {
      display: flex;

    }

    .close-btn {
      position: absolute;
      top: -100px;
      right: 5px;
      color: white;
      font-size: 60px;
      cursor: pointer;
    }
.join {
  padding-top: 100px;
}    
.join h1 {
  text-align: center;
  font-family: 'Soft Marshmallow', sans-serif;
  letter-spacing: 4px;
  font-size: 40px;
  text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.45);
  padding-bottom: 100px;
  padding-top: 100px;
}
.box {
  padding: 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding-bottom: 100px;
  
}

.card {
  flex: 1 1 300px; /* grow, shrink, basis */
  max-width: 350px;
  height: 350px;
  background-color: white;
  border-radius: 30px;
  padding: 25px 20px;
  text-align: center;
  justify-items: center;
  box-shadow: 10px 10px 10px #00a9e0;
  transition: transform .2s ease;
}

.card:hover {
  transform: scale(1.05);
}

.icon {
  font-size: 30px;
  margin-bottom: 20px;
  
}

.card h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #000;
}

.card p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #000;
}

.btn {
  border: 2px solid #000;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  cursor: pointer;
  color: #000;
  background-color: #fff;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  color: #fff;
  background-color: #00a9e0;
}

.kanan {
  background-color: #fff;
}

.kiri {
  background-color: #fff;

}
.spasi {
 min-height: 1150px;
}
.gallery {
  padding-top: 450px;
  width: 100%;
  text-align: center;
}

.gallery h1 {
    font-family: 'Soft Marshmallow', sans-serif;
  background: linear-gradient(to right, orange, yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 40px;
  letter-spacing: 2px;
  font-size: 60px;
  filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.45));
}
 .slider::-webkit-scrollbar {
	 height: 5px;
	 width: 150px;
	 display: none;
}
 .slider::-webkit-scrollbar-track {
	 background: transparent;
}
 .slider::-webkit-scrollbar-thumb {
	 background: #888;
}
 .slider::-webkit-scrollbar-thumb:hover {
	 background: #555;
}
 .slider img:hover {
	 transform: scale(1.05);
	 box-shadow: 10px 10px 10px rgba(0,0,0,0.15);
}
 .slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
}

.slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.slide {
  flex: 0 0 auto;
  width: 250px;
  height: 350px;
}

.slide img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s;
}

.control-prev-btn, .control-next-btn {
  position: absolute;
  bottom: 0;
  z-index: 10;
  color: #000;
}

.control-prev-btn {
  right: 50.5%;
}

.control-next-btn {
  left: 50.5%;
}

.prev, .next {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.5;
  border: #000 solid;
  transition: 0.3s;

}

.prev:hover, .next:hover {
  background-color: #00a9e0;
  color: white;
  opacity: 1;
}
.slide img.zoomed{
	  width: 500px;
    height: 600px;
    position: fixed;
    left: 25%;
    top: 0%;
    z-index: 1000;
		transform: scale(1) translatey(0) !important; 

}

.quote {
  font-family: 'Roboto', sans-serif;
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 300px;
    }

    .title {
     font-family: 'Soft Marshmallow', cursive;
     letter-spacing: 2px;
     background: -webkit-linear-gradient(#F68C1F, #FFE600);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     filter: drop-shadow(4px 4px rgba(0, 0, 0, 0.45));
     font-size: 60px;
     padding-bottom: 20px;
    }
.quote {
  position: relative;
  min-height: 800px;
  text-align: center;
}

.testimonial {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}


    .avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 2px solid #999;
      object-fit: cover;
      background-color: #f0f0f0;
      margin: 0 auto;
    }

    .text-testimoni {
      font-weight: 600;
      font-size: 1.1rem;
      color: #111;
      max-width: 800px;
      margin: 1.5rem auto 0 auto;
      width: 100%; 
    }

    .author {
      font-size: 0.9rem;
      font-style: bold;
      margin-top: 0.5rem;
      color: #000;
    }

    .job {
      font-size: 0.8rem;
      font-style: italic;
      font-weight: 200;
      color: #000;
      margin-top: 0.1rem;
    }

    .controls {
      margin-top: 1.8rem;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
    }
f
    .btn-circle {
      border: 2px solid ;
      border-radius: 50%;
      background: white;
      width: 48px;
      height: 48px;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-circle:hover {
      background-color: #00a9e0;
      border-color: #fff;
      color: white;
    }

    .btn-icon {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 3;
      fill: none;
    }
.contact {
  padding-top: 150px;
  padding-bottom: 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: center;
  padding: 20px 30px;
  border: 2px solid #1e4acc;
  border-radius: 12px;
  background: white;
  width: 600px;
  height: 200px;
  margin: 30px auto;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.grid-img img {
  width: 350px;
  max-width: 100%;
  height: auto;
}

.grid-content h2 {
  font-size: 1.8rem;
  font-family: 'Soft Marshmallow', sans-serif;
  background: linear-gradient(to right, orange, yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: 2px;
  filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.45));
}

.contact-item {
  display: flex;
  align-items: center;
  margin: 8px 0;
  font-size: 1rem;
  font-family: Arial, sans-serif;
}

.icon {
  width: 40px;
  margin-right: 10px;
}
.contact-item a {
  padding-bottom: 20px;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  font-family: 'Montserrat',sans-serif;
}


.sosial {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  align-items: center;
  position: relative;
  padding-bottom: 1050px;
  
}

.kontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jdl {
  font-family: 'Soft Marshmallow', sans-serif;
  background: linear-gradient(to right, orange, yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 40px;
  letter-spacing: 2px;
  font-size: 60px;
  filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.45));
}

.social-icons {
  display: flex;
  flex-direction: row; /* Menyusun ikon ke bawah */
  gap: 25px;
  align-items: center;
}

.icon-circle {
  width: 155px;
  height: 155px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  text-decoration: none;
  color: #fff ;
  background: linear-gradient(to left, orange, lightyellow);
  transition: 1.5 ease;
  
}

.icon-circle:hover {
  background: linear-gradient(to right, lightgreen, yellow);
  border-color: #0077b6;
  transform: scale(1.05) ;
}
@media (max-width: 1280px) {
  body {
    min-height: 420vh ;
    max-height: 850vh;
  }
  .spacer {
    height: 800px;
  }
  .spasi {
    min-height: 200px;
    max-width: 250px;
  }
  .quote {
    min-height: 100px;
  }
  .sosial {
    padding-bottom: 1050px;
  }
}
@media (max-width: 1050px) {
  .spacer {
    height: 300px;
  }
  .sosial {
    padding-bottom: 350px;
  }
}

/* RESPONSIVE Tablet */
@media (max-width: 800px) {
body {
    min-height: 100vh;
    background-image: url(../bahan/Vektor/bg/mobile.png);
  }
  .hamburger {
  display: block; /* 👈 hanya muncul di mobile */
  margin-top: 0.1rem;
  right: 20px;
  top: 10px;
  z-index: 1100;
  font-size: 35px;
  
  }
  
  .nav-container {
    background: none;
    box-shadow: none;
    padding: 10px;
    justify-content: flex-end;
    flex-direction: column;
    max-height: 200px;
    border: none;
  }
  


  .nav-hero {
    width: 90%;
    max-width: 1000px;
    padding: 5vh 0.5vw;
    background-position: center;
    background-size: cover;
  }
  .nav-links {
    display: none; /* sembunyikan navbar default */
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 60px;
    padding: 10px;
    gap: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 999;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
    
  }

  .btn-navbar {
    display: none;
  }
  .badge {
    font-size: 10px;
    height: 25px;
    padding: 0 12px;
  }
  .hero {
    padding-top: 0.1rem;
    padding-bottom: 13rem;
  }
  .hero-title {
    line-height: 3rem;
  }
  .festival-title {
  font-size: 2rem;
  
  }
  
  .main-title {
  font-size: 4rem;
  }
  .spacer {height: 100px;}
  .about {
    padding-bottom: 0.5px;
  }
  .about-title h1 {
    font-size: 2.5rem;
    padding-bottom: 0px;
  }
  .about-isi p {
    font-size: 0.75rem;
    padding-top: 5px;
  }
    .close-btn {
    font-size: 45px;
    top: -30px;
    right: 30px;
  }

  .modal video {
    width: 75%;
  }

  .play-button {
    width: 60px;
    padding-bottom: 20px;
  }
  .spasi {
    min-height: 500px;
    max-width: 250px;}
  
  .join h1 {
    font-size: 2rem;
    padding-bottom: 5px;
  }
    .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 5px;
  }

  .card {
    width: 70px;              /* ❗ Lebar super kecil */
    height: 250px;             /* ❗ Tinggi super kecil */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 6px 6px 6px #00a9e0;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .icon img {
    width: 60px;
    margin-bottom: 0;
    margin-top: 20px;
  }

  .card h2 {
    font-size: 16px;
  }

  .card p {
    font-size: 14px;
  }

  .btn {
    font-size: 18px;
    padding: 6px 10px;
    margin-bottom: 15px;
  }
  
  .spasi {
    height: 100px;
  }
  .gallery {
    padding-top: 50px;
  }
  .gallery h1 {
   font-size: 2.5rem;
   padding-bottom: 20px;
  }
    .slide {
    width: 180px;
    height: 250px;
  }

  .control-prev-btn {
    right: 50.5%;
  }

  .control-next-btn {
    right: 50.5;
  }

  .prev, .next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .quote {
    padding-top: 400px;
    padding-bottom: 100px;
  }
  .quote h1 {
   font-size: 2.5rem;
   padding-bottom: 20px;
  } 
  .avatar {
    min-height: 40px;
    min-width: 40px;
    max-width: 60px;
    max-height: 60px;
  }
  .text-testimoni {
    width: 80%;
    font-size: 1rem;
  }
  .author {
   font-size: 0.8rem;
  }
  .job {
    font-size: 0.7rem;
  }
.contact {
  padding-top: 20px;
  padding-bottom: 150px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: center;
  padding: 20px 30px;
  border: 2px solid #1e4acc;
  border-radius: 12px;
  background: white;
  width: 500px;
  height: 250px;
  margin: 30px auto;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.grid-img img {
  width: 350px;
  max-width: 100%;
  height: auto;
}

.grid-content h2 {
  font-size: 1.8rem;
  font-family: 'Soft Marshmallow', sans-serif;
  background: linear-gradient(to right, orange, yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: 2px;
  filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.45));
}

.contact-item {
  display: flex;
  align-items: center;
  margin: 8px 0;
  font-size: 1rem;
  font-family: Arial, sans-serif;
}

.icon {
  width: 40px;
  margin-right: 10px;
}
.contact-item a {
  padding-bottom: 20px;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  font-family: 'Montserrat',sans-serif;
}

  .sosial {
    padding-top: 5px;
    padding-bottom: 500px;
  }
  .jdl {
    font-size: 2rem;
  }
  .icon-circle {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  
  }

/* Responsive Handphone */
@media (max-width: 540px) {
  body {
    background-image: url(../bahan/Vektor/bg/mobile.png);
    min-height: 100vh;
    max-height: 400vh;
    background-repeat: no-repeat;
    
  }
  
  
   .hamburger {
  display: block; /* 👈 hanya muncul di mobile */
  margin-top: 0.1rem;
  right: 20px;
  top: 10px;
  z-index: 1100;
  font-size: 25px;
  }
  
  .nav-container {
    background: none;
    box-shadow: none;
    padding: 10px;
    justify-content: flex-end;
    flex-direction: column;
    max-height: 200px;
    border: none;
  }
  

  .nav-hero {
    width: 90%;
    max-width: 1000px;
    padding: 5vh 0.5vw;
    background-position: center;
    background-size: cover;
  }
  .nav-links {
    display: none; /* sembunyikan navbar default */
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 60px;
    padding: 10px;
    gap: 20px;
    width: 250px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 999;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
  }

  .btn-navbar {
    display: none;
  }
  .badge {
    font-size: 10px;
    height: 25px;
    padding: 0 12px;
  }
  .hero {
    padding-top: 0rem;
    padding-bottom: 2rem;
    margin-top: 60px;

  }
  .hero-title {
    line-height: 1.5rem;
  }
  .festival-title {
  font-size: 1rem;
  
  }

  .main-title {
  font-size: 2.5rem;
  }
  .spacer {height: 150px;}
  .about {
    padding-bottom: none;
  }
  .about-title h1 {
    font-size: 1.25rem;
  }

  .about-isi p {
    font-size: 0.5rem;
    padding-top: 10px;
  }
    .close-btn {
    font-size: 30px;
    top: -40px;
    right: 15px;
  }

  .modal video {
    width: 95%;
  }

  .play-button {
    width: 30px;
    padding-top: 30px;
    padding-bottom: 10px;
    text-wrap: inherit;
  }
  
  .join {
    margin-top: -180px;
  }
  .join h1 {
    font-size: 1rem;
  }
    .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 5px;
  }

  .card {         
    height: 180px;             /* ❗ Tinggi super kecil */
    padding: 6px;
    min-width: 180px;
    flex: 0 0 auto;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #00a9e0;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .icon img {
    width: 30px;
    margin-bottom: 0;
    margin-top: 20px;
  }

  .card h2 {
    font-size: 12px;
  }

  .card p {
    font-size: 8px;
    margin-botto  m:  10px;
  }

  .btn {
    font-size: 10px;
    padding: 6px 10px;
    margin-bottom: 15px;
  }
  .spasi {
    height: 50px;
  }
  .gallery {
    padding-bottom: 50px;
    margin-top: -300px;
    padding-top: 200px;
  }
  .gallery h1 {
    font-size:  1.5rem;
    padding-bottom: 20px;
  }
    .slide {
    width: 120px;
    height: 180px;
  }
   .prev, .next {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
   .quote {
    margin-top: -350px;
  }
  .quote h1 {
   font-size: 1.5rem;
   padding-bottom: 20px;
  } 
  .avatar {
    min-height: 40px;
    min-width: 40px;
    max-width: 60px;
    max-height: 60px;
  }
  .text-testimoni {
    width: 100%;
    font-size: 0.7rem;
  }
  .author {
   font-size: 0.6rem;
  }
  .job {
    font-size: 0.5rem;
  }
  .btn-circle {
    width: 30px;
    height: 30px;
    border-radius: 20px;
  }

  .icon {
    width: 24px;
  }
  .contact {
  padding-top: 0px;
  padding-bottom: 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items: center;
  padding: 20px 30px;
  border: 2px solid #1e4acc;
  border-radius: 12px;
  background: white;
  width: 330px;
  height: 200px;

  margin: 30px auto;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.grid-img img {
  width: 150px;
  max-width: 100%;
  height: auto;
}

.grid-content h2 {
  font-size: 1.5rem;
  font-family: 'Soft Marshmallow', sans-serif;
  background: linear-gradient(to right, orange, yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: 2px;
  filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.45));
}

.contact-item {
  display: flex;
  align-items: center;
  margin: 8px 0;
  font-size: 0.7rem;
  font-family: 'Montserrat', sans-serif;
}

.icon {
  width: 40px;
  margin-right: 10px;
}
.contact-item a {
  padding-bottom: 20px;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  font-family: 'Montserrat',sans-serif;
}

    .sosial {
    padding-top: 5px;
    padding-bottom: none !important;
  }
  .jdl {
    font-size: 1.3rem;
  }
  .icon-circle {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  
}

.modal-peringatan {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-peringatan.show {
  display: flex;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  max-width: 90%;
}

.popup-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  color: orange;
}

.popup-content h2 {
  color: #333;
  margin-bottom: 10px;
  font-family: 'Soft Marshmallow', cursive;
}

.popup-content p {
  font-size: 1rem;
  color: #444;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

html, body {
  overflow-x: hidden;
}
/* ===== POPUP GALERI ===== */
.popup-galeri {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.popup-galeri img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-btn-galeri {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 60px;
  color: white;
  cursor: pointer;
}


.nav-btn-galeri {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 100001; /* pastikan di atas gambar */
}
.nav-btn-galeri.left { left: 20px; }
.nav-btn-galeri.right { right: 20px; }
.nav-btn-galeri:hover { background: rgba(0, 0, 0, 0.6); }

/* Mobile responsive */
@media (max-width: 768px) {
  .nav-btn-galeri { font-size: 30px; }
  .close-btn-galeri { font-size: 30px; }
}

