body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a0d3b;
    color: white;
}

header {
    background-color: #000000;
    text-align: center;
}

.banner {
    width: 100%;
    height: auto;
}

nav {
    background-color: #1a0d3b;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #666;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .nav-menu a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        margin-bottom: 20px;
    }

    .nav-menu a {
        font-size: 14px;
    }
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

main {
    padding: 20px;
}

.responsive-image {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

footer {
    background-color: #000000;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
@font-face { 
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: 
      url(/fonts/Roboto-VariableFont_wdth\,wght.ttf) format("truetype");
  }
.long {
    margin-bottom: 30px;
}

.social-btn {
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    color: #fff; /* Set text color to white */
    text-decoration: none;
}

.social-btn:hover {
    transform: scale(1.1);
}

.reddit {
    background-color: #ff4500;
}

.discord {
    background-color: #7289da;
}

.teamspeak {
    background-color: #2580c3;
}

.twitch {
    background-color: #6441a5;
}
.youtube {
    background-color: #FF0000;
}
.insta {
    background-color: #f77737;
}
.threads {
    background-color:  	#000000;
}
.tiktok {
    background-color: #00f2ea ;
}

.social-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#teamspeak-form {
    width: 50%;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #3498db;
}

#teamspeak-form label {
    display: block;
    margin-bottom: 10px;
}

#teamspeak-form input[type="password"] {
    width: 95%;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #2e6da4;
}

#teamspeak-form button[type="submit"] {
    width: 100%;
    height: 40px;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

#teamspeak-form button[type="submit"]:hover {
    background-color: #3e8e41;
}

#teamspeak-link {
    margin-top: 20px;
    text-align: center;
}

#teamspeak-link a {
    text-decoration: none;
    color: #4CAF50;
}

#teamspeak-link a:hover {
    color: #3e8e41;
}
/* Styles for Map Art Configurator */
.form-step {
    margin-bottom: 20px;
}

.form-step label {
    display: block;
    margin-bottom: 10px;
}

.form-step select,
.form-step input[type="text"],
.form-step textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #2e6da4;
    color: white;
}

.form-step button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-step button:hover {
    background-color: #3e8e41;
}

.form-step img {
    width: 100px; /* Adjust size as needed */
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.form-step img.selected {
    border-color: #4CAF50; /* Highlight selected palette */
    border-radius: 10px;
}
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db; /* Blue color */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Center the loading circle */
#loading-circle,
#loading-circle-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.file-input-label {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #2e6da4;
    color: #fff;
    cursor: pointer;
    width: 100%;
}

.file-input-label:hover {
    background-color: #3a7ebc;
}

.file-input-label:focus {
    outline: none;
}
.contact-form{
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #2e6da4;
    color: #fff;
    cursor: pointer;
}
.contact-form-button{
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.underconstruction {
    margin: 0 auto;
    text-align: center;
    
}
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px; /* Distance from the right of the viewport */
    z-index: 1000;
    background-color: #4CAF50; /* Green color to match the theme */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.language-switcher:hover {
    background-color: #45a049; /* Darker green on hover */
}

