/* Video Gallery Styles */
.video-portfolio {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-gallery-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-gallery-item:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-dark);
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.video-gallery-item:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 20px 15px 15px;
}

.video-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--color-gold);
}

.video-info p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: var(--color-gold);
}

.video-modal video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* No videos message */
.no-videos {
    text-align: center;
    color: #999;
    font-size: 18px;
    font-style: italic;
    padding: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .video-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .video-portfolio {
        padding: 60px 0;
    }

    .video-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .video-thumbnail {
        height: 200px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .video-info {
        padding: 15px 10px 10px;
    }

    .video-info h4 {
        font-size: 14px;
    }

    .video-info p {
        font-size: 12px;
    }

    .video-modal {
        padding: 15px;
    }

    .video-modal-content {
        max-width: 95%;
        max-height: 85%;
    }

    .video-modal-close {
        top: -30px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .video-portfolio {
        padding: 40px 0;
    }

    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .video-thumbnail {
        height: 180px;
    }

    .video-modal {
        padding: 10px;
    }

    .video-modal-close {
        top: -25px;
        right: -10px;
        font-size: 20px;
    }
}