.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.48)
        ),
        url("../images/hero/hero.jpg") center/cover no-repeat;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
}

.hero-section .hero-content {
    width: 100%;
    padding: 90px 0 110px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.2) 55%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
    color: #fff;
}

.hero-small {
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-text h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    font-weight: 800;
}

.hero-text p {
    max-width: 560px;
    margin-bottom: 28px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-destinations {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    gap: 24px;
    overflow-x: auto;

    padding: 18px max(16px, calc((100vw - 1240px) / 2));

    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(10px);
}

.hero-destinations a {
    flex: 0 0 auto;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.hero-destinations a:hover {
    color: #ffd26a;
}

@media (max-width: 700px) {

    .hero-section {
        min-height: 600px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-destinations {
        gap: 18px;
    }
}