/* ============================================
   Modern Breadcrumb Styling
   Modern, Professional, and Eye-Catching
   ============================================ */

/* Breadcrumb Section - Modern Background */
.breadcumb {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    margin-top: 120px;
    background: hsl(var(--base)/0.05);
    overflow: hidden;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .breadcumb {
        margin-top: 100px;
        padding: 18px 0;
    }
}

@media screen and (max-width: 767px) {
    .breadcumb {
        margin-top: 90px;
        padding: 15px 0;
    }
}

@media screen and (max-width: 575px) {
    .breadcumb {
        margin-top: 80px;
        padding: 12px 0;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Background Pattern - Removed for minimal design */

/* Modern Wrapper with Glassmorphism */
.breadcumb__wrapper {
    text-align: left;
    position: relative;
    z-index: 2;
    padding: 8px 15px;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    width: 100%;
}

/* Modern Title Styling with Footer-style Underline */
.breadcumb__title {
    color: hsl(var(--dark));
    font-weight: 700;
    font-size: 28px;
    margin: 0;
    text-align: left;
    position: relative;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: hsl(var(--base));
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
    padding-bottom: 4px;
}

@media screen and (max-width: 767px) {
    .breadcumb__title {
        font-size: 24px;
        text-decoration-thickness: 2.5px;
        text-underline-offset: 6px;
        padding-bottom: 3px;
    }
}

@media screen and (max-width: 575px) {
    .breadcumb__title {
        font-size: 20px;
        text-decoration-thickness: 2px;
        text-underline-offset: 5px;
        padding-bottom: 2px;
    }
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title underline animation removed for minimal design */

/* Breadcrumb list removed - only page title shown */

/* Responsive Design */
@media screen and (max-width: 991px) {
    .breadcumb {
        padding: 12px 0;
    }
    
    .breadcumb__wrapper {
        padding: 6px 12px;
    }
}

@media screen and (max-width: 767px) {
    .breadcumb {
        padding: 10px 0;
    }
    
    .breadcumb__wrapper {
        padding: 5px 10px;
    }
}

@media screen and (max-width: 575px) {
    .breadcumb {
        padding: 8px 0;
    }
    
    .breadcumb__wrapper {
        padding: 4px 8px;
    }
}

/* Dark Mode Support (if needed) */
@media (prefers-color-scheme: dark) {
    .breadcumb__wrapper {
        background: rgba(30, 30, 30, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Smooth Scroll Animation */
@supports (scroll-behavior: smooth) {
    .breadcumb {
        scroll-margin-top: 100px;
    }
}

/* Accessibility Improvements */
.breadcumb__link:focus {
    outline: 2px solid hsl(var(--base));
    outline-offset: 2px;
    border-radius: 10px;
}

/* Print Styles */
@media print {
    .breadcumb {
        background: transparent;
        padding: 20px 0;
    }
    
    .breadcumb__wrapper {
        background: transparent;
        box-shadow: none;
        border: none;
    }
}

