/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    color: #fff;
    padding: 60px 0 60px;
}

.header-content {
    margin-bottom: 40px;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.header-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.online-users {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px auto;
    max-width: fit-content;
}

.online-users span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.user-avatars {
    display: flex;
    margin: 0 10px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: -8px;
    border: 2px solid #fff;
    overflow: hidden;
    position: relative;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
    z-index: 2;
}

.instagram-link {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Breadcrumb Styles */
.breadcrumb {
    margin-bottom: 1.5rem;
    background: transparent;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    padding: 0 8px;
}

.breadcrumb-item.active {
    color: #fff;
}

@media (max-width: 991px) {
    .header-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding: 40px 0 0;
    }
    
    .header-title {
        font-size: 1.7rem;
    }
    
    .header-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .online-users {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .user-avatars{
        margin-bottom: 3rem;
    }
} 