* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  /* border: 1px solid black; */
}

:root {
  --font-title: "Ubuntu", serif;
  --font-paragraf: "Poppins", sans-serif;
  --size-paragraf: 0.9rem;
  --size-title: 2rem;
  --pramery-color: #f3e5d8;
  --text-color: #675748;
  --button-color: #cfa47a;
}

html,
body {
  scroll-behavior: smooth;
  font-family: var(--font-paragraf);
}

nav {
  width: 100%;
  height: 80px;
  background-color: var(--pramery-color);
  display: flex;
  padding: 0 8%;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1;
  /* transition: all 3s ease-in-out; */
}

nav ul {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a img {
  width: 200px;
}

nav ul li a {
  transition: all 0.2s ease-in-out;
  font-family: var(--font-paragraf);
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--text-color);
}

nav ul li a:hover {
  /* font-weight: 500; */
  color: #000000;
}

nav .icon {
  display: none;
}

nav .contactt {
  padding: 10px 25px;
  /* background-color: var(--button-color); */
  background-color: #fff;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid #cda351;
  color: #cda351;
}
/* nav .contactt:hover {
  font-weight: bold;
  border: 2px solid #cda351;
} */

/* section main */

section.main {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)), url(../gambar/background.jpg);
  display: flex;
  width: 100%;
  height: 100vh;
  padding: 0 8%;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease;
  transition: all 0.5s;
}
section.main h1 {
  font-size: 3rem;
  font-family: var(--font-title);
  color: #f3e5d8;
  position: relative;
}
section.main h1::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100px;
  bottom: 0;
  right: 50%;
  border-radius: 10px;
  transform: translateX(50%);
  background-color: #ffffff;
}
section.main h1.typing {
  display: inline-block;
  /* margin-top: 20px; */
  border-right: 2px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  animation: blink 0.5s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

section.main p {
  margin-top: 20px;
  font-size: 1rem;
  font-family: var(--font-paragraf);
  color: #f3e5d8;
  font-weight: 600;
  text-transform: uppercase;
}

section.main .button-pesan {
  display: inline-block;
  margin-top: 30px;
  color: #ffffff;
  border: 2px solid #f2f2f2;
  background-color: var(--button-color);
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 5px;
}

section.main img {
  width: 500px;
  margin-top: 100px;
}

.no-wa {
  position: fixed;
  right: 120px;
  top: 80%;
}

.no-wa img {
  position: absolute;
  width: 80px;
  transition: all 0.2s;
}

.no-wa img:hover {
  position: absolute;
  width: 70px;
}
section.about {
  background-color: #f9f9f9;
  color: #333;
  padding: 80px 6%;
  font-family: 'Poppins', sans-serif;
}

.about .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about .gambar {
  flex: 1;
  text-align: center;
}

.about .gambar img {
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about .gambar img:hover {
  transform: scale(1.03);
}

.about .paragraf {
  flex: 1;
}

.about .paragraf h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about .paragraf p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
}

section.about-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 8%;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)),
              url(../gambar/gambar-proses-2.jpeg) center/cover no-repeat;
  background-attachment: fixed;
  font-family: 'Poppins', sans-serif;
  gap: 40px;
}

section.about-2 h1 {
  font-size: 2rem;
  font-weight: 600;
  max-width: 700px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

section.about-2 .gambar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}

section.about-2 .gambar img {
  width: 300px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.about-2 .gambar img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

section.product {
  padding: 80px 6%;
  background-color: #f6f2ed;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.product .title-information {
  text-align: center;
  margin-bottom: 60px;
}

.product .title-information h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.product .title-information h1::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  border-radius: 2px;
}

.product .title-information p {
  font-size: 1.1rem;
  color: #666;
}

.product .paket {
  margin-bottom: 60px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.product .paket h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
  color: #1f1f1f;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}
.product .paket .gambar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.product .paket .gambar img {
  width: 100%;
  height: 350px; /* atau 300px, sesuaikan preferensimu */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product .paket .gambar img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  user-select: none;
  transition: 0.3s;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.caption-container {
  text-align: center;
  background-color: #222;
  color: #fff;
  padding: 10px 0;
  font-size: 1rem;
}

footer {
  margin-top: 50px;
  background-color: #3e1801;
  text-align: center;
  padding: 30px 0;
  color: #fff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}
.footer {
  background-color: var(--text-color);
  color: white;
  padding: 48px 16px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.footer h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer p,
.footer li {
  color: #ffff;
  margin: 0 0 8px 0;
  line-height: 1.5;
}
.footer a {
  color: #ffff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: white;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .social-icons {
  display: flex;
  gap: 16px;
}
.footer .social-icons img,
.footer .social-icons svg {
  width: 24px;
  height: 24px;
}
.footer-bottom {
  text-align: center;
  margin-top: 48px;
  color: #718096;
}

footer a img {
  width: 150px;
}

footer p {
  margin-bottom: 30px;
}

footer .media-sosial {
  display: flex;
  width: 130px;
  margin: auto;
  justify-content: space-around;
}

footer .media-sosial a img {
  width: 20px;
}

/* Responsive */
@media (max-width: 950px) {
  nav a img {
    width: 100px;
  }

  nav .icon {
    display: block;
    /* transition: all 3s ease-in-out !important; */
  }
  nav ul {
    width: 100%;
    height: 40vh;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    top: 75px;
    right: -100%;
    position: absolute;
    text-align: center;
    background-color: var(--pramery-color);
    border-top: 1px solid black;
    transition: right 0.3s ease;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li a {
    /* background-color: #fff; */
    display: block;
    padding: 10px 90px;
  }

  section.main h1 {
    font-size: 2rem;
  }

  section.main p {
    font-size: 0.9rem;
  }

  section.main img {
    display: none;
  }
    
  section.about .content-wrapper,
  section.about-2 {
    flex-direction: column;
    height: 100%;
    background-position: center;
    background-size: cover;
  }

  section.about-2 h1 {
    text-align: center;
  }

  section.about-2 .gambar {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-evenly; */
    gap: 30px;
    margin-top: 30px;
  }

  section.about-2 .gambar img {
    width: 70%;
    margin: auto;
    display: flex;
    border-radius: 10px;
  }

  /* section.about-2 .gambar img {
    width: 100%;
    margin-top: 20px;
    margin: auto;
    display: flex;
    border-radius: 10px;
  } */
  .product .title-information h1 {
    font-size: 2rem;
  }

  .product .paket h2 {
    font-size: 1.3rem;
  }

  .product .paket {
    padding: 20px;
  }

  .no-wa {
    position: fixed;
    right: 90px;
    top: 85%;
  }

  .no-wa img {
    position: absolute;
    width: 70px;
    transition: all 0.2s;
  }

  .no-wa img:hover {
    position: absolute;
    width: 60px;
  }
}

/* Responsive */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}
