/* Contact Section */
.contact {
    background-color: #0e0e0e;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 400px;
    /* Fixed height instead of padding-bottom */
    background-color: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 25px rgba(253, 184, 19, 0.4), 0 0 50px rgba(253, 184, 19, 0.2);
    transition: all 0.3s ease;
}

.video-frame:hover {
    box-shadow: 0 0 35px rgba(253, 184, 19, 0.6), 0 0 70px rgba(253, 184, 19, 0.3);
    transform: translateY(-5px);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .video-frame {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .video-frame {
        height: 400px;
    }
}