/* =============================================
   Page Hero Sections - Shared Styles
   ============================================= */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 50px 50px 0px 50px;
    border-radius: 39px;
}

.page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.responsive-cover-picture {
    width: 100%;
    height: 100%;
    display: block;
}

.responsive-cover-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(6, 29, 53, 0.85) 0%,
        rgba(255, 193, 7, 0.6) 50%,
        rgba(6, 29, 53, 0.8) 100%
    );
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

/* Breadcrumb */
.page-breadcrumb {
    margin-bottom: 40px;
}

.page-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 24px;
    margin: 0;
    justify-content: center;
}

.page-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.page-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.page-breadcrumb .breadcrumb-item.active span {
    color: #ffc107;
    font-weight: 600;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.5);
    margin: 0 12px;
}

/* Hero Content */
.page-hero__content {
    text-align: center;
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.page-hero__title {
    font-size: 43px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(45deg, #ffc107, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
        line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Stats */
.page-hero__stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    /* flex-wrap: wrap; */
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc107;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Specific Hero Variations */
.about-hero .page-hero__overlay {
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.9) 0%, #ffffff17 50%, rgba(6, 29, 53, 0.85) 100%);
}

.contact-hero .page-hero__overlay {
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.85) 0%, rgb(46 204 113 / 0%) 50%, rgba(6, 29, 53, 0.8) 100%);
}

.article-hero .page-hero__overlay {
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.9) 0%, rgb(155 89 182 / 0%) 50%, rgba(6, 29, 53, 0.85) 100%);
}

.category-hero .page-hero__overlay {
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.85) 0%, rgb(255 255 255 / 9%) 50%, rgba(6, 29, 53, 0.8) 100%);
}

.tailor-hero .page-hero__overlay {
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.9) 0%, rgb(243 156 18 / 20%) 50%, rgba(6, 29, 53, 0.85) 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .page-hero__title {
        font-size: 2.5rem;
    }

    .page-hero__stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 60vh;
        padding: 100px 0 50px;
        margin: 1px;
    }

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

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

    .page-hero__stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-hero__title {
        font-size: 1.75rem;
    }

    .page-breadcrumb .breadcrumb {
        padding: 10px 20px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 0;
        justify-content: start;
    }

    .page-hero__stats {
        gap: 20px;
    }
}
