/* Windrose Web
Dark navy blue theme build
AI assistance: Large portions of this stylesheet was developed with the assistance of Claude.
I directed the design but Claude showed me how to do things I wanted to do and I just experimented 
until I was satisfied with the design. */

/* --- Theme variables: Tokenized some colors to reuse --- */
:root {
    --bg: #0a1628;
    --surface: #13233d;
    --text: #e2e8f0
}

body {
    background-color: var(--bg);
    color: var(--text);
}

.tag {
    text-align: center;
}

a {
    color: var(--accent);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.logo {
    max-width: 600px;
    width: 100%;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

ul li {
    float: left;
}

ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 10px;
    text-decoration: none;
}

ul li a:hover {
    background-color: #c4c4c641;
}

fieldset {
    display: inline-grid;
    grid-template-columns: repeat(4, auto);
    gap: 0.9rem 2.2rem;
    padding: 1.5rem 2rem;
    border: 1px solid var(--accent);
    border-radius: 8px;
    font-size: 1.15rem;
}
fieldset input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--accent);
}

fieldset label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.location-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.city-side,
.coords-side {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

input[type="text"] {
    padding: 0.6rem 0.8rem;
    font-size: 1.05rem;
    border: 1px solid #3a4a63;
    border-radius: 6px;
    background-color: var(--surface);
    color: var(--text);
}

@media (max-width: 600px) {
    .location-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.choose-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 450px;
    margin: 2rem auto;
}

.choose-option {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--surface);
    border: 1px sold #3a4a63;
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
}

.choose-option:hover {
    border-color: var(--accent);
}

.results-name {
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 2rem auto;
}

.metric-card {
    background-color: var(--surface);
    border: 1px solid #3a4a63;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
}

.metric-label {
    font-size: 0.85rem;
    color: #7a8ba3;
    margin: 0 0 0.4rem;
}

.metric-value {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 0;
}

.advice-bar {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    background-color: rgba(56, 189, 248, 0.12);
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 1.1rem;
}

.advice-note {
    font-size: 0.9rem;
    color: #7a8ba3;
    margin: 0.4rem 0 0;
}

.advice-bar strong {
    color: var(--accent)
}

.check-another {
    display: block;
    text-align: center;
    margin-top: 1rem;
}