/* HERO WRAPPER */
.custom-hero-banner {
    align-items: center;
    justify-content: center;
    padding: 60px 0px;
}

/* BADGE */
.hero-badge {
    display: inline-flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #c9b279;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #c9b279;
    border-radius: 50%;
    align-self: center;
    
}

/* HEADING */
.hero-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.hero-heading span {
    background: var(--spw-01, linear-gradient(180deg, #cab37b 45%, #262216 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hero-desc {
    font-size: 16px;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-comment {
    display: inline-flex;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 420px;
}

.hero-comment i {
    margin-top: 15px;
    font-size: 20px;
    vertical-align: middle;
    color: #c9b279;
}

.hero-pills {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-pills i {
    font-size: 14px;
    color: #c9b279;
    margin-right: 5px;
    top: 0px !important;
}

.hero-pills span {
    display: inline-block;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 14px;
    border-radius: 10px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    vertical-align: center;
}

.btn-primary {
    background-color: #c9b279;
    color: #000;
    padding: 10px 20px;
    border: 1px solid #c9b279;
    border-radius: 30px;
    transition: all 0.3s ease;

    &:hover {
        background-color: transparent;
        color: #c9b279;
    }
}

.btn-secondary {
    color: #fff;
    padding: 10px 20px;
}

.hero-spot-tag {
    display: inline-flex;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
    .custom-hero-banner {
        padding: 80px 0px;
    }
}

@media screen and (max-width: 768px) {
    .custom-hero-banner {
        padding: 80px 0px;
    }
}

@media screen and (max-width: 500px) {
    .custom-hero-banner {
        padding: 80px 0px;
    }

    .hero-heading {
        font-size: 34px;
        line-height: 40px;
    }

    .hero-pills {
        gap: 10px;
    }
    
    .hero-actions {
        gap: 10px;
    }
    .hero-banner-wrapper .row-bg{
        background-position: 67% 0 !important;
    }
}