html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

:root {
    --accent: #e21e26a3;
    --dark: #222;
}

/* Buttons */
.btn-accent {
    background-color: var(--accent);
    color: #fff;
    border: none;
    transition: 0.2s ease;
}

    .btn-accent:hover {
        background-color: #e21e26;
        color: #fff;
    }

/* Cards */
.property-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    background: #fff;
}

    .property-card:hover {
        transform: scale(1.03);
    }

/* Price text */
.price {
    color: var(--dark);
    font-weight: 600;
}

/* Hero section */
.hero {
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

/* Search bar */
.search-bar {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-top: -60px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Navbar overrides */
.navbar {
    background: #000;
}

.navbar-brand,
.nav-link {
    color: #fff !important;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
