/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #101010;
    color: #f4f4f4;
    text-align: center;
    line-height: 1.6;
}

/* === Header === */
header {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e1e1e, #121212);
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #ffcc00;
    animation: fadeIn 2s ease;
}

header p {
    font-size: 1.2rem;
    animation: fadeIn 2s ease;
}

/* === Sections === */
section {
    padding: 50px 20px;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ff9800;
}

.about-section, .testimonials-section {
    background-color: #181818;
}

/* === Video Gallery === */
.video-gallery .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.video-item iframe {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.video-item iframe:hover {
    transform: scale(1.05);
}

.video-item h3 {
    font-size: 1.1rem;
    margin-top: 10px;
    color: #ffffff;
}

.video-item p {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 5px;
}

/* === Features Section === */
.features ul {
    list-style: none;
}

.features li {
    margin: 15px 0;
    font-size: 1.1rem;
}

/* === Testimonials === */
blockquote {
    font-style: italic;
    color: #ddd;
    margin: 20px auto;
    max-width: 600px;
}

/* === Footer === */
footer {
    padding: 40px 20px;
    background-color: #0a0a0a;
    color: #888;
}

footer a {
    color: #ff9800;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* === Responsive === */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .video-item iframe {
        height: 150px;
    }
}

/* === Animations === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body, header, section {
    animation: fadeIn 1.5s ease-in;
}
