/* --- LEJAN CORPORATE STYLESHEET --- */

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f9fa;
}

/* --- THE STACKED NAVBAR --- */

.site-header {
  background-color: #ffffff;
}

.main-nav-bar {
  background-color: #122942;
}

/* --- MENU HOVER EFFECTS --- */

.main-nav-bar .nav-link {
  transition: all 0.3s ease;
}

.main-nav-bar .nav-link:hover {
  color: #ffc107 !important;
  background-color: rgba(255, 255, 255, 0.05);
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
  /*background-color: #e0a800 !important;*/
}

/* --- SERVICE CARD HOVER --- */

.transition-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

/* --- HERO SECTION RESPONSIVE SIZING --- */

.hero-title {
  font-size: 3.5rem;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.25rem;
}

/* Mobile Adjustments */

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem !important;
    letter-spacing: 1px !important;
  }
}

@media (max-width: 767px) {
  .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .hero-btn {
    font-size: 1rem !important;
    padding: 12px 30px !important;
    width: 100%;
    max-width: 320px;
  }
}

/* Prevents the website from sliding sideways on mobile phones */

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* --- SPLIT HERO & ABOUT SECTION --- */

.split-hero-img {
  background: url('/assets/img/surveyor-sunset-hero.jpg') center center / cover no-repeat;
  min-height: 350px;
}

@media (min-width: 992px) {
  .split-hero-img {
    min-height: 100%;
  }
}

@media (min-width: 992px) {
  .min-vh-75 {
    min-height: 75vh;
  }
}

/* The 'Lift' Effect */

.hover-lift {
  transition: transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), box-shadow 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

/* Navbar Link Hover (Matches your blue/yellow theme) */

.nav-link:hover {
  color: #ffc107 !important;
  transition: color 0.2s ease-in-out;
}

/* --- FOOTER STYLES --- */

/* Ensures footer links are white by default, hover to yellow */

.footer-link, .footer-link-dark {
  color: #ffffff !important;
  font-size: 1rem !important;
  transition: all 0.2s ease-in-out;
}

.footer-link:hover, .footer-link-dark:hover {
  color: #ffc107 !important;
  text-decoration: underline !important;
}

.mobile-footer-text {
  font-size: 1rem !important;
}

/* Tighten vertical gap on mobile */

@media (max-width: 767px) {
  .footer-row {
    --bs-gutter-y: 1.5rem !important;
  }
}

@media (max-width: 767px) {
  .footer-heading {
    margin-bottom: 1rem !important;
  }
}

/* --- MOBILE STICKY FOOTER CLEARANCE --- */

@media (max-width: 991.98px) {
  footer {
    padding-bottom: 95px !important;
  }
}

