/* Main theme colors */
body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("/images/background.jpg");
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

header {
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to bottom, #2e2e2e, transparent);
}

header .banner-text { 
    font-size: 3em;
    font-family: 'Impact', sans-serif; 
    color: #e0e0e0;
    text-shadow: 0 0 10px hsl(34, 88%, 51%), 0 0 20px #57df21, 0 0 30px #db1366; 
    text-decoration: none;
    /* Wood texture effect using an image */
    background-image: url("/images/wood-texture.png");
    /* Replace with your wood texture image */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1, h2, h3, p, label { /* Apply to all text elements */
    font-family: 'Verdana', sans-serif;
    /* Highly readable font */
    color: #e0e0e0;
    /* Light text color for contrast */
}

a {
    color: #00FFFF;
    /* Cyan for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.description,
.contact,
.server-status {
    border: 5px solid #654321; /* Dark brown border to resemble wood */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.7); /* Dark transparent background */
    color: #e0e0e0;
    background-image: url("/images/leaves.png"); /* Replace with your leaves texture image */
    background-size: cover;
}

.contact-form {
    background-color: rgba(0, 0, 0, 0.7); /* Dark transparent background */
    border: none;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 80%;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(0, 123, 255, 0.3);
    border-radius: 50%;
    z-index: -1;
}

.contact-form label {
    font-family: 'Verdana', sans-serif;
    color: #e0e0e0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #654321;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: limegreen;
}

.contact-form button {
    background-color: limegreen;
    color: #1a1a1a;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: lightgreen;
}

.status-container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.status-item {
    border: 3px solid #654321;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7); /* Dark transparent background */
    color: #e0e0e0;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.online {
    background-color: limegreen;
}

.status-indicator.offline {
    background-color: red;
}

footer {
    background-color: #2e2e2e;
    padding: 10px;
    text-align: center;
    width: 100%;
    margin-top: 40px;
}

/* 90s Nickelodeon Neon Vibe Styles */
.contact-info p,
.about-services p {
    text-align: center;
    margin: 5px 0;
    color: #FFFF00;
}

.about-services p a {
    color: #00FFFF;
}

.server-status h2 {
    color: #e0e0e0;
}

.service-buttons {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.service-button {
    background-color: limegreen;
    color: #1a1a1a;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    /* Remove underline from links */
}

.service-button:hover {
    background-color: lightgreen;
}

.hidden {
    display: none;
}

/* Adjusted styles for the top boxes */
@media (max-width: 600px) {

    h1 {
      font-size: 2em;
    }

    .contact-form,
    .server-status {
      width: 90%;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%;
      /* Full width on smaller screens */
    }

    .description,
    .contact,
    .server-status {
      width: 95%;
      /* Adjust for smaller screens */
    }
}