﻿.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    z-index: 2;
    text-align: center;
    color: #000000;
}

.hero-headline {
    font-family: var(--font-heading) !important;
    font-size: clamp(3rem, 10vw, 9rem) !important;
    font-weight: 800 !important;
    line-height: 1;
    color: var(--primary-color);
    text-transform: uppercase;
}

.hero-background {
    z-index: 1 !important;
}

.hero-headline span {
    display: block;
    overflow: hidden;
}

    .hero-headline .line-inner {
        display: block;
    }

    .hero-headline .align-right {
        text-align: right;
    }

.scroll-prompt {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--color-white);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

    .scroll-prompt i {
        font-size: 1.5rem;
        animation: bounce 2s infinite;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}
