body {
  font-family: "Montserrat", sans-serif;

}


h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
}

.tracking-custom {
  letter-spacing: 0.03em;
}

.font-playfair {
  font-family: "Playfair", serif;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

#header {
  transition: transform 0.5s ease, background-color 0.5s ease;
}

/* Container for the scrollable window section */
.scroll-container {
  display: flex;
  flex-direction: row;
  gap: 2rem; /* Adjust for the gap between windows */
  overflow-x: hidden; /* Hide any overflow */
  scroll-snap-type: x mandatory; /* Ensures each window snaps to place */
  scroll-behavior: smooth; /* Smooth scroll effect */
}

/* Styling for each window (add transition for animation) */
.window-item {
  opacity: 0; /* Start hidden */
  transform: translateX(100%); /* Start off-screen to the right */
  transition: opacity 0.6s ease-out, transform 0.9s ease-out; /* Animate opacity and transform */
}

.scroll-container.scroll-in-view .window-item {
  opacity: 1; /* Fade in */
  transform: translateX(0); /* Move into position */
}

/* Optional: Add a delay to each window for staggered animation */
.window-item:nth-child(1) {
  transition-delay: 0.2s;
}

.window-item:nth-child(2) {
  transition-delay: 0.4s;
}

.window-item:nth-child(3) {
  transition-delay: 0.6s;
}

.window-item:nth-child(4) {
  transition-delay: 0.8s;
}

.disabled-link {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

@keyframes cloudFloat {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.animate-cloud {
  animation: cloudFloat 60s linear infinite;
}

.split-flap {
  display: inline-block;
  width: 1.3em;
  height: 1.4em;
  background: #000;
  color: #fff;
  margin: 0.08em;
  border-radius: 0.12em;
  font-family: monospace;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
