/* Import a cool font from Google */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* --- NEW BLACK & WHITE THEME --- */

body {
    background-color: #000000; /* Black background */
    color: #FFFFFF; /* White text */
    font-family: 'Roboto', sans-serif;
    margin: 20px; /* Add space around the page */
    padding: 0;
    text-align: center;
    /* This is the main outline for the whole page */
    border: 3px solid #FFFFFF;
}

header {
    background-color: #000000;
    padding: 20px;
    /* The outline for the header */
    border-bottom: 2px solid #FFFFFF;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    color: #FFFFFF; /* White title */
    font-size: 3em;
    margin: 0 20px;
    text-shadow: none; /* Removed the old shadow */
}

.side-gif {
    width: 100px;
    height: auto;
}

nav {
    background-color: #000000;
    padding: 15px;
    display: flex;
    justify-content: center;
}

/* --- NEW OUTLINED NAVIGATION BUTTONS --- */
nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 15px;
    padding: 8px 15px; /* Add padding to make them look like buttons */
    border: 2px solid #FFFFFF; /* The button outline */
    border-radius: 5px; /* Slightly rounded corners */
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #FFFFFF; /* On hover, background becomes white */
    color: #000000; /* On hover, text becomes black */
}

main {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* --- NEW OUTLINED WIDGETS --- */
.widget {
    background-color: #000000;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    /* The outline for each content box */
    border: 2px solid #FFFFFF;
}

.widget h2 {
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 10px;
    margin-top: 0;
}

ul {
    list-style-type: square;
}

footer {
    padding: 20px;
    margin-top: 20px;
    font-size: 0.9em;
    color: #FFFFFF;
}

/* Styles for People Page */
.people-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.people-card {
    background-color: #000000;
    border: 2px solid #FFFFFF; /* Outline for the profile cards */
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 15px;
    width: 300px;
    text-decoration: none;
    color: #FFFFFF;
    transition: transform 0.3s, background-color 0.3s;
}

.people-card:hover {
    transform: scale(1.05);
    background-color: #222222; /* Slightly gray on hover */
}

.people-card img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    margin-right: 15px;
}

.people-card .people-info h3 {
    margin: 0 0 5px 0;
    color: #FFFFFF;
}

.people-card .people-info p {
    margin: 0;
}

/* --- Black & White Server Status --- */
#server-status p {
    font-size: 1.1em;
}

#server-status .online {
    color: #FFFFFF;
    font-weight: bold; /* Bold for "Online" instead of green */
}

#server-status .offline {
    color: #aaaaaa; /* Gray and italic for "Offline" instead of red */
    font-style: italic;
}

/* Styles for Info Sections (text left, pic right) */
.info-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #333333; /* Dark gray border */
}

.info-section:last-child {
    border-bottom: none;
}

.info-text {
    flex: 3;
}

.info-text h3 {
    color: #FFFFFF;
}

.info-pic {
    flex: 1;
    text-align: right;
}

.info-pic img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid #FFFFFF; /* Add a thin outline to pictures */
}

/* --- NEW STYLES FOR JOIN US LOGOS --- */
.join-us-container {
    text-align: center; /* Center the logos inside the widget */
}

.join-logo {
    width: 80px; /* Set a nice size for the logos */
    height: auto;
    margin: 0 20px; /* Add space between the logos */
    transition: opacity 0.3s; /* Add a smooth transition effect */
}

.join-logo:hover {
    opacity: 0.7; /* Make the logo slightly transparent on hover to show it's clickable */
}


