/* =========================================
   LCNL UTILITIES
   -----------------------------------------
   Spacing, shadows, text effects, layout
   helpers, responsive visibility, and accents
   ========================================= */

/* --- Spacing Helpers --- */
.mt-6 {
    margin-top: 4rem !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

.pt-6 {
    padding-top: 4rem !important;
}

.pb-6 {
    padding-bottom: 4rem !important;
}

.mt-n1 {
    margin-top: -.25rem !important;
}

.mt-n2 {
    margin-top: -.5rem !important;
}

.px-6 {
    padding-inline: 4rem !important;
}

.py-6 {
    padding-block: 4rem !important;
}

/* --- Shadows --- */
.shadow-soft {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08) !important;
}

.shadow-medium {
    box-shadow: 0 4px 18px rgba(0, 0, 0, .12) !important;
}

.shadow-strong {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18) !important;
}

/* --- Rounded Variants --- */
.rounded-lg {
    border-radius: calc(var(--radius) * 1.5) !important;
}

.rounded-xl {
    border-radius: calc(var(--radius) * 2) !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

/* --- Text Accents --- */
.text-gradient {
    background: linear-gradient(90deg, var(--brand), var(--accent1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted-light {
    color: rgba(0, 0, 0, .55) !important;
}

.text-shadow {
    text-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}

.text-outline {
    -webkit-text-stroke: 1px var(--accent1);
    color: transparent;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* --- Flex & Alignment --- */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.w-fit {
    width: fit-content !important;
}

.h-fit {
    height: fit-content !important;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --- Visibility & Motion --- */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp .6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: none;
    }
}

.hide-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

.show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .show-mobile {
        display: block !important;
    }
}

/* --- Borders / Highlights --- */
.border-accent {
    border-color: var(--accent1) !important;
}

.border-brand {
    border-color: var(--brand) !important;
}

.bg-gradient-brand {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
    color: #fff;
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent1) 0%, #f0c75e 100%);
    color: #fff;
}

/* --- Hover Transitions --- */
.hover-scale-sm {
    transition: transform .2s ease;
}

.hover-scale-sm:hover {
    transform: scale(1.03);
}

.hover-lift {
    transition: transform .2s ease, box-shadow .2s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

/* --- Image Treatments --- */
.img-cover {
    object-fit: cover !important;
}

.img-contain {
    object-fit: contain !important;
}

.img-rounded {
    border-radius: var(--radius) !important;
}

.img-shadow {
    box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}

/* --- Misc Visual Tweaks --- */
.opacity-80 {
    opacity: .8 !important;
}

.opacity-60 {
    opacity: .6 !important;
}

.opacity-40 {
    opacity: .4 !important;
}

.blur-bg {
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, .6);
    border-radius: var(--radius);
}

/* --- Utilities for Cards --- */
.card-hover-pop {
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-pop:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}