/* 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;
}

/* Make the main content expand to push footer down */
main, .background-section {
    flex: 1;
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center; /* Optional: vertically center content */
    background-color: #eae8e5;
    padding: 20px;
}


/*.background-section {
    min-height: 100vh;*/ /* Always at least one full screen */
    /*width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;*/ /* Optional: vertically center content */
    /*background-color: #eae8e5;
    padding: 20px;
}*/


.sectioning {
    width: 40%;
}

    .sectioning h1 {
        text-align: center;
        color: black;
        font-size: 40px;
        font-weight: bold;
        margin-top: 30px;
    }

    .sectioning h2 {
        text-align: center;
        margin-top: 20px;
        color: black;
        font-size: 25px;
        font: bold;
    }

    .sectioning h3 {
        text-align: center;
        margin-top: 5px;
        /*margin-left: 180px;*/
        color: black;
        font-size: 20px;
        font: bold;
    }

    .sectioning hr {
        height: 5px;
        background-color: black;
        border: none;
        margin: 20px 20px;
    }


/* 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: black; /* Optional semi-transparent background */
}

.navbar-spacer {
    height: 80px; /* Matches the navbar height */
    width: 100%;
}

.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;
    }

.navbar nav a.active {
    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%;
    }
}
