body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f8f9fa;
  color: #222;
  scroll-behavior: smooth;
}
.bg-navy { background-color: #000080 !important; }
.text-gold { color: #FFD700 !important; }
.text-brown { color: #8B4513 !important; }
.btn-gold {
  background-color: #FFD700;
  color: #000080;
  font-weight: 600;
}
.btn-gold:hover {
  background-color: #B8860B;
  color: white;
}
.nav-link {
  color: #fff !important;
  transition: color 0.3s, border-bottom 0.3s;
}
.nav-link:hover {
  color: #FFD700 !important;
  border-bottom: 2px solid #FFD700;
}
.hero-section img {
  height: 100vh;
  object-fit: cover;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 15px;
}
.footer {
  background-color: #000080;
  color: white;
}
.footer-line {
  border-top: 2px solid #FFD700;
  width: 80px;
  margin: 0 auto 15px;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
