#fw-section-footer {

/* Custom Footer Styling */
.custom-footer {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 40px 0;
  background-color: #2d2d2d;
  color: white;
  border-top: 3px solid #333;
}

.footer-item {
  text-align: center;
}

.footer-link {
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  background-color: #444;
  border-radius: 30px;
  transition: background-color 0.3s, transform 0.3s;
  display: inline-block;
  letter-spacing: 1px;
}

.footer-link:hover {
  background-color: #ff6600;
  color: white;
  transform: translateY(-3px);
}

/* Add images below the footer links using pseudo-elements */
.footer-item .footer-link::after {
  content: "";
  display: block;
  width: 80px; /* Adjust the width as needed */
  height: 80px; /* Adjust the height as needed */
  margin: 20px auto 0; /* Add margin above the image */
  background-size: cover;
  background-position: center;
}

/* ART WORK image */
.footer-item a[href*="art-work"]::after {
  background-image: url('https://imgur.com/ybtBprU'); /* Art Work Image */
}

/* SHOP image */
.footer-item a[href*="shop"]::after {
  background-image: url('https://cdn.shopify.com/s/files/1/0402/7595/9944/products/pocket-smiley_1200x1200.jpg'); /* Shop Image */
}

/* INSTAGRAM image */
.footer-item a[href*="instagram"]::after {
  background-image: url('https://imgur.com/LZ8hgJc.jpg'); /* Instagram Image */
}
}



#fw-section-custom-html-d8934f02-c674-4957-86d1-31cf68cfa581 {

/* Container for the image slider */
.image-slider {
  position: relative;
  width: 90%; /* Slightly smaller than full width to create space on sides */
  height: 60vh; /* Dynamic height for better aspect ratio */
  margin: 20px auto; /* Center and add space around the slider */
  padding: 10px; /* Padding inside the container */
  box-sizing: border-box; /* Include padding in the dimensions */
  overflow: hidden;
  background-color: #ffffff; /* Optional: Add background color */
  border-radius: 10px; /* Slight rounding for a modern look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Style for the images inside the slider */
.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0; /* Hide images by default */
  transition: opacity 1s ease-in-out; /* Smooth fade transition */
}

/* Show the first image */
.slider-img:first-child {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .image-slider {
    width: 95%; /* Adjust width for smaller screens */
    height: 40vh; /* Reduce height for mobile */
    margin: 10px auto; /* Smaller margin */
  }
}
}




#fw-section-custom-html-57b0a5aa-fd07-468e-bf47-f098526b13a6 {

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  justify-items: center;
  margin: 30px auto;
}

.gallery-item {
  text-align: center;
}

