/* ==========================================
   MJG Renovations LLC - Full Bootstrap Theme
   ========================================== */

/* Typography */
body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3, .navbar-brand {
  font-family: 'DM Serif Display', serif;
}

/* ---------------- NAVBAR ---------------- */
.nav-link:hover {
  color: #c90000 !important;
}

.nav-link.active {
  color: #c90000 !important;
}

/* ---------------- HERO SECTION ---------------- */
.hero-banner {
  height: 85vh;
  background: url("../images/house1.jpg") center/cover no-repeat;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

/* Mobile hero height */
@media (max-width: 768px) {
  .hero-banner { height: 70vh; }
  .hero-content h1 { font-size: 2rem; }
}

/* ---------------- INTRO ---------------- */
.intro-text {
  font-size: 1.3rem;
  max-width: 900px;
}

/* ---------------- SERVICES ---------------- */
.services-section {
  background: #8B0000;
}

.card img {
  height: 220px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* ---------------- FOOTER ---------------- */
.footer-logo {
  color: #c90000;
}

.footer-social img {
  filter: brightness(0);
  transition: 0.3s;
}

.footer-social img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-nav span {
    display: none;
  }

  .footer-nav a {
    display: block;
    margin: 0.2rem 0;
  }
}
