/* Hero Section - Responsive */
.hero {
    position: static;
    z-index: 1;
    padding: 136px 64px 78px;
    max-width: 1280px;
    width: 100%;
    display: flex;
    min-height: 100vh;

    @media (max-width: 1024px) {
        padding: 200px 64px 78px;
    }

    @media (max-width: 768px) {
        padding: 200px 24px 78px;
        justify-content: center;
    }
}

.hero-background {
    background: url('/images/hero-background.webp') no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 113%;
    z-index: -1;
}

.hero-animation {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    @media (max-width: 1440px) {
        top: 200px;
    }

    @media (max-width: 768px) {
        top: 320px;
    }
}

.hero-title {
    font-weight: 700;
    font-size: 140px;
    line-height: 157px;
    color: #000000;
    letter-spacing: -2.8px;

    @media (max-width: 1024px) {
        font-size: 109px;
        line-height: 128px;
        letter-spacing: -2.24px;
    }

    @media (max-width: 768px) {
        font-size: 52px;
        line-height: 58px;
        letter-spacing: -1.04px;
    }
}

.hero-title-highlight {
    color: #FF6B51;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 87.5px;

    @media (max-width: 1024px) {    
        margin-top: 101px;
    }

    @media (max-width: 425px) {
        margin-top: 212px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.btn-primary-large {
    background: #000000;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.45;
    letter-spacing: -0.5%;
    padding: 12px 24px;
    border-radius: 28px;
    height: auto;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

    @media (max-width: 1024px) {
        width: 240px;
    }
}

.btn-primary-large:hover {
    background: #333333;
}
