/***************************** PROJECT SECTION *****************************/
.projects-detail {
    text-align: left;
    padding: 6rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;

    /* For Responsive */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.project-title {
    font-size: 4.5rem;
    font-weight: 600;
    margin-top: 5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: white;
}

.project-sub-header {
    text-align: center;
    color: #b3b3b3;
}

.project-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;    
}

/* Generic Image Styling */
.project-content img {
    width: 100%;
    height: 100%;
    margin: 2rem 0 0 0;
    border-radius: 0.5rem;
}

.project-content a {
    color: #b3b3b3;
    text-decoration: none;
    word-break: break-all;
}

.project-content .project-duration {
    margin-top: 3rem;
    line-height: 1.5rem;
}

.project-content .game-link-text {
    margin-top: 1.8rem;
    font-weight: 500;
}

.project-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-content h3 {
    font-size: 3rem;
    margin: 2rem 0 0.5rem 0;
}

.project-content p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #b3b3b3;
    font-weight: 500;
    line-height: 2rem;
}

.project-content ul {
    font-size: 1.1rem;
    color: #b3b3b3;
    font-weight: 500;
    line-height: 2rem;
    list-style-type: disc;
    margin-left: 1.5rem;
    padding-left: 0;
}

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


/* --------------------------------------------------------- */
/* NEW: Responsive Video Container for YouTube Embed         */
/* --------------------------------------------------------- */
/* This ensures the video maintains a 16:9 ratio and scales with the container */
.video-container {
    position: relative;
    width: 100%;
    /* 16:9 aspect ratio (9 / 16 * 100) */
    padding-bottom: 56.25%; 
    height: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* --------------------------------------------------------- */
/* Mobile Responsive                       */
/* --------------------------------------------------------- */
@media (max-width: 768px) {
    .projects-detail {
        max-width: 768px;
    }

    .project-content img {
        height: auto;
    }

    .project-title {
        margin-top: 0;
        font-size: 2.5rem;
    }

    .project-content .game-link-text a {
        display: block;
    }
    
    .project-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .project-content h3 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .project-content p, .project-content ul, .project-content ul li {
        font-size: 0.9rem;
    }
}