body {
  margin: 30px auto 0 auto;
  max-width: 720px;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  padding-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
}

.hamburger {
  width: 32px;
  display: none;
  transition: transform 0.3s ease;
}

.hamburger.active {
  transform: rotate(90deg);
}

.container-logo {
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-items: center;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.st-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.nd-name {
  font-family: "Libre Baskerville", serif;
}

.container-main-head {
  position: relative;
  overflow: hidden;
  width: 250px;
  min-height: 240px;
  border: 4px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  background-image: url("/assets/budaya-crb.jpg");
  background-size: cover;
}

.container-main-head .inner-items {
  position: absolute;
  bottom: 20px;
  left: 10px;
  z-index: 2;
  color: white;
}

.container-main-head .inner-items h1 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.container-main-head .inner-items p {
  font-size: 14px;
  margin: 5px 0;
  font-weight: 400;
  font-family: "Libre Baskerville", serif;
}

.head-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: rgb(72, 72, 72);
  margin-top: 60px;
}

.head-section-text p {
  color: grey;
  font-size: 14px;
  font-weight: 600;
}

.head-section-text p span {
  margin-left: 200px;
}

.gradient-blur {
  z-index: 5;
  inset: auto 0 0 0;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  bottom: -100px;
  left: 0;
}
.gradient-blur > div,
.gradient-blur::before,
.gradient-blur::after {
  position: absolute;
  inset: 0;
}
.gradient-blur::before {
  content: "";
  z-index: 1;
  backdrop-filter: blur(0.5px);
  mask: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 12.5%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 0) 37.5%
  );
}
.gradient-blur > div:nth-of-type(1) {
  z-index: 2;
  backdrop-filter: blur(1px);
  mask: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 12.5%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 1) 37.5%,
    rgba(0, 0, 0, 0) 50%
  );
}
.gradient-blur > div:nth-of-type(2) {
  z-index: 3;
  backdrop-filter: blur(8px);
  mask: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 1) 37.5%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 62.5%
  );
}
.gradient-blur > div:nth-of-type(3) {
  z-index: 4;
  backdrop-filter: blur(12px);
  mask: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 37.5%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 62.5%,
    rgba(0, 0, 0, 0) 75%
  );
}

.gradient-blur::after {
  content: "";
  z-index: 8;
  backdrop-filter: blur(64px);
  mask: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 87.5%,
    rgba(0, 0, 0, 1) 100%
  );
}

.label {
  border-radius: 60px;
  background-color: #cacaca;
  margin-top: 20px;
  width: fit-content;
  display: flex;
  font-family: "Archivo", sans-serif;
  align-items: center;
  gap: 5px;
  border: 3px solid white;
  padding: 10px 14px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.label-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  color: white;
  opacity: 0.6;
}

.label h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 0;
  color: #002251;
}

.container-items {
  display: flex;
  flex-direction: row;
  gap: 60px;
  margin-top: 50px;
}

.inner-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container-items h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #ae9101;
}

.container-items p {
  font-size: 16px;
  color: rgb(57, 57, 57);
  margin: 0;
}

.slide {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 70%;
  height: auto;
  border-radius: 20px;
}

