.project-details {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 150px;
}

.project-header {
    text-align: center;
    margin-bottom: 3rem;
}

.project-header h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.project-main-image {
    max-width: 75%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-section {
    margin-bottom: 3rem;
}

.project-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.project-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #333;
}

.project-section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-section p:last-child {
    margin-bottom: 0;
}

.technology-list, .feature-list {
    padding-left: 1.5rem;
    line-height: 1.6;
}

.feature-list li {
    margin-bottom: 0.8rem;
}

/* Notions Bubbles */
.notions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.notion-bubble {
    background-color: #f0f8ff;
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    cursor: default;
}

.notion-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #e6f2ff;
}

.notion-bubble h3 {
    margin: 0;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Back to Projects Button */
.back-to-projects {
    margin-top: 3rem;
    text-align: center;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #4a6fa5;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(74, 111, 165, 0.3);
}

.back-button:hover {
    background-color: #3a5a80;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(74, 111, 165, 0.4);
}

.back-button i {
    font-size: 1rem;
}

/* Project Links */
.project-links {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.github-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #24292e;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(36, 41, 46, 0.3);
}

.github-button:hover {
    background-color: #1d2125;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(36, 41, 46, 0.4);
}

.github-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .project-details {
        padding: 1rem;
        padding-top: 150px;
    }
    
    .project-header h1 {
        font-size: 2rem;
    }
    
    .project-section h2 {
        font-size: 1.5rem;
    }
    
    .notions-container {
        gap: 0.8rem;
    }
    
    .notion-bubble {
        padding: 0.6rem 1.2rem;
    }
}