/* Global Styles */
body {
    font-family: 'Lato', sans-serif; /* Use Lato font */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

/* Header Styles */
.navbar-nav .nav-link {
    color: black !important;
    font-weight: bold;
    text-transform: uppercase;
    position: relative; /* Ensure proper positioning */
}

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    width: 0; /* Start with zero width */
    height: 8px;
    background-image: url('assets/checkered.png'); /* Replace 'checkered.png' with the path to your checkered image */
    background-size: 8px 8px; /* Adjust the size of the checkered pattern */
    background-repeat: repeat-x; /* Repeat horizontally */
    transition: width 0.3s ease; /* Add transition for smooth animation */
}

.navbar-nav .nav-link::before {
    top: -2px; /* Position the line above the link */
}

.navbar-nav .nav-link::after {
    bottom: -2px; /* Position the line below the link */
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:hover::after {
    width: 100%; /* Expand the width on hover */
}

.navbar-toggler-icon {
    background-color: black !important;
    color: white !important;
}

#header {
    position: sticky;
    background-color: #fff100; /* Set header background color */
}

#header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px; /* Adjust the height of the stripe */
    background-image: url('assets/checkered.png'); /* Path to your checkered image */
    background-size: 8px 8px; /* Set the size of each square to be equal */
    background-repeat: repeat-x; /* Repeat horizontally */
}

/* Main Content Styles */
#main-content {
    position: relative;
    padding-top: 50px; 
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7; /* Adjust the opacity as needed */
}

#bg-vid {
    width: 100%;
    height: auto;
}

.content-wrapper {
    position: relative;
    text-align: center;
}

.logo-wrapper {
    margin-top: 50px;
}

.logo {
    width: 50%; /* Adjust the logo size as needed */
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.company-name {
    font-size: 32px;
    font-weight: bold;
    margin-top: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow to text */
}

.company-location {
    font-size: 24px;
    margin-top: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow to text */
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 50px;
    background-color: black;
    color: white;
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
    .content-wrapper {
        margin-top: 50px; /* Add margin to create space for the header */
    }

    .logo-wrapper {
        margin-top: 20px; /* Adjust margin for the logo wrapper */
    }

    .logo {
        width: 70%; /* Adjust the logo size for mobile screens */
        max-width: 200px; /* Set maximum width */
        display: block;
        margin: 0 auto; /* Center the logo */
    }

    .company-name {
        font-size: 24px; /* Reduce font size for mobile screens */
        margin-top: 10px; /* Adjust margin for the company name */
    }

    .company-location {
        font-size: 18px; /* Reduce font size for mobile screens */
        margin-top: 5px; 
    }
}