.slide-btn {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.slide-btn > div {
  width: 60px;
  height: 5px;
  border-radius: 20px;
  background-color: #002251;
  opacity: 0.6;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slide-btn > div.active {
  background-color: #ae9101;
  opacity: 1;
}

.slide-text {
  font-weight: 600;
  font-size: 16px;
  opacity: 1;
}

.slideWayang {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 30%;
}

.slideWayang img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.image-batik {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.image-batik h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: rgb(45, 45, 45);
  margin-top: 10px;
}

.image-batik-item {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.container-image-batik {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.container-image-batik > div {
  flex: 1;
  max-height: 200px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-color: rgb(144, 144, 144);
  padding: 0px 0px 10px 0px;
}

.container-image-batik > div > p {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgb(45, 45, 45);
  text-align: center;
  margin-top: 5px;
}

.container-image-batik > div > img {
  width: calc(100% - 5px);
  border-radius: 20px;
  border: 5px solid white;
}

.container-kuliner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
}

.container-kuliner .subhead-kuliner {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  color: #646464;
  padding: 0px;
  margin-top: -40px;
  font-size: 16px;
  text-align: center;
  line-height: 20px;
}

.container-content-situs {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: -30px 0;
}

.container-content-situs > div {
  min-width: 200px;
  border-radius: 32px;
  border: 4px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  padding: 10px;
  overflow: hidden;
  min-height: 260px;
  position: relative;
}

.situs-box-item > .cont-text {
  position: absolute;
  bottom: 20px;
  left: 16px;
  color: white;
  z-index: 4;
}

.situs-box-item > .cont-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  margin: 10px 0px;
}

.situs-box-item > .cont-text p {
  font-size: 14px;
  font-weight: 300;
  color: white;
  margin: 0;
  text-align: left;
}

.container-content-situs > div:nth-of-type(1) {
  background-image: url("/assets/empal-gentong.jpg");
  background-size: cover;
  background-position: center;
}

.container-content-situs > div:nth-of-type(2) {
  background-image: url("/assets/tahu-gejrot.jpg");
  background-size: cover;
  background-position: center;
}

.container-content-situs > div:nth-of-type(3) {
  background-image: url("/assets/kerupuk\ udang.jpg");
  background-size: cover;
  background-position: center;
}

.adat-upacara > div:nth-of-type(1) {
  background-image: url("/assets/panjang-jimat.png");
  background-size: cover;
  background-position: center;
}

.adat-upacara > div:nth-of-type(2) {
  background-image: url("/assets/maulid-nabi.jpg");
  background-size: cover;
  background-position: center;
}

.adat-upacara > div:nth-of-type(3) {
  background-image: url("/assets/grebeg-syawal.jpg");
  background-size: cover;
  background-position: center;
}

footer {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 40px;
}

.logo-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}

.logo-container img {
  width: 20px;
}

.st-name-footer,
.nd-name-footer {
  font-size: 16px;
  font-weight: 800;
}

.nd-name-footer {
  font-family: "Libre Baskerville", serif;
}

.desc-footer {
  font-size: 16px;
  font-family: "Archivo", sans-serif;
  color: gray;
  margin-top: 10px;
}

footer .container-1 {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.container-2 {
  width: 60%;
}

.container-2 h3 {
  font-weight: 600;
  font-size: 16px;
}

.container-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container-2 ul li {
  margin-bottom: 10px;
}

.container-2 ul li a {
  text-decoration: none;
  color: rgb(84, 84, 84);
}

.container-3 {
  width: 30%;
}
.container-3 > p {
  font-size: 16px;
  font-family: "Archivo", sans-serif;
  color: rgb(39, 39, 39);
}

.container-3 h3 {
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 600px) {
  body {
    margin: 20px auto 0 auto;
    padding: 0 30px;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
  }

  .hamburger:hover {
    transform: scale(1.1);
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 8px;
    margin: 10px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9;
  }

  .st-name {
    font-size: 14px;
  }

  .container-logo img {
    width: 20px;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
    margin: 0;
  }

  .nav-menu li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
  }

  .nav-menu a:hover {
    color: #666;
  }

  .container-logo {
    flex-direction: row;
    align-items: center;
  }

  .head-section {
    flex-direction: column;
    align-items: center;
  }

  .head-section-text {
    padding: 10px;
    font-size: 14px;
  }

  .container-items {
    margin-top: 20px;
    flex-direction: column;
  }

  .inner-items h3 {
    font-size: 16px;
  }

  .inner-items p {
    font-size: 14px;
  }

  .label {
    width: fit-content;
    padding: 5px 10px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .container-items h3 {
    font-size: 18px;
  }

  .container-items p {
    font-size: 14px;
  }

  .container-kuliner .subhead-kuliner {
    font-size: 14px;
    text-align: center;
    margin-top: -60px;
  }

  .inner-text {
    margin-top: 80px;
  }

  .slideWayang {
    max-width: 100%;
    width: 100%;
    margin-top: 50px;
  }

  .container-image-batik {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .container-content-situs {
    flex-direction: column;
  }

  footer {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .container-2 ul {
    margin-top: 20px;
  }

  footer .container-3 {
    width: 100%;
  }
}
