/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* === PARALLAX SECTION === */
.parallax {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: var(--bg-height, 100vh);
}

/* Background layer (only here) */
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: var(--bg-image);
  background-position: var(--bg-pos-x, center) var(--bg-pos-y, 0);
  background-size: cover;
  background-repeat: no-repeat;

  background-attachment: fixed; /* optional, see mobile below */

  transform-origin: center;
  animation: slowZoom 50s ease-in-out infinite;
  will-change: transform;

  z-index: 0;
}

/* Ensure overlays/logo/banner content sits above */
.parallax > * {
  position: relative;
  z-index: 1;
}

@keyframes slowZoom {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .parallax::before { animation: none; }
}

@media (max-width: 800px) {
  .parallax::before { background-attachment: scroll; }
}


/* == TEXT BANNER == */
.banner {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  padding: var(--cb-vert,20px) var(--cb-horiz,30px);
  text-align: center;
}
.banner h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.banner p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}
.banner-title {
  text-align: center;
  margin-bottom: 1rem;
}

.banner-title a {
  color: #333;
  text-decoration: none;
  transition:
    color 0.3s ease,        /* smooth color change */
    letter-spacing 0.3s ease; /* subtle tracking effect */
}

.banner-title a:hover {
  color: #80858b;           /* brand-accent color on hover */
  letter-spacing: 1px;      /* slightly spread letters */
}