body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff8f0;
  color: #333;
  line-height: 1.4;
}

header {
  background-color: #d2691e;
  color: white;
  padding: 15px;
  text-align: center;
}

.tagline {
  font-size: 1em;
  margin-top: 5px;
}

nav {
  margin-top: 8px;
}

nav a {
  margin: 0 6px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 15px;
  max-width: 900px;
  margin: auto;
}

.hero-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.hero-text {
  text-align: center;
  margin-top: 6px;
}

.section-title {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}

.cta {
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta.whatsapp {
  background-color: #25D366;
  color: white;
}

.cta.email {
  background-color: #d2691e;
  color: white;
}

.cta:hover {
  opacity: 0.9;
}

footer {
  background-color: #d2691e;
  color: white;
  text-align: center;
  padding: 12px;
}
