/* Project Detail Page Styles */
.project-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
}

.project-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.project-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    margin: 0;
}

.project-details {
    padding: 60px 0;
}

.project-overview {
    max-width: 900px;
    margin: 0 auto;
}

.project-overview h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.project-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.project-image-showcase {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-image-showcase img {
    width: 100%;
    display: block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Benefits List */
.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 25px 0;
}

.benefits-list li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-weight: bold;
}

body.ltr .benefits-list li {
    padding-right: 0;
    padding-left: 30px;
}

body.ltr .benefits-list li::before {
    right: auto;
    left: 0;
}

/* Technologies */
.technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.technologies span {
    background-color: #f0f4f8;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    margin-top: 0;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 25px;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-hero h1 {
        font-size: 2.5rem;
    }
    
    .project-hero p {
        font-size: 1.2rem;
    }
    
    .project-overview h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .project-hero h1 {
        font-size: 2rem;
    }
    
    .project-hero p {
        font-size: 1rem;
    }
    
    .project-overview h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .technologies {
        justify-content: center;
    }
} 