/* General body styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: url('../static/background.png') center/cover no-repeat fixed;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styling */
header {
    width: 100%;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    top: 0;
    z-index: 1000;
}

header h2 {
    color: #c4a747;
    margin: 0;
    font-size: 2em;
}

/* Navigation menu styling */
nav {
    margin-top: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #c4a747;
    font-size: 1.2em;
    transition: color 0.3s ease;
    font-weight: 500;
}

nav ul li a:hover {
    color: #e6b800; /* Darker gold on hover */
}

/* Footer styling */
footer {
    width: 100%;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    bottom: 0;
}

footer p {
    color: #c4a747;
    margin: 0;
    font-size: 1em;
}

/* Main container with more blur and glassy effect */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    margin: auto;
    min-height: 60vh;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Logo container */
.logo-container {
    margin-bottom: 30px;
    padding: 10px;
    text-align: center;
}

.logo-container-split {
    display: flex;
}

.screenshot {
    margin: 2px;
}

/* Logo styling */
.logo {
    width: 600px;
    border-radius: 15px;
}

/* Golden Headline */
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #c4a747;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Golden intro text */
.intro-text {
    font-size: 1.2em;
    max-width: 600px;
    margin-bottom: 30px;
    color: #c4a747;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Form styling with glassy effect */
form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
}

/* Label styling with gold */
label {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 700;
    color: #c4a747;
}

nav ul li a.active {
    color: #FFD700; /* Gold color for active item */
    font-weight: bold;
    border-bottom: 2px solid #FFD700; /* Add a gold border at the bottom */
}

/* Optional: Make the hover effect for non-active menu items */
nav ul li a:hover {
    color: #FFD700; /* Gold hover effect */
}

/* Non-active menu items */
nav ul li a {
    color: #c4a747;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Input field styling */
input[type="text"],
input[type="password"] {
    width: 90%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #4a5568;
    border-radius: 5px;
    font-size: 1em;
    color: #edf2f7;
    background: #2d3748;
    transition: border-color 0.3s ease;
    margin: auto;
    display: block;
}

/* Input focus state */
input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #FFD700;
    outline: none;
}

/* Submit button */
input[type="submit"] {
    padding: 15px 20px;
    background-color: #c4a747;
    border: none;
    border-radius: 5px;
    color: #1a202c;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: auto;
    display: block;
    margin-top: 20px;
}

/* Hover effect for submit button */
input[type="submit"]:hover {
    background-color: #e6b800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .logo {
        width: 200px;
    }
    form {
        padding: 20px;
    }
    h1 {
        font-size: 2em;
    }
    .intro-text {
        font-size: 1em;
    }
    input[type="text"],
    input[type="password"] {
        width: 100%;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin-bottom: 10px;
    }
}
