@font-face {
    font-family: 'HostGrotesk';
    src: url('/fonts/HostGrotesk.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* Fallback fonts for debugging */
* {
    font-family: 'HostGrotesk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'HostGrotesk', Georgia, 'Times New Roman', Times, serif !important;
    line-height: 120% !important;
}

/* Ensure navbar stays at top */
nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
}

/* Add top padding to first section to account for fixed navbar */
.first-section {
    padding-top: 100px;
}

.scroll-text-container {
    position: relative;
    min-height: 600px;
}

.scroll-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    pointer-events: none;
}

.scroll-text.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.scroll-text.prev {
    opacity: 0;
    transform: translate(-50%, -120%) scale(0.6);
}

.scroll-text.next {
    opacity: 0;
    transform: translate(-50%, 20%) scale(0.6);
}

/* Enhanced progress indicator styles */
.progress-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot:hover {
    transform: scale(1.2);
}

/* Floating animation for background images */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-image {
    animation: float 6s ease-in-out infinite;
}

/* Gradient text animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(-45deg, #f97316, #dc2626, #f97316, #dc2626);
    background-size: 400% 400%;
    animation: gradient-shift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}