/* ========================================
   MONOGRAM LOGO INTEGRATION - Premium Apple-Level
   NovaRide Branding Elements
   ======================================== */

/* ========== 1. PRELOADER MONOGRAM ========== */
#novaPreloader .preloader-monogram {
    width: 100px;
    height: auto;
    animation: monogramPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.6));
}

@keyframes monogramPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Desktop: larger monogram */
@media (min-width: 768px) {
    #novaPreloader .preloader-monogram {
        width: 140px;
    }
}

/* ========== 2. SECTION DIVIDERS (SIMPLE LINES ONLY) ========== */
.section-divider-simple {
    width: 100%;
    max-width: 200px;
    height: 1px;
    margin: 100px auto;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 100%);
    opacity: 0;
    transform: scaleX(0.8);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-divider-simple.visible {
    opacity: 1;
    transform: scaleX(1);
}

/* Mobile: smaller and less margin */
@media (max-width: 767px) {
    .section-divider-simple {
        max-width: 150px;
        margin: 60px auto;
    }
}

@media (min-width: 1024px) {
    .section-divider-simple {
        max-width: 250px;
        margin: 120px auto;
    }
}

/* ========== 3. LOADING OVERLAY (for future use) ========== */
.monogram-loader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.monogram-loader.active {
    opacity: 1;
    visibility: visible;
}

.monogram-loader img {
    width: 80px;
    height: auto;
    animation: monogramSpin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes monogramSpin {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 1;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {

    .section-divider-simple,
    #novaPreloader .preloader-monogram,
    .monogram-loader img {
        animation: none !important;
        transition: opacity 0.2s ease, visibility 0.2s ease !important;
    }
}

/* ========== PRINT STYLES ========== */
@media print {

    .monogram-loader,
    .section-divider-simple {
        display: none !important;
    }
}