@font-face {
    font-family: "Halvar";
    src: url("fonts/HalvarBreit-Th.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Halvar";
    src: url("fonts/HalvarBreit-Rg.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Halvar";
    src: url("fonts/HalvarBreit-Md.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Halvar";
    src: url("fonts/HalvarBreit-Bd.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

* {
    font-family: "Halvar", serif;
}

body {
    background: #000910;
}

.button-gradient {
    background: linear-gradient(90deg, #573623 0%, #f0b64d 100%);
}

.gradient-background {
    background: radial-gradient(100% 100% at 50% 0%, #0f3740 0%, #000910 100%);
}

.line-gradient {
    background: linear-gradient(90deg, #573623 0%, #f0b64d 100%);
}

.hero-zoom {
    animation: zoomInOut 12s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 430ms ease, transform 430ms ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-34px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(34px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.form-input {
    background: transparent;
    border-bottom: 1px solid #cfcee1;
    color: white;
    font-size: 16px;
    font-weight: 300;
    outline: none;
    padding: 16px 0;
    width: 100%;
}

.form-input::placeholder {
    color: rgb(255 255 255 / 0.6);
}

.contact-checkbox-icon {
    display: none;
}

.contact-checkbox:checked + .contact-checkbox-icon {
    display: block;
}

.animate-scroll {
    animation: scrollX 10s linear infinite;
}

.floor-tooltip {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.floor-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes scrollX {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    @keyframes scrollY {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-50%);
        }
    }

    .animate-scroll {
        animation: scrollY 10s linear infinite;
    }
}

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

    .animate-scroll {
        animation: none;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

*:focus,
*:focus-visible,
*:focus-within {
    outline: none !important;
    box-shadow: none !important;

    --tw-ring-shadow: 0 0 #0000 !important;
    --tw-ring-offset-shadow: 0 0 #0000 !important;
    --tw-inset-ring-shadow: 0 0 #0000 !important;
}

* {
    -webkit-tap-highlight-color: transparent;
}