/* Hero Section */
.portfolio-hero {
    background: linear-gradient(rgba(15, 37, 64, 0.8), rgba(15, 37, 64, 0.4)), 
        url('../IMG/marvin-meyer-SYTO3xs06fU-unsplash.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
}

.hero-shapes .shape {
    background: rgba(42, 167, 223, 0.2);
}

.portfolio-hero .container {
    position: relative;
    z-index: 10;
}

.portfolio-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: transparent;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}
/* End Hero Section */

/* تنسيقات العنوان */
.section-header{
    background-color: var(--sectoin-color);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width: 768px){
    .section-header{
        height: 70px;
    }
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* تأثير الكتابة الآلية */
.typed-text {
    background: linear-gradient(293deg, #0f2540 14.05%, #0eb0ee 89.3%);
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
    font-weight: 700;
}

/* تأثيرات الحركة */
.section-header {
    transition: all 0.3s ease;
}

/* filter */
.portfolio-filter-section{
    position: sticky;
    top: 75px;
    z-index: 99;
    background-color: var(--sectoin-color);

}

.filter-buttons {
    padding: 10px 0;
}

.filter-buttons .btn {
    margin: 5px;
    transition: all 0.3s ease;
}

.filter-buttons .btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* أنماط عرض الأعمال */
.portfolio-showcase {
    background-color: var(--sectoin-color);
}

.portfolio-item {
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.project-tags {
    margin: 10px 0;
}

.project-tags .badge {
    background-color: var(--primary-color);
    margin-left: 5px;
    font-weight: normal;
}

/* تأثيرات الحركة للتصفية */
.portfolio-item {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .portfolio-hero {
        padding: 80px 0 40px;
    }
    
    .portfolio-hero h1 {
        font-size: 2.2rem;
    }
    
    .filter-buttons .btn {
        margin: 3px;
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}