/* Base Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F5EFE6;
  color: #333;
}

header {
  background-color: #D98FB1;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  font-style: italic;
}

/* Gallery Section */
.gallery {
  padding: 2rem;
  background-color: #fff;
}

.gallery h2 {
  text-align: center;
  color: #6FA3B8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #888C8D;
}

/* Custom Order Form */
.custom-order {
  background-color: #F5EFE6;
  padding: 2rem;
}

.custom-order h2 {
  text-align: center;
  color: #D98FB1;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: bold;
}

input, textarea {
  padding: 0.5rem;
  border: 1px solid #888C8D;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: #D98FB1;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #6FA3B8;
}

.category-card {
  background-color: #fff;
  border: 1px solid #888C8D;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.category-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.category-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.product-card {
  background-color: #F5EFE6;
  border: 1px solid #888C8D;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.product-card h4 {
  margin: 0.5rem 0 0.25rem;
  color: #6FA3B8;
}

.product-card p {
  margin: 0;
  font-weight: bold;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hide product grids until clicked */
.hidden {
  display: none;
}

/* Footer */
footer {
  text-align: center;
  background-color: #888C8D;
  color: white;
  padding: 1rem;
  font-size: 0.9rem;
}

footer a {
  color: #F5EFE6;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}