/* Basic reset for styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Styling for the header bar */
.top-header {
    background-color: rgba(0, 0, 0, 0.6); /* Black with slight transparency */
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 100; /* Ensure the header is above the video */
    display: flex; /* Use flexbox to layout the children */
    justify-content: center; /* Center the flex items (the links) horizontally */
    align-items: center; /* Center the items vertically */
}

/* Styling for the links in the header */
.top-header a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-family: Arial, sans-serif;
}

/* Change link color on hover */
.top-header a:hover {
    color: #cfcfcf;
}

/* Video background styling */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Keep the video behind all other content */
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Ensure it covers the video but stays below other content */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* Semi-transparent overlay */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px, /* Adjust the size of the gap */
            rgba(0, 0, 0, 0.6) 5px, /* Black lines with some transparency */
            rgba(0, 0, 0, 0.6) 5px /* Line thickness */
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px, /* Adjust the size of the gap */
            rgba(0, 0, 0, 0.6) 5px, /* Black lines with some transparency */
            rgba(0, 0, 0, 0.6) 5px /* Line thickness */
        );
    pointer-events: none; /* Allows clicks to pass through to the video or content below */
}