/* Local styles moved from inline <style> in public/index.php */
body {
  font-family: "Poppins", sans-serif;
}
/* Make page a column so footer sits after content and doesn't grow weirdly */
html,
body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* Allow the main container to grow and push footer to the bottom when content is short */
body > .container,
body > .container-fluid {
  flex: 1 0 auto;
}
.hero {
  background: url("../../images/austin-skyline.jpg") no-repeat center bottom;
  background-size: cover;
  color: white;
  /* Use min-height to prevent accidental shrinking when body is a flex container */
  min-height: 90vh !important;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.hero h1 {
  font-weight: 700;
  font-size: 3rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.hero p {
  font-size: 1.2rem;
  font-weight: 400;
}
.property-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  font-weight: 700;
}
.navbar-nav .nav-link {
  font-weight: 600;
  cursor: pointer;
}

/* small helper to ensure carousel images keep aspect */
.property-card img {
  display: block;
  width: 100%;
  height: auto;
}

.property-card .carousel {
  max-height: 250px;
  overflow: hidden;
}
.property-card .carousel-item {
  height: 250px;
}
.property-card .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.property-card .carousel-control-prev,
.property-card .carousel-control-next {
  width: 10%;
  background: rgba(0, 0, 0, 0.2);
}
.property-card .carousel-indicators {
  margin-bottom: 0.5rem;
}

.login-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: white;
}
.brand-header {
  text-align: center;
  margin-bottom: 30px;
}
.brand-header h1 {
  font-size: 24px;
  color: #333;
}

.carousel-item img {
  cursor: zoom-in;
}
