/* Project Page Styles */
:root {
    --gradient-bg: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --glow-color: #00a8ff;
}

.project-details {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #333333;
}

.project-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    z-index: -1;
}

.project-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem;
    background: #ffffff;
}

.project-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--glow-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.project-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #333333, #00a8ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
}

.project-header .subtitle {
    color: #666666;
    font-size: 1.2rem;
}

.project-image {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-image:hover {
    transform: scale(1.02);
}

.project-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.project-content h2 {
    color: var(--glow-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-left: 1rem;
}

.project-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--glow-color);
    border-radius: 2px;
}

.project-content p {
    color: #444444;
    line-height: 1.6;
}

.project-content ul {
    color: #444444;
    line-height: 1.6;
    margin-left: 1.5rem;
}

.project-content ul li {
    margin-bottom: 0.5rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.tech-item {
    background: rgba(0, 168, 255, 0.05);
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
    color: #0076b3;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.tech-item:hover {
    background: rgba(0, 168, 255, 0.1);
    transform: translateY(-2px);
    color: #00a8ff;
}

.tech-item i {
    margin-right: 0.5rem;
    color: #00a8ff;
}

.back-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--glow-color);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    margin: 2rem 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

.back-button:hover::before {
    width: 100%;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 8px 15px rgba(0, 168, 255, 0.1);
}

.feature-item h3 {
    color: var(--glow-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-header h1 {
        font-size: 2rem;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
