/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    z-index: 1000;
}

.sticky-nav .logo {
    font-size: 24px;
    font-weight: bold;
}
.sticky-nav .logo:hover {
    font-size: 24px;
    font-weight: bold;
    opacity: 80%;
    cursor: pointer;
}

.sticky-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.sticky-nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.sticky-nav ul li a:hover {
    color: #c01805;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.hero-text {
    position: relative;
    z-index: 10;
    max-width: 700px;
    font-size: 24px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Client Carousel */
/* Fix for Smoothly Looping Client Carousel */
.client-carousel {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    background: #111;
}

.carousel-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.carousel img {
    width: 150px;
    height: 75px;
    object-fit: contain;
    margin: 0 20px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.carousel img:hover {
    filter: grayscale(0);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Storytelling Section */
/* Updated Storytelling Section */
.storytelling {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 50px;
    color: white;
    overflow: hidden;
}

.storytelling-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(70%);
}

.storytelling::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    z-index: -1;
}

.storytelling .text {
    position: relative;
    max-width: 500px;
    text-align: left;
    font-size: 15pt;
}


.storytelling .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #c01805;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.storytelling .btn:hover {
    background: rgb(173, 54, 41);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #c01805;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background: rgb(173, 54, 41);
}

/* Behind the Scenes */
#behind-the-scenes {
    text-align: center;
    padding: 50px;
    background-color: #111;
}

#youtube-livestreams {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
} 

.video-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    width: 280px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    border: 1px solid #ccc;
}

.video-item img {
    width: 100%;
    border-radius: 10px;
}

.video-item p {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.video-item span {
    display: block;
    font-size: 14px;
    color: #777;
}

.video-item:hover {
    transform: scale(1.05);
}
a {
    text-decoration: none;
}
h2 {
    font-size: 32pt;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
/* Featured Behind the Scenes Video */
.featured-video {
    text-align: center;
    padding: 50px;
    background-color: #111;
    color: white;
}

.featured-video h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.featured-video hr {
    width: 50%;
    margin: 10px auto;
    border: none;
    height: 2px;
    background: #c01805;
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
}


/* About Us Page Styles */
.about-header {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(34, 34, 34, 0.616);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.about-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 20px;
}

.about-content a {
    color: #c01805;
    font-weight: bold;
    text-decoration: none;
}

.about-content a:hover {
    text-decoration: underline;
}


.menu-toggle {
    display: none; /* Hide by default */
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 2000;
}

/* Only show the hamburger menu on mobile */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .sticky-nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px;
        border-radius: 5px;
        z-index: 1500;
    }

    .sticky-nav ul.active {
        display: flex;
    }

    .sticky-nav ul li {
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sticky-nav ul li:last-child {
        border-bottom: none;
    }
}
