/* Projects Grid Container */
.projects-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Filters */
.projects-filter {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.projects-filter-item {
    cursor: pointer;
    padding: 8px 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 30px;
    color: #fff;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-filter-item.active,
.projects-filter-item:hover {
    background: cyan;
    color: #000;
    box-shadow: 0 0 15px cyan;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Neon Card */
.project-card {
    position: relative;
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    border-color: cyan;
}

/* Video Highlight Container */
.project-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.project-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}


.project-card:hover .project-media video,
.project-card:hover .project-video-container {
    opacity: 1;
}

/* YouTube Player Container */
.project-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    background: #000;
}

.youtube-iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    aspect-ratio: 16 / 9;
}

/* Card Content */
.project-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: cyan;
    font-weight: 700;
}

.project-details {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.project-detail-item {
    margin-bottom: 10px;
}

.project-detail-item strong {
    color: cyan;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 4px;
}


.project-detail-item ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.project-detail-item li {
    margin-bottom: 5px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}