        /*<!--
                CIS 195: Web Authoring
                Lab 3 - Sitemap Page using HTML Elements
                Bobby Harper, 10/13/25
                harperbg@my.lanecc.edu
        -->*/
        
/* Base Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #f5f5f5;
    background: url('images/background.png') center/cover no-repeat fixed;
    text-align: center;
}

/* Header */
.top-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-height: 200px;
    margin: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Top Navigation */
.top-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.top-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.top-nav a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.top-nav a:hover {
    color: #a9dbd3;
}

/* Footer */
.footer-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-height: 200px;
    margin: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

.footer-img,
.footer-bot {
    width: auto;
    height: auto;
}

.footer-bot {
    position: fixed;
    bottom: 65px;
    right: 45px;
    z-index: 1001;
}

/* Footer Navigation */
.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    text-decoration: none;
    color: #879ace;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-nav a:hover {
    color: #a9dbd3;
}

/* Main Content */
main {
    position: absolute;
    top: 120px;
    bottom: 125px;
    overflow-y: auto;
    left: 50%;
    transform: translateX(-50%);
    min-width: 85%;
    max-width: 85%;
    margin: 20px;
    padding: 20px;
    background-color:rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    color: #a9dbd3;
    font-weight: bold;
    z-index: 500;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.main-content-bubble {
    background-color: rgba(0, 0, 0, 0.4);
    /* slightly darker for contrast */
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    color: #a9dbd3;
    font-weight: bold;
    text-align: left;
}

/* Scrollbar styling */
main::-webkit-scrollbar {
    width: 10px;
}

main::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

main::-webkit-scrollbar-thumb {
    background-color: #a9dbd3;
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

main::-webkit-scrollbar-thumb:hover {
    background-color: #88c9be;
}

/* Formatting */
hr {
    border: 2px solid rgba(0, 0, 0, 0.3);
    min-width: 100%;
}

h1,
h2 {
    color: #a9dbd3;
    margin: 0 0 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}