/* Custom Wedding Button */
.btn-custom {
  display: inline-block;
  padding: 0.6em 1.2em;
  border-radius: 30px; /* pill shape */
  background-color: #006fee; /* wedding pink */
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

/* Hover & focus effects */
.btn-custom:hover,
.btn-custom:focus {
  background-color: #20afd3; /* darker pink */
  transform: translateY(-2px);
}

/* Optional subtle shadow */
.btn-custom {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

input[type="file"]::file-selector-button {
  background-color: #1495a7;  /* green */
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

input[type="file"]::file-selector-button:hover {
  background-color: #45a049;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 0;
  padding: 0; 
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1; 
  object-fit: cover; 
  border-radius: 0; 
  margin: 0; 
  display: block;
}
