body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #000000;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand, .btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #012632;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

.navbar-brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn {
  font-weight: 600;
  letter-spacing: 0.5px;
}
.padding-20 {
}
.bg-subtle-dark {
}

.hero-header {
  position: relative;
  height: 400px; /* adjust as needed */
  overflow: hidden;
  color: white; /* text color over image */
}

.hero-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:url("/images/LagoSigns-George.webp");
  background-size: cover;
  background-position: center;
  animation: kenburnsZoom 15s ease-in-out infinite alternate;
  z-index: -1;
  will-change: transform;
}

@keyframes kenburnsZoom {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(10px, 5px);
  }
}

.overlay {
  position: relative;
  z-index: 1;
  padding: 2rem;
  background: rgba(0,0,0,0.3); /* optional dark overlay */
}


.content-section:nth-of-type(even) {
  background-color: #f7f9fa; /* soft gray-blue */
}

.content-section:nth-of-type(odd) {
  background-color: #ffffff; /* clean white */
}


.frosted-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  color: #ffffff;
}

.frosted-box a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.frosted-box a:hover {
  color: #2fa0d1;
  text-decoration: underline;
}

.frosted-box a.active {
  font-weight: 700;
  text-decoration: underline;
}
