body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #1c1c1c;
  color: #ffffff;
}

header.hero {
  background: url('images/herogold.png') center/cover no-repeat;
  text-align: left;
  padding: 100px 20px;
  background-color: #000000; /* fallback if image doesn't load */
  color: #fff;
}


header.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  margin-bottom: 0.3em;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6347;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.about h2,
.services h2,
.contact h2 {
  font-family: 'Playfair Display', serif;
  color: #ff6347;
}

.service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin: 10px 0 5px;
}

input, textarea {
  background-color: #2c2c2c;
  border: 1px solid #FF6347;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

button {
  margin-top: 20px;
  padding: 10px;
  background-color: #FF6347;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.social-media {
  text-align: center;
  padding: 60px 20px;
  background-color: #111;
  color: #FF6347;
}

.social-media h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 0.5em;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-icons .icon {
  display: inline-block;
  font-size: 1.5em;
  color: #ff6347;
  border: 2px solid #ff6347;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons .icon:hover {
  background-color: #ff6347;
  color: #000;
  transform: scale(1.1);
}

.icon:hover {
  background-color: #ff6347;
  color: #000;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #aaa;
}