/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'ShouldveKnown-Regular';
    src: url('/Fonts/ShouldveKnown-Regular.woff2') format('woff2'), url('/Fonts/ShouldveKnown-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    min-height: 100vh;
    overflow: auto;
}

.background-section {
    background-image: url('../Images/bg1.png'); /* Replace with your image path */
    background-size: cover; /* Ensure the image covers the section */
    background-position: center; /* Center the image */
    height: 100vh; /* Full viewport height for the section */
    width: 100%; /* Full width for the section */
    display: flex;
    flex-direction: column; /* Ensure content (navbar, text) stacks vertically */
    z-index: 1;
}

.background-section h1{
    font-size: 100px;
    margin-top: 400px;
}

/* Position the video mask directly below the navbar */
.video-mask {
    position: absolute;
    top: 0; /* Starts at the top of the screen */
    left: 0;
    width: 100%;
    height: 100%; /* Full height */
    pointer-events: none;
    z-index: 10; /* Ensure it's below the navbar */
}

/* Video mask itself */
#mask-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*clip-path: circle(100px at 50% 50%);*/
    pointer-events: none;
    transition: clip-path 0.1s ease;
}

/* Style for the navigation bar */
/*-------------------------------------------------------------------------------------------------------*/
.navbar {
    position: fixed; /* Makes the navbar stick to the top */
    top: 0; /* Ensures it sticks to the very top */
    left: 0; /* Aligns it with the left edge */
    width: 100%; /* Spans the full width of the screen */
    z-index: 1000; /* Keeps it above other elements */
    height: 80px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 75px; /* padding from left */
    font-family: ShouldveKnown-Regular;
    background-color: transparent; /* Optional semi-transparent background */
    transition: background-color 0.3s ease; /* Smooth transition */
}

    .navbar.scrolled {
        background-color: rgba(0,0,0,1);
    }

    .navbar .logo img {
        height: 60px;
        width: auto;
        margin-right: 25px; /* Space between logo and nav items */
    }

    .navbar .logo a {
        padding: 0px 0px;
    }

    /* Style for navigation links */
    .navbar a {
        /*text-align: center;*/
        color: #f0f0f0; /* Light Text color */
        padding: 25px 10px; /* second number control distance between links */
        text-decoration: none;
        font-size: 18px;
    }

        /* Change color on hover */
        .navbar a:hover {
            color: rebeccapurple;
        }
/*-------------------------------------------------------------------------------------------------------*/

footer {
    background-color: #000;
    height: 250px;
    width: 100%;
    padding: 20px 50px;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-top {
    display: flex; /* Aligns social media and copyright in a row */
    justify-content: space-between; /* Space them apart */
    align-items: center; /* Vertically aligns content */
}

.footer-content .copyright {
    text-align: right; /*Ensures privacy policy is centered */
    font-size: 18px;
}

.footer-bottom {
    display: flex; /* Aligns social media and copyright in a row */
    align-items: center; /* Vertically aligns content */
    justify-content: space-between; /* Space them apart */
}

    .footer-bottom .logo {
        display: flex;
        flex-direction: column; /*Stack text above icons */
        align-items: flex-end; /*Center the content horizontally*/
    }

    .footer-bottom img {
        height: 80px;
        width: auto;
        object-fit: contain;
        align-content: end;
    }

.footer-links {
    display: flex; /* Aligns links in a row */
    gap: 30px; /* Adds space between links */
}

    .footer-links a {
        color: white;
        text-decoration: none;
        font-size: 16px; /* Optional: Adjust font size */
    }

.social-media {
    display: flex;
    flex-direction: column; /*Stack text above icons */
    align-items: flex-start; /*Center the content horizontally*/
}

    .social-media p {
        margin-bottom: 10px;
        font-size: 18px;
    }

.social-icons {
    display: flex;
    gap: 20px; /*Space between icons*/
}

    .social-icons img {
        height: 30px;
        width: auto;
        object-fit: contain;
    }


@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        justify-content: center;
        align-items: center;
        padding: 0px 10px; /* reduce padding on smaller screens */
        width: 100%;
    }
}