/*
Tema: CLX Legal - Landningssida
Författare: E.S.
Beskrivning: Tillfällig landningssida inför lansering.
Version: 1.0
*/

/* ============= VARIABLER & RESET ============= */
:root {
    --clx-primary: #0D2A51;
    --clx-secondary: #C9A15C;
    --clx-bg: #F5F5F7;
    --clx-text: #111111;
}

*, *::before, *::after { box-sizing: border-box; }

body {
     margin: 0;
     padding: 0;
    background-color: var(--clx-bg);
    background-image: url('img/artboard-blue.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
     color: var(--clx-bg);
     font-family: "Inter", system-ui, -apple-system, sans-serif;
     line-height: 1.6;
     display: flex;
     flex-direction: column;
     min-height: 100vh;
}

/* ============= LAYOUT ============= */
.clx-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.clx-container {
    max-width: 720px;
    width: 100%;
    text-align: center;
}

/* ============= TYPOGRAFI ============= */
h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.1;
    font-weight: 400;
}

p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.clx-eyebrow {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clx-secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.clx-contact-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.clx-logo {
    margin-bottom: 40px;
    max-width: 220px;
    height: auto;
}

/* ============= KNAPPAR ============= */
.clx-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--clx-secondary);
    color: var(--clx-primary);
    text-decoration: none;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    transition: opacity 0.2s;
}
.clx-btn:hover {
    opacity: 0.9;
}
.clx-link {
    color: var(--clx-secondary);
    font-weight: 600;
    text-decoration: none;
}
.clx-link:hover { text-decoration: underline; }

/* ============= FOOTER ============= */
.clx-simple-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.lang-switcher-container {
    margin-top: 10px;
}

#lang-switcher {
    background: none;
    border: 0;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s;
}

#lang-switcher:hover {
    color: #fff;
}
