
:root {
  --lcm-teal: #0f5c75;
  --lcm-teal-dark: #094355;
  --lcm-light: #f5fbfd;
  --lcm-accent: #f9e0ae;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--lcm-light);
  margin: 0;
  padding: 0;
  color: #222;
}

/* Navbar */

.navbar-lcm {
  background: var(--lcm-teal);
  box-shadow: 0 4px 18px rgba(0,0,0,0.16);
}

.navbar-lcm .navbar-brand span {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.navbar-lcm .navbar-brand img {
  height: 52px;
}

.btn-nav {
  border-radius: 999px;
  padding: 0.45rem 0.95rem !important;
  margin: 0.15rem;
  border: 1px solid transparent;
  transition: all 0.18s ease-in-out;
  font-weight: 500;
}

.navbar-lcm .nav-link {
  color: #ffffff !important;
  font-size: 0.96rem;
}

.navbar-lcm .nav-link:hover,
.navbar-lcm .nav-link:focus {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.navbar-lcm .nav-link.active {
  background: #ffffff;
  color: var(--lcm-teal) !important;
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
}

.dropdown-menu-lcm {
  border-radius: 12px;
  border: 1px solid rgba(15,92,117,0.15);
  padding: 0.35rem 0;
  background: #ffffff;
}

.dropdown-menu-lcm .dropdown-item {
  font-size: 0.94rem;
  padding: 0.35rem 1rem;
}

.dropdown-menu-lcm .dropdown-item:hover {
  background: rgba(15,92,117,0.08);
}

/* Hero banner */

.hero-banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}


.hero-inner {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 680px;
  margin: 0.75rem auto 0;
}

/* Content cards */

.content-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 24px 22px;
  margin-bottom: 1.5rem;
  box-shadow: 0 14px 38px rgba(15,92,117,0.12);
}

.lead-title {
  color: var(--lcm-teal-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

main.container {
  padding-top: 2.25rem;
  padding-bottom: 2.5rem;
}

/* Footer */

.footer-lcm {
  background: var(--lcm-teal);
  color: #ffffff;
  margin-top: 1rem;
}

.footer-lcm p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

/* Small devices */

@media (max-width: 991.98px) {
  .navbar-lcm .navbar-brand span {
    display: none !important;
  }
}

.hero-banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Fullscreen image */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 6%;
  background: none; /* ✅ NO background */
}


.hero-overlay h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 600;
}

.hero-overlay p {
  color: #f1f1f1;
  max-width: 720px;
  font-size: 1.2rem;
  line-height: 1.6;
}
