@import url("https://fonts.googleapis.com/css?family=Exo:500,600,700|Roboto&display=swap");

html, body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  color: #333;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  padding: 0;
  overflow-x: hidden;
} 

header {
  flex-shrink: 0;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Exo", sans-serif;
  font-weight: 700;
  color: #222;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 44px;
}

h3, .h3 {
  font-size: 1.5rem;
}

h4, .h4 {
  font-size: 1.3rem;
  line-height: 30px;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.25rem;
}

a {
  text-decoration: none;
}

main {
  flex-grow: 1;
  padding: 1rem;
}

.thumb {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

.btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
}

/*Landlord dashboard */
.dashboard-container {
  margin-top: 50px;
  max-width: 800px;
}

.dashboard-card {
  background-color: #ffffff;
  border-radius: 12px;
}

/* Mobile Sidebar Styling */
.offcanvas .nav-link {
  padding: 10px;
  font-size: 16px;
}

/* Responsive fix for small devices */
@media (max-width: 767px) {
  .dashboard-container {
    margin: 20px 10px;
  }
}

footer img {
  height: 32px;
  width: 32px;
  transition: transform 0.3s ease;
}

footer img:hover {
  transform: scale(1.1);
}