body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-one {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fwog-logo {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.fwog-image {
  width: 100%;
  max-width: 300px;
  margin-top: 220px;
  margin-bottom: 28px;
}

.main-text {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.fwog-btn {
  background-color: #f38c1f;
  color: white;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 8px #f38c1f;
  transition: background-color 0.3s;
}

.fwog-btn:hover {
  background-color: #f38c1f;
}

.fwog-btn::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #f38c1f;
  transform: rotate(-30deg);
}

.icon-group {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.icon-label {
  font-size: 0.75rem;
  color: white;
  margin-top: 1px;
  font-weight: 500;
  text-decoration: none;
}

.icon-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.icon-img {
  width: 28px;
  height: 28px;
  margin-top: 150px;
  transition: transform 0.2s;
  cursor: pointer;
}

.icon-img:hover {
  transform: scale(1.1);
}

.icon-img {
  width: 28px;
  height: 28px;

  transition: transform 0.2s;
  cursor: pointer;
}

.icon-img:hover {
  transform: scale(1.1);
}

 /* Section 2 */

.section-two {
  padding: 40px 20px;
  background-color: black;
}

.masonry {
  column-count: 3;
  column-gap: 16px;
  padding-top: 20px;
}

.masonry-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  border-radius: 12px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin-bottom: 20px; /* ✅ Tambahin spacing antar gambar */
  box-sizing: border-box;
}


/* Active class when in view */
.masonry-item.show {
  opacity: 1;
  transform: translateY(0);
}


/* FOOTER  */
.fwog-footer {
  background: black;
  color: white;
  padding: 40px 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-tagline {
  font-size: 3rem;
  font-weight: 900;
  color: #c15845;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.fwog-footer-img {
  height: 450px;
  vertical-align: middle;
}
