/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #080808; /* Hex 2 */
    background-color: #ffffff; /* Hex 11 */
    line-height: 1.6;
}

/* Header Styling */
.main-header {
    background-color: #41040c; /* Hex 26 */
    color: #ffffff; /* Hex 11 */
    padding: 1rem 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff; /* Hex 11 */
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff8c00; /* Hex 4 */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Hex 11 */
    text-align: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    background-color: rgba(65, 4, 12, 0.7); /* Hex 26 with transparency */
    padding: 2rem;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Footer */
.main-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #41040c; /* Hex 26 */
    color: #ffffff; /* Hex 11 */
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }
}


/*Video*/
    .video-header {
        text-align: left;
        margin-bottom: 20px;
        padding: 0 10%;
        padding-top: 50px;
    }

    .featured-video {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .featured-video iframe {
        width: 80%;
        aspect-ratio: 16 / 9;
        margin: 0 auto;
        display: block;
    }

    .video-carousel {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .carousel-container {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-behavior: smooth;
        width: 80%; /* Extend width to match main video */
        margin: 0 auto;
        padding: 10px;
        background-color: #f4f4f4;
        border-radius: 8px;
    }

    .carousel-video {
        max-height: 120px;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .carousel-video:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .carousel-arrow {
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: #41040c;
    }

    .carousel-arrow:hover {
        color: #8c2224;
    }

