/* Project Page Styles */
.project-page {
    padding-top: 100px;
    min-height: 100vh;
    background: #fff;
}

.project-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.project-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.project-description {
    margin-bottom: 40px;
}

.project-description p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.project-description a {
    color: #ff1500;
    text-decoration: none;
    border-bottom: 1px solid #ff1500;
}

.project-description a:hover {
    color: #cc1100;
}

.project-media {
    margin-bottom: 40px;
}

.project-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.project-media iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 5px;
}

.video-link {
    position: relative;
}

.video-link a {
    display: block;
    position: relative;
}

.video-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 21, 0, 0.9);
    border-radius: 50%;
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #fff;
}

.video-link a:hover .play-button {
    background: rgba(255, 21, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 0.3s ease;
}

.back-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 12px 30px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .project-content h1 {
        font-size: 32px;
    }
}
