
body {
  font-family: 'Unbounded', sans-serif;
  background: linear-gradient(135deg, #f9f6f0, #f3eee5);
  color: #1a1a1a;
}
iframe {
  border: none;
}

header {
  background: #751616;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  border-bottom: 2px solid #5a1212;
}
header h1 {
  font-size: 2.5rem;
  color: #f3eee5;
  letter-spacing: 2px;
}
.tagline {
  font-size: 1.1rem;
  color: #bfb5a9;
  margin-top: 0.5rem;
}
.services, .gallery, .about {
  max-width: 800px;
  margin: 3rem auto;
  background: #fffdfa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(117,22,22,0.15);
}
h2 {
  text-align: center;
  color: #751616;
  margin-bottom: 1.5rem;
}
.service {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd6cc;
  transition: 0.3s;
}
.service:hover {
  background: #f3eee5;
}
footer {
  background: #751616;
  color: #f3eee5;
  text-align: center;
  padding: 1rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.grid a {
  padding: 15px;
  border: 2px solid #751616;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  color: #751616;
  transition: background-color 0.3s, color 0.3s;
  font-size: 14px;
  text-decoration: none;
}
.grid a:hover {
  background-color: #751616;
  color: #f3eee5;
}
.about-content p {
  margin-bottom: 1.2rem;
  text-align: center;
}
.about-content .intro {
  font-weight: 700;
  font-size: 1.2rem;
  color: #751616;
  margin-bottom: 1.5rem;
}
.about-content .cta {
  font-style: italic;
  margin-top: 1.5rem;
  color: #5a1212;
}
