body {
  font-family: 'Roboto', sans-serif;
  background-color: #faf7f2;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ---------------- Navbar ---------------- */
.nav-btn {
  position: relative;
  padding: 8px 16px;
  font-weight: 500;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #1f2937;
  transition: color 0.3s;
}
.nav-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #3b82f6;
  transition: width 0.3s;
}
.nav-btn:hover {
  color: #1d4ed8;
}
.nav-btn:hover::after {
  width: 100%;
}
#menuToggle {
  display: none !important;
}

/* Banner */
.banner {
  background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1500&q=80');
  background-size: cover;
  background-position: center;
  height: 450px;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Contact Card */
.contact-card {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  max-width: 700px;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Inputs */
.form-input {
  border: 1px solid #ddd;
  padding: 0.75rem;
  border-radius: 8px;
  width: 100%;
  outline: none;
  transition: all 0.3s;
}

.form-input:focus {
  border-color: #a6795d;
  box-shadow: 0 0 5px rgba(166, 121, 93, 0.4);
}

/* Button */
.theme-btn {
  background: linear-gradient(135deg, #a6795d, #6a4a32);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s;
}

.theme-btn:hover {
  background: linear-gradient(135deg, #6a4a32, #a6795d);
  transform: scale(1.05);
}

/* Connect With Us */
.connect-section {
  margin-top: 280px;
}

.connect-heading {
  font-size: 2rem;
  color: #6a4a32;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: #f1e9e0;
  padding: 2.5rem 1rem;
  border-top: 1px solid #d6c5b4;
}

.footer-title {
  font-size: 1.25rem;
  color: #6a4a32;
  font-weight: 700;
}

.footer-subtitle {
  color: #6a4a32;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  color: #555;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #a6795d;
}

.footer-text {
  color: #555;
}

/*---- navbar always active ----*/
.nav-btn.active {
  color: #1d4ed8;
}

.nav-btn.active::after {
  width: 100%;
  background-color: #1d4ed8;
}
