/* =========================================================
   TOUR TITLE HERO
========================================================= */

.tour-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.tour-title span {
    color: #ffd000;
    background: linear-gradient(
        90deg,
        #00ff99,
        #ffd000,
        #ff7b00
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    padding: 0 6px;

    text-shadow: 0 0 18px rgba(255, 208, 0, 0.35);
}

.hero-badges span {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 30px;
}

@media (max-width: 768px) {

    .tour-title {
        font-size: 28px;
    }

}


/* =========================================================
   LOGO
========================================================= */

.logo-icon {
    width: 40px;
    height: 40px;

    background: linear-gradient(
        135deg,
        #86B817,
        #ffd000
    );

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 18px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.logo-text {
    line-height: 1.1;
}

.logo-top {
    font-size: 18px;
    font-weight: 800;

    background: linear-gradient(
        90deg,
        #86B817,
        #ffd000
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: 0.5px;
}

.logo-bottom {
    font-size: 11px;
    font-weight: 500;
    color: #66f;
    letter-spacing: 0.3px;
    margin-top: -2px;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand:hover .logo-icon {
    transform: translateY(-2px);
    transition: 0.3s;
}

@media (max-width: 768px) {

    .logo-top {
        font-size: 15px;
    }

    .logo-bottom {
        font-size: 10px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

}