@charset "UTF-8";
/* CSS Document */

 body {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        overflow-x: hidden;
        overflow-y: auto;
    }
.main-statement {
    line-height: 1;
    letter-spacing: -0.04em;
    font-size: clamp(2.5rem, 7vw, 7rem);
}
    .hover-trigger {
        position: relative;
        z-index: 50;
        display: inline-block;
        transition: color 0.3s ease;
    }
    #bg-video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 10;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .video-active #bg-video {
        opacity: 1;
    }

    .slideshow-active #bg-slideshow {
    opacity: 1 !important;
    }

.slideshow2-active #bg-slideshow {
    opacity: 1 !important;
}

    .video-active .text-fade,
    .slideshow-active .text-fade,
    .slideshow2-active .text-fade {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .video-active .hover-trigger,
	.slideshow-active .hover-trigger,
	.slideshow2-active .hover-trigger {
    opacity: 0;
    color: inherit;
    text-shadow: none;
}

	.video-active .hover-trigger.is-active,
	.slideshow-active .hover-trigger.is-active,
	.slideshow2-active .hover-trigger.is-active {
    opacity: 1;
    color: white;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

    .text-fade {
        transition: opacity 0.3s ease;
}

.clock-time {
        font-family: "Inter", "Helvetica Neue", sans-serif;
        font-variant-numeric: tabular-nums;
    }
    .footer-headline-style {
        font-size: clamp(2.5rem, 4vw, 6rem);
        line-height: 0.88;
        letter-spacing: -0.04em;
    }
	
	.footer-link-style {
    font-size: clamp(1.5rem, 3vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
		font-weight:normal;
}
#nav-logo {
    color: black;
    transition: color 0.3s ease;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-size: 1.5rem;
}
.video-active #nav-logo,
.slideshow-active #nav-logo ,
.slideshow2-active #nav-logo {
    color: white;
}
	
.hover-underline-animation {
    position: relative;
}
.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
	
body.dark-mode {
    background-color: #000000;
    color: #ffffff;
}
body.dark-mode footer {
    background-color: #000000;
}
body.dark-mode #nav-logo {
    color: white;
}
body.dark-mode svg line,
body.dark-mode svg circle {
    stroke: white;
    fill: white;
}

body.dark-mode .copyright {
    color: white;
}
body.dark-mode .copyright a {
    color: white;
}

body.dark-mode .hover-underline-animation::after {
    background-color: white;
}

.copyright {
    font-size: 1.3rem;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
    .main-statement {
        font-size: clamp(1.8rem, 11vw, 3.6rem) !important;
        line-height: 1.1 !important;
    }
	
    .hover-trigger {
        text-decoration-thickness: 2px !important;
        text-underline-offset: 4px !important; 
    }
	
    .desktop-arrow-only {
        display: none;
    }
	
	.clocks-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
	
    .clocks-grid .w-48 {
        width: 7rem !important;
        height: 7rem !important;
    }
	
    .clocks-grid .md\:w-64 {
        width: 7rem !important;
        height: 7rem !important;
    }

    .copyright {
        font-size: 0.7rem !important;
		margin-bottom: 20px !important;
    }
}