@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Poppins:wght@300;400;500;600&display=swap");
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f6f6f6;
}

nav {
  height: 80px;
}

ul.navbar-nav {
  -webkit-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

ul.navbar-nav li a {
  font-size: 1.2rem;
}

ul.navbar-nav li a.active {
  color: blue !important;
}

ul.navbar-nav li a:hover {
  color: blue;
}

.hero {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero h3 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  z-index: 2;
}

/* .hero::after removed to eliminate overlay */
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
}

.category h3 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 600;
}

.grid-custom {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}

.hero-property {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-property h3 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  z-index: 2;
}

/* .hero-property::after removed to eliminate overlay */
  left: 0;
  right: 0;
  bottom: 0;
  height: 50vh;
  position: absolute;
}

/* Home icon always white and visible */
.navbar-nav .fa-house {
  color: #fff !important;
  font-size: 1.2em;
  vertical-align: middle;
}

/* Remove underline animation from Category dropdown */
.navbar-nav .nav-item.dropdown .nav-link:after {
  display: none !important;
}

/* Keep underline animation for other nav links */
.navbar-nav .nav-link:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(.39,.575,.565,1), left 0.3s cubic-bezier(.39,.575,.565,1);
}
.navbar-nav .nav-link:hover:after, .navbar-nav .nav-link.active:after {
  width: 80%;
  left: 10%;
}

/* Register/Login button hover fix */
.btn.btn-primary.d-inline-flex {
  background: #000776 !important;
  border-color: #000776 !important;
  color: #fff !important;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,7,118,0.08);
}
.btn.btn-primary.d-inline-flex:hover, .btn.btn-primary.d-inline-flex:focus {
  background: #222b6d !important;
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px rgba(0,7,118,0.14);
}

/* Remove white background from collapsed navbar */
.collapse.navbar-collapse.bg-white {
  background: #000776 !important;
}

/* Navbar and footer full width and white text */
.navbar, .navbar * { background: #000776 !important; color: #fff !important; }
.admin-navbar, .admin-navbar * { background: #000776 !important; color: #fff !important; }
footer, footer * { background: #000776 !important; color: #fff !important; }
footer .container { background: transparent !important; }

/* Navbar link hover/active underline and text white */
.navbar-nav .nav-link, .admin-navbar .nav-link {
  color: #fff !important;
}
.navbar-nav .nav-link:after, .admin-navbar .nav-link:after {
  background: #fff !important;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active,
.admin-navbar .nav-link:hover, .admin-navbar .nav-link.active {
  color: #fff !important;
}
.navbar-nav .nav-link:hover:after, .navbar-nav .nav-link.active:after,
.admin-navbar .nav-link:hover:after, .admin-navbar .nav-link.active:after {
  background: #fff !important;
  width: 80%;
  left: 10%;
}

/* Only style sidebar background and text, don't override all children */
.admin-sidebar {
  background: #212a39 !important;
  color: #fff !important;
}
.admin-sidebar .nav-link {
  color: #fff !important;
}
.admin-sidebar .nav-link.active, .admin-sidebar .nav-link:hover {
  background: #0d6efd !important;
  color: #fff !important;
}

/* Don't override admin-content or modal styles globally */

/* Ensure modals use Bootstrap defaults */
.modal-content, .modal-header, .modal-body, .modal-footer {
  background: #fff;
  color: inherit;
}
/*# sourceMappingURL=main.css.map */