/* ===============================
   Base
=============================== */
body {
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  background: #000; /* ✅ full black */

  min-height: 100vh;
}



/* ===============================
   Section One
=============================== */
.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;
}

/* Logo */
.bwear-logo {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* Main image */
.bwear-image {
  width: 100%;
  max-width: 300px;
  margin: 220px 0 28px;
}

/* Heading */
.main-text {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}


/* ===============================
   Link Button (NO JS)
=============================== */
.bwear-link {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;

  font-weight: 700;
  text-decoration: none;
  color: white;

  background: linear-gradient(45deg, #8b0000, #ff2b2b);

  box-shadow:
    0 0 12px rgba(255, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 0, 0.3);

  transition: all 0.25s ease;
}

.bwear-link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 0 20px rgba(255, 0, 0, 0.9),
    0 0 60px rgba(255, 0, 0, 0.6);
}

.bwear-link:active {
  transform: scale(0.97);
}


/* ===============================
   Icons
=============================== */
.icon-group {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 40px; /* ✅ dinaikin */
}

.icon-img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.icon-img:hover {
  transform: scale(1.1);
}

/* ===============================
   Masonry (PURE CSS — NO JS)
=============================== */
.section-two {
  padding: 40px 20px;
}

.masonry {
  column-count: 3;
  column-gap: 16px;
}

.masonry-item {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  cursor: pointer;

  /* visible + smooth */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;

  transition: transform 0.25s ease;
}

/* small hover pop */
.masonry-item:hover {
  transform: scale(1.03);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===============================
   Footer
=============================== */
.bwear-footer {
  padding: 40px 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-weight: 700;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}


/* ===============================
   Modal
=============================== */
#imageModal {
  display: none;
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.92);

  justify-content: center;
  align-items: center;
  z-index: 999;
}

#imageModal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  cursor: pointer;
}


/* ===============================
   Responsive
=============================== */
@media (max-width: 768px) {
  .masonry {
    column-count: 2;
  }

  .bwear-image {
    margin-top: 140px;
  }
}

@media (max-width: 480px) {
  .masonry {
    column-count: 1;
  }

  .main-text {
    font-size: 2rem;
  }
}
