/* Projects Page Hero Section */
.hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url('../img/7045d3ee-f663-4206-b8f2-94979a61cdcc-1024x682.jpg') center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 20%, 
        rgba(255, 255, 255, 0.85) 50%, 
        rgba(255, 255, 255, 0.6) 70%,
        rgba(255, 255, 255, 0.3) 85%,
        rgba(255, 255, 255, 0.1) 95%,
        transparent 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* Coming Soon Section */
.coming-soon-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    padding: 6rem 0;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(15px);
    -webkit-backdrop-filter: saturate(180%) blur(15px);
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.44) inset, 
                0 8px 30px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.coming-soon-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.coming-soon-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Project Categories */
.project-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.44) inset, 
                0 4px 20px 0 rgba(0, 0, 0, 0.08);
}

.category-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.44) inset, 
                0 20px 40px 0 rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.category-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.category-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.coming-soon-cta {
    margin-top: 3rem;
}

.coming-soon-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Preview Gallery Section */
.preview-gallery-section {
    background: rgba(245, 249, 250, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    padding: 6rem 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.preview-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(15px);
    -webkit-backdrop-filter: saturate(180%) blur(15px);
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.44) inset, 
                0 4px 20px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
}

.preview-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.44) inset, 
                0 25px 50px 0 rgba(0, 0, 0, 0.2);
}

.preview-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.preview-card:hover .preview-overlay {
    transform: translateY(0);
}

.preview-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.preview-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.9) 0%, 
        rgba(88, 86, 214, 0.9) 50%, 
        rgba(255, 107, 107, 0.9) 100%),
        url('../img/7045d3ee-f663-4206-b8f2-94979a61cdcc-1024x682.jpg') center/cover;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        padding: 0 15px;
        line-height: 1.2;
    }
    
    .coming-soon-card {
        padding: 3rem 2rem;
        margin: 0 15px;
    }
    
    .coming-soon-title {
        font-size: 2.2rem;
    }
    
    .coming-soon-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .project-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .category-item {
        padding: 1.5rem 1rem;
        margin: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .preview-gallery-section {
        padding: 4rem 0;
    }
    
    .preview-gallery-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .preview-image {
        height: 250px;
    }
    
    .d-flex.justify-content-center {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        margin: 0.5rem 0;
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .coming-soon-card {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .category-item h5 {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}