/* Fonts & Base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  background-color: #fdf7f2; /* soft blush */
/*  background-color: #1e2633;*/
  color: #4a3f35;
  line-height: 1.6;
}

/* Layout Container */
.container {
  max-width: 750px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Header */
header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 0.3rem;
  color: #3e2e22;
  text-align: center;
}

.subtitle {
  font-size: 1.2rem;
  color: #a88c7d;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Intro Text */
.intro {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #5a4a3b;
}

/* Contact Info */
.contact-info {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1.05rem;
}

a {
  color: #b07a5a;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Services */
.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.services ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.services li {
  margin: 0.6rem 0;
  padding: 0.5rem;
  font-size: 1.05rem;
  background-color: #f9f3ef;
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #999;
}
