.breadcrumb {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    padding: 0 1rem;

    .menubar {
        width: fit-content;
        max-width: 100%;
        background: #FFFFFF;
        border: 2px solid #000000;
        border-radius: 20px;
        padding: 0.75rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

        @media (max-width: 768px) {
            font-size: 0.9rem;
            padding: 0.6rem 1rem;
            gap: 0.4rem;
        }

        @media (max-width: 480px) {
            padding: 0.5rem 0.8rem;
            font-size: 0.85rem;
        }

        .back-btn {
            color: #000000;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.21;

            &:hover {
                color: #333333;
                opacity: 0.8;
            }

            svg {
                width: 24px;
                height: 24px;
                min-width: 24px;

                @media (max-width: 480px) {
                    width: 20px;
                    height: 20px;
                    min-width: 20px;
                }
            }

            .back-text {
                @media (max-width: 480px) {
                    display: none;
                }
            }
        }

        .separator {
            color: #000000;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.21;
            margin: 0 0.25rem;

            @media (max-width: 768px) {
                font-size: 14px;
                margin: 0 0.2rem;
            }
        }

        .current-page {
            color: #000000;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.21;
            text-decoration: none;
            transition: all 0.3s ease;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;

            &:hover {
                color: #333333;
                opacity: 0.8;
            }

            @media (max-width: 768px) {
                font-size: 14px;
                max-width: 150px;
            }

            @media (max-width: 480px) {
                font-size: 13px;
                max-width: 120px;
            }
        }

        .breadcrumb-item {
            color: #000000;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.21;
            text-decoration: none;
            transition: all 0.3s ease;

            &:hover {
                color: #333333;
                opacity: 0.8;
            }

            @media (max-width: 768px) {
                font-size: 14px;
            }

            @media (max-width: 480px) {
                font-size: 13px;
            }
        }

        .home-icon {
            width: 24px;
            height: 24px;
            color: #000000;

            @media (max-width: 480px) {
                width: 20px;
                height: 20px;
            }
        }

        .share-btn {
            color: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.4rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            background: #f8f9fa;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: auto;
            text-decoration: none;

            &:hover {
                background: #e9ecef;
                border-color: #000000;
                transform: translateY(-1px);
            }

            svg {
                width: 18px;
                height: 18px;
                min-width: 18px;

                @media (max-width: 480px) {
                    width: 16px;
                    height: 16px;
                    min-width: 16px;
                }
            }

            @media (max-width: 768px) {
                padding: 0.35rem;
            }

            @media (max-width: 480px) {
                padding: 0.3rem;
            }
        }
    }
}

/* Hero section styles */
.hero {
    background: url('/assets/img/breadcrumb.webp') center/cover no-repeat;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    @media (max-width: 768px) {
        height: 25vh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero .title {
    margin-top: 7rem;
    color: #fff;
    z-index: 2;
    position: relative;

    @media (max-width: 768px) {
        margin-top: 5rem;
        font-size: 1.8rem;
    }

    @media (max-width: 480px) {
        margin-top: 4rem;
        font-size: 1.5rem;
    }
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .breadcrumb {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        margin-bottom: 1rem;
        padding: 0 0.25rem;
    }
}
