/* Projects Page Specific Styles */

/* Projects Hero */
.projects-hero {
    padding: 10rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/projects-bg.jpg') center/cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.projects-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.projects-hero .subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Project Filter */
.project-filter {
    padding: 2rem 0;
    background-color: var(--light-background);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* No Projects Section */
.no-projects {
    padding: 5rem 0;
}

.coming-soon {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    margin-bottom: 2rem;
}

.icon-container i {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.coming-soon p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.future-projects h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.future-projects h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.future-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.future-project-card {
    padding: 2rem;
    background-color: var(--light-background);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.future-project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.future-project-card .icon {
    background-color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.future-project-card .icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.future-project-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.future-project-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Projects Section */
.projects {
    padding: 5rem 0;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.project-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 40%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-details {
    width: 60%;
    padding: 2rem;
}

.project-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.project-details .description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-meta {
    background-color: var(--light-background);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.project-meta h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.project-impact {
    margin-bottom: 1rem;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-members span {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Project Idea */
.project-idea {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/idea-bg.jpg') center/cover fixed;
    color: white;
    text-align: center;
}

.project-idea h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.project-idea p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.project-idea .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .project-card {
        flex-direction: column;
    }

    .project-image, .project-details {
        width: 100%;
    }

    .project-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .projects-hero h1 {
        font-size: 2.5rem;
    }

    .project-details h3 {
        font-size: 1.5rem;
    }

    .project-idea h2 {
        font-size: 2rem;
    }

    .project-idea p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .projects-hero h1 {
        font-size: 2rem;
    }

    .project-image {
        height: 200px;
    }
}
