/* --- UNIVERSAL STYLES --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* FIXED POSITIONING & Z-INDEX */
.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 34, 85, 0.98); /* Solid dark blue */
    padding: 10px 0;
    z-index: 100;
}

/* FLOAT - Navigation */
.nav-links {
    list-style-type: none;
    padding: 0;
    float: right; 
    margin-right: 50px;
    margin-top: 5px;
}

.nav-links li {
    display: inline;
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* FLOAT - Title */
.site-title {
    float: left;
    margin: 0;
    margin-left: 20px;
    padding-top: 5px;
    color: white;
}

/* Main Content Box */
.content-container {
    margin-top: 100px; 
    padding: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.92); 
    box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
    border-radius: 8px;
    margin-bottom: 50px; 
}

/* FLOAT - Profile Image */
.profile-float {
    float: left;
    margin-right: 25px;
    margin-bottom: 10px;
    border: 3px solid #002255;
    border-radius: 4px;
}

ul { margin-top: 5px; }
ul ul { list-style-type: circle; }

h1, h2 { color: #002255; }
h2 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-top: 30px;
}

/* --- HUB PAGE STYLES --- */
.hub-container {
    margin-top: 150px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
}

.hub-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.hub-btn {
    background-color: #002255;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s;
    border: 2px solid transparent;
}

.hub-btn:hover {
    background-color: white;
    color: #002255;
    border: 2px solid #002255;
}

/* --- UNIQUE PAGE BACKGROUNDS --- */
.body-hub {
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80');
    background-size: cover; background-attachment: fixed; background-position: center;
}

.body-resume {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80'); 
    background-size: cover; background-attachment: fixed; background-position: center;
}

.body-education {
    background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?q=80'); 
    background-size: cover; background-attachment: fixed; background-position: center;
}

.body-experience {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80'); 
    background-size: cover; background-attachment: fixed; background-position: center;
}

/* FIXED: The web-safe ocean background image */
.body-fishing {
    background-image: url('https://images.unsplash.com/photo-1610969695426-1b4e545465d6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); 
    background-size: cover; background-attachment: fixed; background-position: center;
}