@charset "utf-8";
/* CSS Document */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%; /* Ensure the body spans the full viewport */

    font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, sans-serif;
    font-size: 15pt;
    color: rgba(81, 81, 81);
}

/*Fonts*/
h1 {
    color: rgba(81, 81, 81);
    font-size: 26pt;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 20px;
}

h2 {
    font-size: 18pt;
}

h3 {
    font-size: 20pt;
    text-align: center;
}

h4 {
    font-size: 48pt;
    padding-left: 100px;
    margin-top: 0px;
    vertical-align: top;
}

h5 {
    font-size: 16pt;
    color: #ac3ec7;
    margin-top: 16px;
    margin-bottom: 35px;
}

h6 {
    font-size: 16pt;
    color: #ac3ec7;
    text-align: center;
    margin-bottom: 10px;
}

p {
    line-height: 1.3;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 0px;
	margin-bottom: 25px; /* Adjust the spacing between paragraphs */
    vertical-align: top;
}

.container {
	min-height: calc(100vh - 60px); /* Subtract the header height */
	flex-direction: column; /* Allow vertical stacking */
	align-items: center; /* Centers horizontally */
    display: flex;
    justify-content: center; /* Center content horizontally */
    width: 100%;
}

.content {
    width: 100%;
    max-width: 1400px; /* Maximum width of content */
    padding: 10px;
}

.centered-table {
    width: 100%;
}

.table-page {
    width: 100%;
    border: 0;
    margin: 0 auto;
    padding: 20px;
}


/* Navbar Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: transparent; /* Default transparent background */
    transition: background-color 0.3s ease-in-out;
    height: 40px; /* Fixed height for the sticky menu */
    width: 100%; /* Ensure the header spans the full width */
}

.sticky {
    position: fixed; /* Ensure the header sticks at the top */
    top: 0; /* Stay at the top */
    width: 100%; /* Full width */
    background-color: rgba(46, 85, 178, 0.6); /* Semi-transparent background */
    z-index: 1000; /* Ensure it stays above other elements */
}



/* Style the navbar */
.style-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.style-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 0;
    margin: 0;
}

.style-nav ul li {
    text-align: center;
}

.style-nav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    padding: 10px 20px;
    display: inline-block;
}

.style-nav ul li a:hover {
    color: yellow;
}



/* Active menu item */
header.style-nav ul li a.active {
    color: white;
    font-weight: bold;
    border-bottom: 2px solid yellow; /* Optional underline for active item */
}



/* Base Footer Styles */
footer.footer {
    position: relative; /* Ensure footer scrolls with content */
    width: 100%; /* Full width of the page */
    text-align: center; /* Center the footer content */
    background-color: transparent; /* Transparent background */
    padding: 20px;
    color: white; /* Text color */
}

.footer-copyright {
    font-size: 12px; /* Set font size */
    color: black; /* Set font color */
    text-align: center; /* Center align text */
    margin-top: 10px; /* Add spacing above the copyright note */
    padding: 10px 20px; /* Add padding for better spacing */
    line-height: 1.4; /* Improve readability */
    clear: both; /* Ensure it clears any floated elements */
    display: block; /* Ensure it occupies its own line */
    width: 100%; /* Make it span the full footer width */
}


/* Specific adjustment for index.html */
/* Responsive Footer */
@media (max-width: 768px) {
    footer.footer {
        padding: 10px; /* Reduce padding for smaller screens */
    }
}

/* Footer for Small Screens */
footer.footer .footer-page {
    display: flex; /* Ensure large icons are displayed */
	
    justify-content: right;
	padding-right: 340px;
    gap: 20px; /* Spacing between icons */
}

.footer-page-small {
    display: none; /* Hide small icons by default */
	
	justify-content: right;
	padding-right: 340px;
    gap: 20px; /* Spacing between icons */
}

.footer-page img:hover, .footer-page-small img:hover {
    transform: scale(1.2); /* Slight zoom on hover */
}

.footer-page img, .footer-page-small img {
    width: 36px;
    height: 36px;
    transition: transform 0.2s ease; /* Adds a hover animation */
}

/* Responsive Footer */
.footer-page-small {
    display: none; /* Hidden by default */
}

