
#fog-block {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: none;
} /* Shared layer rules */
#fog-block::before, #fog-block::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity;
} /* IMAGE 1 (default / visible most of the time) */
#fog-block::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/Portals/1/Page-Assets/home/shoulders-frame1v2.jpg");
    opacity: 1;
} /* IMAGE 2 (briefly fades in) */
#fog-block::after {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/Portals/1/Page-Assets/home/shoulders-frame1v2.jpg");
    opacity: 0;
    animation: heroSwap 31s infinite;
} /* Timeline (121s total): 0–60s → Image 1 showing 60–60.5s → FAST fade to Image 2 60.5–120.5 → Image 2 holding 120.5–121 → FAST fade back to Image 1 */
@keyframes heroSwap {
0% {
opacity: 0;
}
45% {
opacity: 0;
} /* hold image 1 */
50% {
opacity: 1;
} /* 0.5s fade in */
95% {
opacity: 1;
} /* hold image 2 */
100% {
opacity: 0;
} /* 0.5s fade out */
} /* Keep existing stacking intact */
.fog-scene {
    z-index: 1;
}
.video-layer {
    z-index: 2;
} /* Respect reduced motion */

@media (prefers-reduced-motion: reduce) {
#fog-block::after {
    animation: none;
    opacity: 0;
}
} /* === FOG BACKGROUND === */
#fog-block .fog-scene {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
#fog-block .fog-scene canvas {
    width: 100%;
    height: 100%;
    display: block;
} /* === VIDEO + CONTENT LAYER === */
#fog-block .video-layer {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 5vw, 4rem);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
#fog-block .video-wrap {
    text-align-last: center;
	  width: 100%;
  aspect-ratio: 16 / 9;
}
#fog-block .video-wrap video {
    object-fit: cover;
}
#fog-block .content {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers button under the text */
}
#fog-block .content {
    padding: 0;
    max-width: 520px;
}
#fog-block .content h1 {
    color: #fff;
    text-align: center;
    font-family: "Oswald";
    text-transform: uppercase;
    font-weight: 100;
    margin: 0px;
    line-height: 1.15; /* responsive sizing */
    font-size: 4rem;
    margin-bottom: 20px;
}
#fog-block p {
    color: #fff;
    text-align: center;
}
#fog-block .content h1 .big {
    display: inline-block;
    font-style: italic;
    color: #e1c186;
    font-weight: 900;
    position: relative;
    left: -15px; /* responsive sizing */
    font-size: 6rem;
    top: -11px;
}
#fog-block .content h1 .small {
    display: block;
    font-family: "Oswald";
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    color: #fff;
    font-size: clamp(1rem, 2.7vw, 3rem);
    font-weight: 100;
}
#fog-block .join-btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
}
#fog-block .video-layer video {
   
    aspect-ratio: 16 / 9; /* keeps it nice on mobile */
  
    border-radius: 8px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
    background: #000;
    backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#fog-block .mobile-btn {
    display: none;
}
#fog-block .desktop-btn {
    display: block;
} /**Responsive**//* Optional: balance spacing on huge screens */

@media (min-width: 1600px) {
#fog-block .video-layer {
    max-width: 1600px;
    gap: 4rem;
}
} /* Optional: reduce motion / load for users who prefer it */

@media (prefers-reduced-motion: reduce) {
#fog-block .fog-scene {
    display: none;
}
}

@media(max-width:1200px) {
#fog-block .content {
    max-width: 420px;
}
#fog-block .video-layer {
    gap: 1rem;
}
#fog-block .content h1 {
    font-size: 3rem;
    margin-bottom: 0;
}
#fog-block .content h1 .big {
    font-size: 5rem;
}
#fog-block p {
    font-size: 18px;
}
}

@media (max-width: 991px) {
#fog-block .content h1 {
    color: #fff;
    font-family: "Oswald";
    text-transform: uppercase;
    text-align: center;
    font-weight: 100;
    margin-bottom: 20px;
    margin-top: 6rem;
    font-size: 3rem;
}
#fog-block .content h1 .big {
    font-size: 6rem;
}
#fog-block p {
    font-size: 20px;
}
#fog-block .video-layer {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding-top: clamp(2rem, 7vw, 4rem);
    padding-bottom: clamp(2rem, 7vw, 4rem);
}
#fog-block .content {
    max-width: 680px;
}
#fog-block .video-layer video {
    width: 100%;
    max-width: 900px;
}
#fog-block .mobile-btn {
    display: block;
}
#fog-block .desktop-btn {
    display: none;
}
.fog-video-hero {
    padding-top: unset;
}
#fog-block .video-layer {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding-top: clamp(2rem, 7vw, 4rem);
    padding-bottom: clamp(2rem, 7vw, 4rem);
}
}

@media (max-width: 480px) {
#fog-block .video-layer {
    padding-left: 1rem;
    padding-right: 1rem;
}
#fog-block .content h1 {
    margin-bottom: 1.25rem;
}
#fog-block .video-layer {
    flex-direction: column;
}
#fog-block .join-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin-top: 1rem;
}
}
