/* css/style.css */

/* ---------- Global reset & basis ---------- */

:root {
    --bg-dark: #0b0c10;
    --bg-dark-alt: #1f2833;
    --card-bg: #f8fafc;
    --text-main: #111827;
    --text-muted: #6b7280;
    --accent: #76ABAE;
    --accent-soft: rgba(118, 171, 174, 0.12);
    --border-subtle: rgba(15, 23, 42, 0.08);
    --radius-lg: 18px;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
    color: #e5e7eb;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ---------- Fælles header / navigation ---------- */

header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0));
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #ffffff 0, #e5e7eb 26%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #020617;
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.brand-text-main {
    font-weight: 600;
    letter-spacing: 0.06em;
    font-size: 18px;
}

.brand-text-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #94a3b8;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Navigation-liste som du bruger i alle sider */

.nav-ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-ul li {
    padding-bottom: 5px;
    transition: ease 0.2s;
}

.nav-ul li:hover {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 3px;
}

.nav-ul li a{
    text-decoration: none;
}
/* Active link markeret via JS */

.nav-ul a.nav-active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 3px;
}

.nav-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
}

.nav-phone {
    font-size: 13px;
    color: #e5e7eb;
    opacity: 0.9;
}

/* ---------- Fælles CTA-knap ---------- */

.CTA-BTN {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 999px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--accent);
    background-color: transparent;
    color: var(--accent);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.CTA-BTN:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.32);
    background: var(--accent);
    color: black;
}

.CTA-BTN:active {
    transform: translateY(0px) scale(0.99);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

/* ---------- Fælles footer ---------- */

footer {
    border-top: 1px solid rgba(30, 64, 175, 0.35);
    padding: 18px 20px 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.82));
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 20px;
    align-items: flex-start;
}

.footer-left h3,
.footer-right h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #e5e7eb;
}

.footer-left ul,
.footer-right ul {
    list-style-type: none;
}

.footer-left li,
.footer-right li {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 6px;
}

.footer-left a {
    color: #e5e7eb;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
}

.footer-left a:hover {
    border-bottom-color: rgba(148, 163, 184, 0.8);
}

.footer-meta {
    margin-top: 8px;
    font-size: 11px;
    color: #6b7280;
}

.hero-trustpilot-link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    font-weight: 500;
}

.hero-trustpilot-link:hover {
    border-bottom-color: var(--accent);
}

/* ---------- Responsivitet (fælles) ---------- */

@media (max-width: 900px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}
