/* --- 1. Typography & Base --- */
body {
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.7;
}

h1,
h2,
h3,
.font-playfair {
  font-family: 'Playfair Display', serif;
}

/* --- 2. Form Styling --- */
input[type="text"],
input[type="email"],
textarea {
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  border-radius: 0 !important;
  /* Sharp edges for premium feel */
}

input:focus,
textarea:focus {
  background-color: #fff;
  border-color: #a18a6c;
  /* Gold accent */
  box-shadow: 0 0 0 1px #a18a6c;
  outline: none;
}

label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* --- 3. Button Styling --- */
.submit-btn {
  background-color: #1d4ed8;
  /* Blue-700 */
  color: #fff;
  border: 1px solid #1d4ed8;
}

.submit-btn:hover {
  background-color: #1e40af;
  /* Blue-800 */
  border-color: #1e40af;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(29, 78, 216, 0.4);
}

/* --- 4. Animations --- */
.animate-fade-up {
  animation: fadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- 5. Header Overrides for Contact Page --- */
header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  /* background: rgba(255, 255, 255, 0.05) !important; */
  /* Very transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000; */
}

header .font-extrabold span {
  color: #ffffff !important;
}