/* Project Detail Page Styles */
.project-detail {
    padding-top: 120px;
}

.project-header {
    margin-bottom: 2rem;
}

.project-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.project-meta span {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-category {
    background: var(--secondary-color);
    color: white;
}

.project-date {
    background: var(--background-color);
    color: var(--primary-color);
}

/* Gallery Styles */
.project-gallery {
    margin-bottom: 3rem;
}

.main-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail {
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: translateY(-5px);
}

/* Content Styles */
.project-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.project-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.feature-list h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-list p {
    margin: 0;
    color: #666;
}

/* Technology Stack */
.tech-stack-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tech-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.tech-item span {
    color: var(--primary-color);
    font-weight: 500;
}

/* Sidebar Styles */
.project-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.project-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-info li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.project-info li:last-child {
    border-bottom: none;
}

.project-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.status-active {
    color: #2ecc71;
    font-weight: 500;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-highlights li {
    padding: 0.8rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.feature-highlights li:last-child {
    border-bottom: none;
}

.feature-highlights li::before {
    content: '→';
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .project-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .project-header h1 {
        font-size: 2rem;
    }

    .feature-list li {
        padding: 1rem;
    }

    .tech-stack-detailed {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
} 