/*
==================================
  VALUEX INNOVATIONS - PROJECTS PAGE STYLES
==================================
*/

/* Redefine variables or import from a central file */
:root {
    --primary-navy: #0f172a;
    --primary-blue: #1e3a8a;
    --accent-cyan: #06b6d4;
    --accent-orange: #fb923c;
    --text-gradient: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%);
}

body {
    background-color: #f8f9fa;
}

/* Hero Section */
.projects-hero-section {
    background: var(--primary-navy);
    padding: 8rem 0;
    color: white;
    text-align: center;
}

.projects-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.projects-hero-support {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Main Content */
.projects-main-content {
    padding: 5rem 0;
    margin-top: -4rem;
    background: white;
    position: relative;
    border-radius: 1.5rem 1.5rem 0 0;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-weight: 500;
    color: #495057;
    background: white;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #f1f3f5;
    border-color: #ced4da;
}

.filter-btn.active {
    background: var(--accent-cyan);
    color: white;
    border-color: var(--accent-cyan);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.project-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #06b6d4, #fb923c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    overflow: hidden;
}

.project-image i {
    opacity: 0.8;
}

.project-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background-color: #d1fae5;
    color: #065f46;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: #e9ecef;
    color: #495057;
    border-radius: 5px;
}

.project-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--accent-cyan);
    transform: translateX(5px);
}

/* CTA Section */
.projects-cta-section {
    padding: 6rem 0;
    background: var(--primary-navy);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.btn-cta-white {
    background: white;
    color: var(--primary-blue);
    padding: 0.75rem 2rem;
    border-radius: 20px;
    font-weight: 600;
}

