/* Projects Page - Clean Light Design */
#projects-main {
    background: #f1f1f1;
    color: #000000;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: gilroy;
}

/* Navigation */
#nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7%;
    width: 100%;
    position: fixed;
    z-index: 99;
    padding: 10px 30px;
    backdrop-filter: blur(10px);
}

#nav>h3 {
    font-family: gilroy;
    font-weight: 400;
    font-size: 26px;
    color: #000000;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-family: gilroy;
    font-weight: 500;
    font-size: 22px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7c7c7c;
}

.nav-links a.active {
    color: #000000;
    font-weight: 600;
    position: relative;
}

#nav>button {
    padding: 9px 15px;
    border-radius: 50px;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 19px;
    cursor: pointer;
}

/* Hero Section */
.projects-hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("projects.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000000;
    font-family: gilroy;
}

.hero-title span {
    color: #000000;
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #504e4e;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-family: gilroy;
}

/* Projects Sections */
.projects-section {
    padding: 80px 5%;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Left Projects */
.left-projects {
    background-color: #d5dce0;
    width: 100vw;
}

/* Right Projects */
.right-projects {
    background-color: #adcee8;
    width: 100vw;
}

.projects-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* Project Cards */
.project-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.project-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.project-icon {
    font-size: 3rem;
    color: #000000;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.project-title {
    font-size: 2rem;
    color: #000000;
    font-weight: 600;
    font-family: gilroy;
    flex: 1;
    line-height: 1.3;
}

.tech-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
    font-family: gilroy;
}

.project-desc {
    color: #7c7c7c;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: gilroy;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.feature i {
    font-size: 1.2rem;
    color: #000000;
    width: 24px;
}

.feature span {
    color: #000000;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: gilroy;
}

/* Color variations for different projects */
.project-card:nth-child(1) .project-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.project-card:nth-child(2) .project-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.project-card:nth-child(3) .project-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Right column colors */
.right-projects .project-card:nth-child(1) .project-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.right-projects .project-card:nth-child(2) .project-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.right-projects .project-card:nth-child(3) .project-icon {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-container {
        max-width: 800px;
    }
    
    .project-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .projects-section {
        padding: 60px 5%;
    }
    
    .project-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .project-title {
        text-align: center;
    }
    
    .project-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .project-card {
        padding: 30px;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    #nav {
        padding: 10px 15px;
    }
    
    .nav-links {
        gap: 15px;
        margin-right: 10px;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    #nav>button {
        font-size: 16px;
        padding: 7px 12px;
    }
    
    .project-card {
        padding: 25px 20px;
    }
    
    .project-title {
        font-size: 1.7rem;
    }
    
    .project-desc {
        font-size: 1rem;
    }
}