/* Premium Blog Details Hero Section - Luxury Design */
.blog-details-hero {
    position: relative;
    background: linear-gradient(135deg, var(--logo-primary, #1a3a5c) 0%, var(--logo-secondary, #2a5a8c) 50%, #1f4d7a 100%),
                url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1400&q=80') center/cover;
    background-blend-mode: overlay;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.blog-details-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(15, 43, 60, 0.85) 0%, 
        rgba(15, 43, 60, 0.75) 50%, 
        rgba(15, 43, 60, 0.8) 100%);
    z-index: 2;
    animation: heroFadeIn 0.8s ease-out;
}

.blog-details-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 3;
    pointer-events: none;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.blog-details-hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: contentSlideUp 0.9s ease-out 0.2s both;
}

@keyframes contentSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-details-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    line-height: 1.2;
    max-width: 900px;
}

.blog-details-hero-subtitle {
    color: #e8e8e8;
    font-size: 1.35rem;
    margin-bottom: 24px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-details-hero-badge {
    margin-top: 12px;
    background: linear-gradient(135deg, rgba(212, 168, 82, 0.95), rgba(227, 186, 102, 0.95));
    color: var(--logo-primary, #1a3a5c);
    border-radius: 30px;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(255, 224, 130, 0.3);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.blog-details-hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 224, 130, 0.4);
}

.blog-details-hero-breadcrumb {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 12px 40px;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.blog-details-hero-breadcrumb:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.blog-details-hero-breadcrumb .breadcrumb {
    background: none;
    margin-bottom: 0;
    padding: 0;
}

.blog-details-hero-breadcrumb .breadcrumb-item a {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.blog-details-hero-breadcrumb .breadcrumb-item a:hover {
    color: var(--logo-accent, #ffe082);
}

.blog-details-hero-breadcrumb .breadcrumb-item.active {
    color: var(--logo-accent, #ffe082);
    font-weight: 700;
}

.blog-details-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
    content: '›';
    font-size: 1.2rem;
    padding: 0 10px;
    font-weight: 300;
}

@media (max-width: 991px) {
    .blog-details-hero {
        min-height: 320px;
    }
    .blog-details-hero-title {
        font-size: 2.2rem;
    }
    .blog-details-hero-subtitle {
        font-size: 1.1rem;
    }
    .blog-details-hero-breadcrumb {
        padding: 10px 24px;
    }
    .blog-details-hero-badge {
        padding: 10px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .blog-details-hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .blog-details-hero-title {
        font-size: 1.8rem;
    }
}
