﻿/* Nevoweb SEO Audit Tool - site branding and layout */

:root {
    --nw-primary: #1e3a5f;
    --nw-primary-dark: #142943;
    --nw-accent: #2fb6a2;
    --nw-bg: #f6f8fa;
}

body {
    background-color: var(--nw-bg);
}

.nw-header {
    background-color: var(--nw-primary);
}

.nw-header .nw-brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
}

.nw-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nw-header .nw-logo {
    font-weight: 700;
    font-size: 1.35rem;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nw-header .nw-logo .nw-logo-accent {
    color: var(--nw-accent);
}

.nw-header .nw-tagline {
    color: #cfd8e3;
    font-size: 0.85rem;
}

.nw-header .nw-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1.5rem 1rem 1.5rem;
}

.nw-header .nw-nav a {
    color: #e7ecf2;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

.nw-header .nw-nav a:hover,
.nw-header .nw-nav a.is-active {
    color: #ffffff;
    border-bottom-color: var(--nw-accent);
}

.nw-lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-right: 1.5rem;
}

.nw-lang-switch a {
    color: #cfd8e3;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
}

.nw-lang-switch a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.nw-lang-switch a.is-active {
    color: #ffffff;
    background-color: var(--nw-accent);
    border-color: var(--nw-accent);
}

.nw-lang-switch .nw-lang-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.nw-main {
    padding: 2.5rem 0;
}

.nw-intro-box {
    background-color: #ffffff;
    border-left: 4px solid var(--nw-accent);
    border-radius: 6px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
}

.nw-intro-box h2 {
    margin-top: 0;
}

.nw-footer {
    background-color: var(--nw-primary-dark);
    color: #cfd8e3;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 3rem;
}

.nw-footer a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.nw-footer a:hover {
    text-decoration: underline;
}

/* Report menu cards */
.nw-report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem 0;
}

.nw-report-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.nw-report-card:hover {
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.1);
    transform: translateY(-1px);
}

.nw-report-card .nw-report-card-title {
    font-weight: 600;
    color: var(--nw-primary);
}

.nw-report-card .nw-report-card-link {
    align-self: flex-start;
    background-color: var(--nw-accent);
    color: #ffffff;
    border-radius: 4px;
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
}

.nw-report-card .nw-report-card-link:hover {
    background-color: #269284;
}

.nw-status-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}
