@charset "utf-8";

/* =========================================================
   HERO HEADING — CENTRED, PREMIUM, WITH GOLD UNDERLINE
   ========================================================= */

.hero-class-heading-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.hero-class-heading {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    text-align: center;
    z-index: 10;
}

/* Gold gradient underline */
.hero-class-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(255, 215, 160, 0) 0%,
        rgba(255, 215, 160, 1) 50%,
        rgba(255, 215, 160, 0) 100%
    );
    border-radius: 2px;
    z-index: 10;
}

/* Optional tighter spacing for headings */
.hero-class-tight {
    margin-bottom: 22px;
}

/* Icon used beside hero lines */
.hero-class-icon {
    height: 46px;
    width: auto;
    opacity: 0.9;
}


/* =========================================================
   BUTTONS — PREMIUM, SLIMMER, ELEGANT
   ========================================================= */

.hero-class-btn {
    padding: 10px 22px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}


/* =========================================================
   CAROUSEL IMAGE — MAIN LANDING VERSION
   ========================================================= */

.hero-class-carousel-img {
    max-height: 260px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    display: block;
}
.hero-class-divider {
    width: 60px;
    height: 2px;
    margin: 1.4rem auto;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}
.hero-class-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    margin: 1.6rem 0;

    /* Makes the span behave like a block */
    display: flex;
}

.hero-class-divider::before,
.hero-class-divider::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 215, 160, 0) 0%,
        rgba(255, 215, 160, 1) 50%,
        rgba(255, 215, 160, 0) 100%
    );
    border-radius: 2px;
}

.hero-class-divider img {
    height: 28px;
    width: auto;
    opacity: 0.9;
}
