/*============================================
   easy-eye.css
   Gentle overrides to make the SkillGro frontend
   easier to read — softened buttons, better contrast,
   less visual noise. Safe to remove anytime.
==============================================*/

/* ── 1. Typography: cleaner body text color ── */
:root {
    --tg-body-color: #52516A;           /* was #6D6C80 – slightly higher contrast */
    --tg-body-font-size: 15.5px;        /* was 16px – just a touch tighter */
    --tg-body-line-height: 1.78;        /* was 1.75 – a bit more breathing room */
}

/* ── 2. Buttons: soften the heavy 4px/6px drop shadow ── */
.btn {
    box-shadow: 2px 3px 0px 0px rgba(5, 0, 113, 0.35) !important;
    letter-spacing: 0.1px;
    font-size: 15px;
}

.btn:hover,
.btn:focus-visible {
    box-shadow: 0 0 0 0 transparent !important;
}

.btn-two {
    box-shadow: 2px 3px 0px 0px rgba(61, 61, 61, 0.35) !important;
}

.btn-two:hover,
.btn-two:focus-visible {
    box-shadow: 0 0 0 0 transparent !important;
}

/* ── 3. Navbar: slightly less opaque dark top bar ── */
.tg-header__top {
    background-color: #0a083a !important;
}

/* ── 4. Headings: slightly softer, less heavy ── */
h1 { font-size: 2.3rem; }
h2 { font-size: 1.85rem; letter-spacing: -0.3px; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }

/* ── 5. Section titles: reduce "span highlight" weight ── */
.section__title .title span:not(.svg-icon) {
    background: none;
    -webkit-text-fill-color: inherit;
    color: var(--tg-theme-primary);
    position: relative;
}

/* ── 6. Category cards & course cards: lighter borders ── */
.categories__item,
.courses__item,
.course__item {
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.categories__item:hover,
.courses__item:hover,
.course__item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    transform: translateY(-2px);
}

/* ── 7. Brand / partner strip: soften ── */
.brand__item {
    opacity: 0.72;
    transition: opacity 0.2s;
}
.brand__item:hover {
    opacity: 1;
}

/* ── 8. Footer: slightly less pitch-black ── */
.footer__area,
.footer__bottom {
    background-color: #0d0b30 !important;
}

/* ── 9. Section backgrounds: alternate gentle tints ── */
.grey-bg {
    background: #F8F8FC !important;
}

.grey-bg-two {
    background: #FAFAFA !important;
}

/* ── 10. Rating stars: slightly warmer ── */
.rating i,
.rating span i {
    color: #f5a623;
}

/* ── 11. Course price tag: clean it up ── */
.courses__item-price .price,
.course__item-price .price {
    font-size: 1.0625rem;
    letter-spacing: -0.2px;
}

/* ── 12. About section: bullet item shadows softer ── */
.about__content ul li::after,
.about__content ol li::after,
.wsus_content-box ul li::after,
.wsus_content-box ol li::after,
.choose__content-two ul li::after,
.choose__content-two ol li::after {
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.15);
}

/* ── 13. Scroll-to-top button ── */
.scroll__top {
    box-shadow: 0 4px 12px rgba(87, 81, 225, 0.25) !important;
}

/* ── 14. Input fields: slightly friendlier border ── */
.form-control,
.form-grp select,
.form-grp textarea {
    border-color: #dbd8f0 !important;
    border-width: 1.5px !important;
}

.form-control:focus {
    border-color: var(--tg-theme-primary) !important;
    box-shadow: 0 0 0 3px rgba(87, 81, 225, 0.12) !important;
}

/* ── 15. Cookie consent / alerts: round & soft ── */
.cookie-popup,
[class*="cookie"],
[id*="cookie"] {
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
}
