/* Enhanced Breadcrumb Styles */
.breadcrumb-section {
    background: #1a1a1a;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Animated gradient line */
.breadcrumb-section::before,
.breadcrumb-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        transparent 25%,
        #ffa500 50%,
        transparent 75%,
        transparent 100%
    );
    animation: shimmer 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.breadcrumb-section::before {
    top: 0;
}

.breadcrumb-section::after {
    bottom: 0;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 500;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
    animation: fadeInRight 0.5s ease forwards;
    opacity: 0;
}

.breadcrumb li:nth-child(1) { animation-delay: 0.1s; }
.breadcrumb li:nth-child(2) { animation-delay: 0.2s; }
.breadcrumb li:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 15px;
    color: #ffa500;
    font-size: 1.4rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.breadcrumb li:hover:not(:last-child)::after {
    transform: scale(1.2);
}

.breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #ffa500;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffa500;
    transform: translateY(-2px);
}

.breadcrumb a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.breadcrumb .active {
    color: #ffa500;
    font-weight: 600;
    font-size: clamp(1.2rem, 2.2vw, 1.35rem);
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 20px 0;
    }
    
    .breadcrumb {
        font-size: 1rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin: 0 10px;
        font-size: 1.2rem;
    }
    
    .breadcrumb .active {
        font-size: 1.1rem;
    }
} 