/* General Page Setup */
body {
    background-color: #222222; 
    
    /* Change 'retro-bg.gif' to your exact file name! */
    background-image: url('images/warmspace.jpg'); 
    
    background-repeat: repeat;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 10px 20px;
}

/* Header & Top Navigation */
header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.logo {
    color: #e0b0ff; /* Light purple logo text */
    font-family: "Comic Sans MS", cursive, sans-serif;
    text-shadow: 2px 2px 0px #4b0082; /* Dark purple shadow */
    margin: 0;
}

/* The 3D Pill Buttons */
.top-nav {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 15px;
    border: 3px outset #dddddd; /* 3D pop out look */
    font-size: 14px;
}

.btn:active {
    border-style: inset; /* Makes it look 'pushed in' when clicked */
}

/* Neon Button Colors */
.blue { background-color: #5b5bff; }
.green { background-color: #32cd32; }
.purple { background-color: #8a2be2; }
.yellow { background-color: #ffd700; color: black; }
.red { background-color: #ff3333; }
.pink { background-color: #ff69b4; color: black; }

/* Horizontal Separator Lines */
.purple-line {
    border: 0;
    height: 4px;
    background-color: #8a2be2; /* Bright Purple */
    margin: 15px 0;
}

/* Two-Column Layout (Since the right sidebar is gone) */
.main-container {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

/* Left Sidebar Navigation */
.left-sidebar {
    width: 20%;
}
.left-sidebar h3 {
    color: white;
    border-bottom: 2px solid gray;
    margin-top: 0;
}
.left-sidebar ul {
    list-style-type: none;
    padding: 0;
}
.left-sidebar a {
    color: #87cefa;
    text-decoration: underline;
}

/* Center Content */
.center-content {
    width: 55%; 
}

.profile-section {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.profile-pic {
    width: 120px;
    height: 120px;
    background-color: gray;
    border: 2px solid white;
}

/* --- THE PURPLE PROFILE TABLE --- */

/* Main border */
.profile-table {
    border-collapse: collapse;
    width: 100%;
    border: 2px solid #8a2be2; /* Bright purple border */
}

/* Inner cell borders */
.profile-table td, .profile-table th {
    border: 1px solid #d8bfd8; /* Light purple inner lines */
    padding: 4px 8px;
    font-size: 14px;
}

/* Left labels (Name, Location, Occupation) */
.table-label {
    background-color: #4b0082; /* Indigo / Dark purple background */
    color: white;
    text-align: left;
    width: 100px;
}

/* Right data cells */
.profile-table td {
    background-color: #2e004f; /* A deep, dark purple background */
    color: white;
}

/* --------------------------------- */

.under-construction {
    text-align: center;
    margin-top: 30px;
}

/* Right Sidebar Stuff Box */
.right-sidebar {
    width: 25%;
}

.stuff-box {
    background-color: #f0e68c; /* The retro khaki/yellow color */
    color: black;
    padding: 10px;
    border: 2px inset gray;
    font-family: "Times New Roman", Times, serif;
}

.stuff-box h4 {
    margin: 0 0 10px 0;
}

/* Footer Badges */
footer .badges {
    text-align: center;
    margin-top: 20px;
}