/* ================================
   PREMIUM TRAVEL HERO
================================ */

.travel-hero {
    position: relative;
    width: 100%;
    min-height: 720px;
    height: 92vh;
    max-height: 900px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(5, 20, 35, 0.94) 0%,
            rgba(5, 20, 35, 0.78) 38%,
            rgba(5, 20, 35, 0.28) 72%,
            rgba(5, 20, 35, 0.08) 100%
        ),
        url("images/travel-banner.jpg");

    background-size: cover;
    background-position: center;
}

/* Dark overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(255,255,255,0.08),
            transparent 30%
        );

    pointer-events: none;
}

/* Content */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1180px, 92%);
    margin: auto;

    padding-top: 35px;
}

/* Tag */

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 17px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    animation: fadeUp 0.8s ease forwards;
}

/* Heading */

.hero-content h1 {
    margin: 24px 0 15px;

    max-width: 700px;

    color: #ffffff;

    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -2px;

    animation: fadeUp 1s ease forwards;
}

.hero-content h1 span {
    color: #f4c542;

    position: relative;
}

/* Paragraph */

.hero-content > p {
    max-width: 650px;

    margin: 0 0 28px;

    color: rgba(255,255,255,0.84);

    font-size: 17px;
    line-height: 1.75;

    animation: fadeUp 1.15s ease forwards;
}

/* Buttons */

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    animation: fadeUp 1.3s ease forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.primary-btn {
    color: #102333;
    background: #f4c542;

    box-shadow: 0 10px 30px rgba(244,197,66,0.22);
}

.primary-btn span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.primary-btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.primary-btn:hover span {
    transform: translateX(5px);
}

.outline-btn {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.45);

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.outline-btn:hover {
    background: #ffffff;
    color: #102333;

    transform: translateY(-3px);
}

/* Features */

.hero-features {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-top: 55px;

    animation: fadeUp 1.5s ease forwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 11px;

    padding-right: 28px;

    border-right: 1px solid rgba(255,255,255,0.2);
}

.hero-feature:last-child {
    border-right: none;
}

.feature-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);

    font-size: 19px;
}

.hero-feature strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
}

.hero-feature small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,0.58);

    font-size: 11px;
}

/* Scroll */

.hero-scroll {
    position: absolute;
    right: 35px;
    bottom: 35px;

    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll span {
    writing-mode: vertical-rl;

    color: rgba(255,255,255,0.65);

    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}

.scroll-line {
    width: 1px;
    height: 55px;

    background: linear-gradient(
        to bottom,
        #f4c542,
        transparent
    );

    animation: scrollMove 1.8s infinite;
}

/* ================================
   ANIMATIONS
================================ */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes scrollMove {

    0% {
        transform: scaleY(0.5);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0.5);
        transform-origin: bottom;
    }

}

/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .travel-hero {
        min-height: 680px;
        height: auto;

        background-position: 62% center;
    }

    .hero-content {
        padding: 100px 0 80px;
    }

    .hero-content h1 {
        max-width: 600px;
    }

    .hero-features {
        gap: 18px;
    }

    .hero-feature {
        padding-right: 18px;
    }

}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .travel-hero {
        min-height: 720px;
        height: auto;

        background:
            linear-gradient(
                180deg,
                rgba(5,20,35,0.55) 0%,
                rgba(5,20,35,0.82) 50%,
                rgba(5,20,35,0.96) 100%
            ),
            url("images/travel-banner.jpg");

        background-size: cover;
        background-position: center;
    }

    .hero-content {
        width: 90%;
        padding: 110px 0 80px;
    }

    .hero-tag {
        padding: 8px 13px;

        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .hero-content h1 {
        margin-top: 20px;

        font-size: 43px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .hero-content > p {
        font-size: 14px;
        line-height: 1.65;

        margin-bottom: 24px;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-features {
        margin-top: 38px;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 16px;
    }

    .hero-feature {
        border-right: none;

        padding: 0;
    }

    .hero-feature:last-child {
        grid-column: 1 / -1;
    }

    .feature-icon {
        width: 38px;
        height: 38px;

        font-size: 16px;
    }

    .hero-feature strong {
        font-size: 12px;
    }

    .hero-feature small {
        font-size: 10px;
    }

    .hero-scroll {
        display: none;
    }

}

/* Small Mobile */

@media (max-width: 380px) {

    .hero-content {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-feature:last-child {
        grid-column: auto;
    }

}