
body {
  font-family: 'Montserrat', sans-serif;
}

h1, h2 {
  font-family: 'Anton', sans-serif;
}

h3 {
  font-family: 'Caviar Dreams', sans-serif;
}

.script {
  font-family: 'Moontime', cursive;
}

body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  background: #f8f8ff;
  color: #333;
}
header {
  background: #0E725E;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}
nav {
  background: #48c090;
  padding: 1rem;
  text-align: center;
}
nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background: url('https://www.signgypsies.com/wp-content/uploads/2022/01/SG-Header-2.jpg') center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  font-size: 2rem;
}
.section {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}
/* === Start Gallery Styles === */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 1rem;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
input, textarea, select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  background: #48c090;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
