/* ===== Global Styles ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background: #d4af37;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
  background: #d4af37;
  color: white;
  text-align: left;
}

.header-flex img {
  width: 120px;
  height: auto;
}

.header-right h1 {
  margin: 0;
  font-size: 2.3em;
}


nav {
  background: white;
  padding: 10px;
  text-align: center;
}

nav a {
  margin: 0 15px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.services div {
  background: white;
  margin: 10px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button,
a.button {
  background: #d4af37;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  text-decoration: none;
  display: inline-block;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  margin-top: 40px;
}

/* ===== Thank You Page Animation ===== */
.message-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-size: 1.2em;
  line-height: 1.6em;

  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
