/* Projects Page Specific Styles */

.projects-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.project-showcase {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.project-container {
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.project-header {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 30, 0.9) 100%);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.project-logo-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.project-icon {
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

color: var(--gold);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
}

.project-content {
    padding: 3rem;
}

.project-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.project-intro h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.project-intro p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(0, 0, 0, 0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.feature-box h4 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.demo-section {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    border-radius: 15px;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-content {
    flex: 1;
}

.demo-content h3 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.demo-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.capabilities-list {
    list-style: none;
    padding: 0;
}

.capabilities-list li {
    color: #fff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.capabilities-list li i {
    color: var(--gold);
}

.demo-cta {
    flex: 0 0 300px;
    text-align: center;
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.demo-cta h4 {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.demo-cta p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .demo-section {
        flex-direction: column;
        text-align: center;
    }

    .capabilities-list li {
        justify-content: center;
    }

    .project-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}