
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f9f5ef;
  color: #222;
  text-align: center;
}

header {
  background-color: #f5efe4;
  color: #222;
  padding: 2rem 1rem 1rem;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

.tagline {
  font-style: italic;
  margin-top: 0.5rem;
}

section {
  padding: 2rem 1rem;
}

input, textarea, button {
  display: block;
  margin: 0.5rem auto;
  padding: 0.5rem;
  width: 90%;
  max-width: 400px;
  font-family: inherit;
}

button {
  background-color: #222;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #444;
}

.paypal-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.gallery {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 90vw;
  max-width: 500px;
}

.slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.slider img {
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  scroll-snap-align: center;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}
