.commission-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(8, 20, 30, 0.7);
  border-radius: 16px;
}

.commission-form label {
  color: rgba(8, 20, 30, 0.7);
  font-weight: 600;
}

.commission-form input,
.commission-form textarea,
.commission-form select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid rgba(8, 20, 30, 0.7);
  background: rgba(8, 20, 30, 0.1);
  color: black;
}

.commission-form button {
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(8, 20, 30, 0.7);
  background:#7ecce6
  color: #0b1a24;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
}

.commission-form button:hover {
  transform: scale(1.03);
}

footer {
  margin-top: 100px;
}

.center-image {
  display: block;
  margin: 0 auto;
}

.masonry {
  column-count: 3;
  column-gap: 20px;
}

.masonry img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 14px;
  display: block;
  break-inside: avoid;
}

.masonry img {
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.masonry img:hover {
  transform: scale(1.2);
  z-index:10;
  position: relative;
}

.contact-box a {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #a5c174;
  color: #0b1a24 !important;
  text-decoration: none;
  font-weight: 600;
}

.masonry-shop {
  column-count: 3;
  column-gap: 10px;
}

.masonry-shop .item {
  break-inside: avoid;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 1);
}

.masonry-shop img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 10px;
  display: block;
}

.masonry-shop h3 {
  margin: 10px 0 5px;
  color: rgba(0,0,0,1);
}

.masonry-shop p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 1);
  line-height: 1.5;
}

.masonry-shop .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #a5c174;
  color: #0b1a24 !important;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.masonry-shop .btn:hover {
  background: #a5c174;
  transform: scale(1.03);
}

.masonry-shop .item {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .masonry-shop {
    column-count: 1;
  }
}

.featured-masonry {
  column-count: 3;
  column-gap: 12px;   /* smaller gap */
  max-width: 1500px;   /* keeps it centered and not too wide */
  margin: 0 auto;     /* centers the whole block */
}

.featured-masonry img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
  border-radius: 14px;

  transition: transform 0.25s ease;
  break-inside: avoid;
}

.featured-masonry img:hover {
  transform: scale(1.05);
  z-index: 5;
  position: relative;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.home-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 9px;
  background: #a5c174;
  color: #0b1a24 !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid rgba(0,0,0,0.1);
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  filter: brightness(1.05);
}