@media (max-width: 768px) {
    footer.footer .footer-page {
        display: none; /* Hide large icons on small screens */
    }

    footer.footer .footer-page-small {
        display: flex; /* Show small icons on small screens */
        justify-content: space-evenly;
        align-items: center;
    }
}




#linkedin {
    width: 36px;
    height: 36px;
    margin-top: 20px;
    margin-right: 20px;
}

#reddit {
    width: 36px;
    height: 36px;
    margin-top: 20px;
    margin-right: 20px;
}

#facebook {
    width: 36px;
    height: 36px;
    margin-top: 20px;
    margin-right: 20px;
}

#twitter {
    width: 34px;
    height: 34px;

    margin-top: 20px;
    margin-right: 40px;
}

/* Responsive styles for tablets and smaller screens */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 28pt;
        margin-top: 25px;
    }

    h4 {
        font-size: 24px;
        color: #ac3ec7;
        padding-left: 20px;
        margin-top: 0px;
        vertical-align: top;
        text-align: left;
    }

    h5 {
        font-size: 24px;
        color: #ac3ec7;
        margin-top: 16px;
        margin-bottom: 35px;
    }

    #linkedin {
        width: 40px;
        height: 40px;
    }

    #reddit {
        width: 40px;
        height: 40px;
    }

    #facebook {
        width: 40px;
        height: 40px;
    }

    #twitter {
        width: 38px;
        height: 38px;
        margin-right: 40px;
    }

    .footer-page-media {
        width: 1000px;
        text-align: right;
        padding-right: 0px;
    }

    .media-align {
        text-align: right;
    }

    .style-nav {
        display: inline;
        vertical-align: top;
    }

    .style-nav ul {
        display: inline;
        list-style-type: none;
        margin-right: 0px;
        padding-right: 10px;
        float: right;
    }

    .style-nav ul li a {
        list-style-type: none;
        display: inline;
        line-height: 24px;
        margin-left: 23px;
        margin-bottom: 0px;
        font-size: 18px;
        font-weight: 500;
        text-align: right;
    }

    .style-nav li {
        margin-right: 0px; /* Add space on the right */
        padding-top: 30px;
        vertical-align: top;
        text-align: right;
    }
}

/* Styles for mobile devices */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 32pt;
    }

    h4 {
        font-size: 30px;
        color: #ac3ec7;
        padding-left: 20px;
        margin-top: 0px;
        vertical-align: bottom;
    }

    h5 {
        font-size: 28px;
        color: #ac3ec7;
        margin-top: 16px;
        margin-bottom: 35px;
    }

    p {
        vertical-align: top;
    }

    .footer-set {
        width: 708px;
        text-align: center; /* Horizontal alignment (center) */
        padding-top: 100px; /* Padding around the image */
        padding-bottom: 40px; /* Padding around the image */
    }

    .footer-page {
        display: none;
        visibility: hidden;
    }

    .footer-page-small {
        display: block;
        visibility: visible;
        width: 740px;
    }

    #linkedin-sm {
        width: 44px;
        height: 44px;
        margin-top: 20px;
        margin-right: 20px;
    }

    #reddit-sm {
        width: 44px;
        height: 44px;
        margin-top: 20px;
        margin-right: 20px;
    }

    #facebook-sm {
        width: 44px;
        height: 44px;
        margin-top: 20px;
        margin-right: 20px;
    }

    #twitter-sm {
        width: 44px;
        height: 44px;
        margin-top: 20px;
        margin-right: 0px;
    }

    nav {
        display: flex; /* Use flexbox for better alignment */
        align-items: center; /* Vertically center-align elements */
    }

    nav ul {
        display: inline-block; /* Display the list inline */
        list-style-type: none; /* Remove default list styles */
        padding: 0; /* Remove default list padding */
        margin-left: auto; /* Push the list to the right */
    }

    nav li {
        display: block; /* Display list items inline */
        margin-right: 50px; /* Add space between links */
    }

    nav ul li a {
        list-style-type: none;
        margin-left: 18px;
        font-family: Arial, sans-serif;
        font-size: 28px;
        font-weight: 500;
        text-decoration: none;
        color: #a576fc;
        text-transform: uppercase;
        vertical-align: bottom;
    }

    nav ul li a:hover {
        color: #ac3ec7; /* Change the text color on hover to your desired color */
    }
}
