/* default styles */
body, h1, h2, h3, p, ul, li, form, input, button, section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181a20;
    color: #f3f3f3;
    min-height: 100vh;
}

/* Header - START */
header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: #ffb300;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'CustomFont', 'Segoe UI', Arial, sans-serif;
    transition: color 0.2s;
}

header nav ul li a:hover {
    color: #ffd54f;
}

header {
    background: #20232a;
    padding: 2rem 0 1rem 0;
    text-align: center;
    border-bottom: 2px solid #2c313c;
    font-family: 'Stratum2WebBold', 'Segoe UI', Arial, sans-serif;
}


header h1 {
    font-size: 5vw; 
    margin-bottom: 1vw;
    animation: fadeDown 1s cubic-bezier(.77,0,.175,1) 0.1s both;
}

header p {
    font-size: 2vw;
    color: #b3b8c5;
    animation: fadeUp 1s cubic-bezier(.77,0,.175,1) 0.8s both;
}
/* Header - END */

/* Media & Fonts - START */
@font-face {
    font-family: 'CustomFont';
    src: url('../assets/Stratum2WebBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@media (max-width: 700px) {
    main {
        max-width: 98vw;
        padding: 0 0.5rem;
    }
    section {
        padding: 1rem 0.5rem;
    }
}
/* Media & Fonts - END */

/* Animations - START */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Animations - END */

main {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    background: #23272f;
    border-radius: 1vw;
    margin-bottom: 4vw;
    padding: 3vw 2vw;
    box-shadow: 0 0.5vw 2vw rgba(0,0,0,0.5);
}

section h2 {
    color: #ffb300;
    margin-bottom: 2vw;
    font-size: 2vw;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    margin-bottom: 2vw;
}

label {
    font-weight: 500;
    color: #f3f3f3;
}

input[type="text"] {
    padding: 1vw;
    border-radius: 0.5vw;
    border: 1px solid #444;
    background: #181a20;
    color: #f3f3f3;
    font-size: 1.5vw;
}

button {
    padding: 1vw 2vw;
    border: none;
    border-radius: 0.7vw;
    background: #ffb300;
    color: #23272f;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #ffd54f;
}

ul {
    list-style: disc inside;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

#result, #report-result {
    margin-top: 0.5rem;
    font-size: 1.05rem;
    color: #ffb300;
    min-height: 1.2em;
}

a {
    color: #ffb300;
    text-decoration: underline;
}

#logo {
    width: 15vw;
    height: auto;
    display: block;
    margin: 2vw auto 1vw auto;
}

footer {
    background: #20232a;
    color: #b3b8c5;
    text-align: center;
    padding: 2vw 0;
    font-size: 1.2vw;
    border-top: 0.3vw solid #2c313c;
    width: 100%;
    left: 0;
    position: relative;
}

.home-btn {
    display: inline-block;
    margin: 1rem auto 0 auto;
    padding: 0.6rem 1.4rem;
    background: #ffb300;
    color: #23272f;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, color 0.2s;
}

.home-btn:hover {
    background: #ffd54f;
    color: #181a20;
}

/* Maintenance banner styles - START */
.maintenance-banner {
    width: 100vw;
    background: #ffb300;
    color: #23272f;
    text-align: center;
    font-weight: bold;
    font-size: 1.3vw;
    padding: 1vw 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
body {
    padding-top: 3vw; /* Add space for the banner */
}
/* Maintenance banner styles - END */