body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: url('Autumn background.png') no-repeat center center fixed;
  background-size: cover;
  color: #1F1814;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(185, 78, 72, 0.8); /* Deep Chestnut semi-transparent */
  padding: 1rem 2rem;
  color: white;
}

nav h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  margin-top: -20rem;
  margin-bottom: 10rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.cta-button {
  background-color: #E97451;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.transparent-section {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 12px;
  margin: 5rem auto;
  max-width: 1000px;
}

.about, .services, .contact, .instagram {
  margin-bottom: 3rem;
}

.about h2, .services h2, .contact h2, .instagram h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: white;
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.card {
  background-color: rgba(216, 162, 74, 0.7); /* Golden Ochre semi-transparent */
  padding: 1rem;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  width: 220px;
  text-align: center;
}

.card span {
  display: block;
  margin-top: 0.5rem;
  font-weight: normal;
  font-size: 0.9rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
}
.email-link:hover { color: #D2691E; }


form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

input, textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background-color: rgba(255,255,255,0.8);
  font-family: inherit;
}

button {
  background-color: #E97451;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

footer {
  background-color: rgba(78, 59, 49, 0.9); /* Forest Umber semi-transparent */
  color: white;
  text-align: center;
  padding: 1rem;
}

a {
  color: #8B4513; /* warm brown */
  text-decoration: none;
  font-weight: 500;
}
a:hover {
  color: #D2691E; /* autumn orange */
  text-decoration: underline;
}
