/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; 
    padding:0;
    margin:0;
    text-align:left;
    color: white;
}

.video-editing-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #0F2F0F, #1B5E20); /* Dark green gradient */
}

.title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.title span {
    color: #66FF99; /* Light green accent */
}

.description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-item {
    width: 300px;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    animation: slideIn 1s forwards;
    background-color: #2E7D32; /* Slightly lighter green */
    padding: 10px;
    transition: transform 0.3s;
}

.video-item:hover {
    transform: scale(1);
}

.video-item video {
    width: 100%;
    border-radius: 5px;
}

.video-title {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