.gallery img {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.caption {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  text-align: center;
}

.lightbox img {
  max-width: 80%;
  max-height: 80vh;
  margin-top: 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.lightbox:target {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  padding: 12px;
  transform: translateY(-50%);
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

.lightbox-caption {
  order: -1;             /* taruh judul DI ATAS gambar */
  font-size: 24px;       /* lebih besar */
  font-weight: 700;      /* lebih tebal */
  text-align: center;    /* benar-benar di tengah */
  margin: 0 0 18px;      /* jarak ke gambar */
  color: #333;
}
.lightbox img,
.lightbox-caption { max-width: 80%; }

}
#fw-section-custom-html-e074488e-5385-4c3a-9d36-1f06253e937d {

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  justify-items: center;
  margin: 30px auto;
}

.gallery-item {
  text-align: center;
}

.gallery img {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.caption {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  text-align: center;
}

.lightbox img {
  max-width: 80%;
  max-height: 80vh;
  margin-top: 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.lightbox:target {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  padding: 12px;
  transform: translateY(-50%);
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

.lightbox-caption {
  order: -1;             /* taruh judul DI ATAS gambar */
  font-size: 24px;       /* lebih besar */
  font-weight: 700;      /* lebih tebal */
  text-align: center;    /* benar-benar di tengah */
  margin: 0 0 18px;      /* jarak ke gambar */
  color: #333;
}
.lightbox img,
.lightbox-caption { max-width: 80%; }

}









#fw-section-custom-html-e0c8ed98-5975-4f98-953f-27e263735802 {

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  justify-items: center;
  margin: 30px auto;
}

.gallery-item {
  text-align: center;
}

.gallery img {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.caption {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  text-align: center;
}

.lightbox img {
  max-width: 80%;
  max-height: 80vh;
  margin-top: 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.lightbox:target {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  padding: 12px;
  transform: translateY(-50%);
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

.lightbox-caption {
  order: -1;             /* taruh judul DI ATAS gambar */
  font-size: 24px;       /* lebih besar */
  font-weight: 700;      /* lebih tebal */
  text-align: center;    /* benar-benar di tengah */
  margin: 0 0 18px;      /* jarak ke gambar */
  color: #333;
}
.lightbox img,
.lightbox-caption { max-width: 80%; }
.lightbox .close {
  z-index: 1001;         /* pastikan di atas gambar */
  padding: 8px 10px;     /* perbesar area klik */
  line-height: 1;
}

}
#fw-section-custom-html-70ade956-e642-4998-9c8d-5a854b3e6936 {

/* Custom Section Styling */
.custom-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: white;
  flex-wrap: wrap;
  gap: 20px;
}

.section-item {
  text-align: center;
  flex: 1 1 30%;
  max-width: 30%;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
}

.section-item:hover {
  transform: scale(1.05);
}

.section-link {
  font-size: 24px;
  font-weight: bold;
  color: black;
  text-decoration: none;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  transition: background-color 0.3s, color 0.3s;
}

.section-link:hover {
  background-color: #800080; /* Purple hover color */
  color: white;
}

/* Image Styling */
.section-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* Ensure square aspect ratio */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for better design */
}

/* Mobile Styles */
@media only screen and (max-width: 768px) {
  .custom-section {
    flex-direction: column; /* Stack items vertically */
    padding: 20px 10px;
  }

  .section-item {
    flex: 1 1 auto; /* Allow items to adjust width automatically */
    max-width: 100%; /* Full width */
    margin: 15px 0;
  }

  .section-image {
    width: 100%; /* Full width */
    max-width: 300px; /* Optional: Limit max width */
    height: 300px; /* Explicit height for consistency */
    margin: 0 auto; /* Center images */
  }

  .section-link {
    font-size: 20px; /* Adjust font size for smaller screens */
    margin-top: 10px; /* Add space above the text */
  }
}
}
#fw-section-custom-html-72c712b8-9cea-496a-a0fe-9aebed1ae9dc {

/* Image (now clickable <a>) */
.section-image {
  display: block;               /* penting: bikin anchor full area */
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;        /* no underline on anchor */
}

/* Accessibility focus */
.section-image:focus-visible {
  outline: 3px solid #800080;
  outline-offset: 4px;
}

/* (Opsional) kamu boleh hapus blok .section-link lama; sudah tidak dipakai */

/* Mobile override kamu tetap berfungsi */
@media only screen and (max-width: 768px) {
  .custom-section { flex-direction: column; padding: 20px 10px; }
  .section-item { flex: 1 1 auto; max-width: 100%; margin: 15px 0; }
  .section-image { width: 100%; max-width: 300px; height: 300px; margin: 0 auto; }
}
/* --- Force 3 cards in a row on desktop/tablet --- */
@media (min-width: 900px) {
  .custom-section{
    display: grid;                           /* pakai grid biar stabil */
    grid-template-columns: repeat(3, 1fr);   /* 3 kolom */
    gap: 28px;                               /* jarak antar kartu */
    max-width: 1200px;                       /* center halaman */
    margin: 12px auto 40px;
    align-items: stretch;
  }
  .section-item{ max-width: none; }          /* hapus batas 30% */
}

/* --- Card look: shadow & pemisah dari background putih --- */
.section-item:hover{ transform: none; }      /* jangan scale container (biar layout gak geser) */

.section-image{
  display: block;                            /* anchor full area (klikable) */
  border-radius: 14px;
  background-color: #fff;                    /* pemisah dari bg putih halaman */
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.section-item:hover .section-image{
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

}