/* Page Title Component Styles */
.page-title {
    padding: 8rem 0 4rem;
    background-color: #171738;
    position: relative;
    text-align: center;
}
.page-title__categories {
    margin-bottom: 1.5rem;
    position: relative;
    animation: fadeIn 0.4s ease-out;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-title__category {
    text-decoration: none;
}

.page-title__category .badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-title__category:hover .badge {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 228, 95, 0.3);
}

.page-title__heading {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    animation: slideInUp 0.6s ease-out;
}

.page-title__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    position: relative;
    animation: fadeIn 0.8s ease-out;
    margin: 0 auto;
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Responsive Styles */
@media (max-width: 991.98px) {
    .page-title {
        padding: 5rem 0 3rem;
    }

    .page-title__heading {
        font-size: 2.75rem;
    }

    .page-title__description {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .page-title {
        padding: 4rem 0 2.5rem;
    }

    .page-title__heading {
        font-size: 2.25rem;
    }

    .page-title__description {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .page-title {
        padding: 8rem 0 2rem;
    }

    .page-title__heading {
        font-size: 2rem;
    }
}
