/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #333;
    color: white;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #990000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 1px 10px 8px rgb(255, 255, 255); /* Adds a shadow */
}

header .logo-container {
    display: flex;
    align-items: center;
    text-shadow: 2px 2px 5px #000;
}

header .logo {
    height: 100px;
    width: auto;
    margin-right: 20px;
}

header .logo-text h1 {
    font-size: 2.5rem;
    color: #FFCC00;
    text-shadow: 2px 2px 5px #000;
}

header .logo-text p {
    color: #FFCC00;
    font-size: 1.2rem;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li a {
    color: #FFCC00;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
}

header nav ul li a:hover {
    border-bottom: 2px solid #FFCC00;
}

/* Active link highlighting */
header nav ul li a.active {
    color: #fff;
    background-color: #FFCC00;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(255, 204, 0, 0.6);
}

/* Hero Section */
.hero-section {
    background-color: #222;
    text-align: center;
    padding: 50px 20px;
}

.hero-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
}

.hero-section .banner-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 20px 0;
}

/* About Section */
.about-section {
    background-color: #444;
    padding: 40px 20px;
    text-align: center;
}
#propaganda-archive {
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

#propaganda-archive h2 {
    color: #d32f2f;
    font-size: 2em;
    text-align: center;
}

.archive-entry {
    background-color: #000000;
    border: 1px solid #434343;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
}

.archive-entry h3 {
    color: #ff0000;
    font-size: 1.5em;
}

.archive-entry p {
    font-size: 1em;
    color: #ffffff;
}

.propaganda-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 10px;
}

.archive-entry img {
    max-width: 100%;
    height: auto;
}
.eggman-empire-about {
    background-color: #333; /* Dark background for Eggman’s menacing empire */
    color: #f1f1f1; /* Light text for contrast */
    border: 2px solid #ffcc00; /* Gold border for a royal, empire feel */
    padding: 20px;
    width: 80%;
    margin: 20px auto;
    border-radius: 10px; /* Rounded corners for a modern yet imposing look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow to make it stand out */
}

.eggman-empire-about h3 {
    color: #ffcc00; /* Gold for the title */
    text-align: center;
    font-family: 'Arial Black', sans-serif; /* Strong, bold font for the header */
    font-size: 2em;
    margin-bottom: 15px;
}

.eggman-empire-about p {
    line-height: 1.6;
    font-size: 1.1em;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
}

.eggman-propaganda-image {
    display: block;
    margin: 20px auto;
    width: 50%; /* Adjust image size to fit better */
    height: auto;
    border-radius: 10px;
    border: 5px solid #ffcc00; /* Border around image to match the empire’s colors */
}

.eggman-empire-about strong {
    font-weight: bold;
}

.eggman-empire-about p:last-child {
    font-style: italic;
    text-align: center;
    color: #ffcc00; /* Make Eggman's quote stand out */
    font-size: 1.2em;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Archive Section */
.archive-section {
    background-color: #555;
    padding: 40px 20px;
    text-align: center;
}

.archive-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.archive-section .propaganda-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.archive-section .item {
    background-color: #666;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    text-align: center;
}

.archive-section .item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.archive-section .item p {
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background-color: #444;
    padding: 40px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
}

/* Footer Styles */
footer {
    background-color: #222;
    text-align: center;
    padding: 20px;
    color: #888;
}

footer p {
    font-size: 1rem;
}
#admin-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* Hidden form styling */
#add-credentials-form {
    display: none;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    border: 1px solid #ccc;
}

.input-group {
    margin-bottom: 10px;
}

.input-group label {
    display: block;
}

.input-group input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#add-credentials-form button {
    background-color: #ffcc00;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsiveness */
@media (max-width: 768px) {
    .archive-section .propaganda-items {
        flex-direction: column;
        align-items: center;
    }
}
/* Header Styles */
header {
    background-color: #990000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;  /* Makes the header stick at the top */
    top: 0;  /* Ensures it sticks to the top of the viewport */
    z-index: 1000;  /* Ensures the header stays on top of other content */
    width: 100%;  /* Makes sure the header takes the full width */
    box-shadow: 0 8px 5px rgba(153, 0, 0, 0.88); /* Optional: Adds a subtle shadow to the header */
}


