/* Projects Page Styles */

/* Projects Header Section */
.projects-header-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./image/business-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.projects-header-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-header-title {
    color: #ffffff;
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.projects-header-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ccdc54;
}

.projects-header-subtitle {
    color: #ffffff;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Projects Filter Section */
.projects-filter-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.projects-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.projects-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-button {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-button:hover {
    background: rgba(204, 220, 84, 0.1);
    border-color: #ccdc54;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 220, 84, 0.15);
}

.filter-button.active {
    background: #ccdc54;
    color: #000;
    border-color: #ccdc54;
    box-shadow: 0 4px 15px rgba(204, 220, 84, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .projects-header-title {
        font-size: 2.5em;
    }
    
    .projects-header-subtitle {
        font-size: 1em;
    }
    
    .filter-button {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .projects-header-section {
        padding: 100px 0 60px;
    }
    
    .projects-header-title {
        font-size: 2em;
    }
    
    .projects-filter-buttons {
        gap: 10px;
    }
    
    .filter-button {
        padding: 6px 12px;
        font-size: 12px;
    }
}