/* Projects page specific styles */

.hero-projects {
    padding: 4rem 2rem;
}

.projects-section {
    margin: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Featured Projects */
.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

/* All Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    padding: 0;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-image-small {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 2rem;
}

.project-content-small {
    padding: 1.5rem;
}

.project-title {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-title-small {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.project-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-description-small {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-technologies-small {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: var(--light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
}

.tech-tag-small {
    background: var(--light);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary);
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-links-small {
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.project-link {
    flex: 1;
    text-align: center;
}

.project-links-small .btn {
    padding: 0.6rem 1rem;
}

/* CTA Section */
.cta-section {
    margin: 5rem 0;
    padding: 4rem 2rem;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-projects-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
}
