/* QTABLE - Coming Soon */
:root {
    --teal-dark: #1C4B4C;
    --teal-darker: #163a3b;
    --turquoise: #2FDED3;
    --turquoise-light: #4ae8df;
    --white: #ffffff;
    --off-white: #f8f9fa;
}

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

html,
body {
    height: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

/* Hero achtergrond */
.cs-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cs-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(28, 75, 76, 0.75) 0%,
            rgba(22, 58, 59, 0.88) 50%,
            rgba(15, 42, 43, 0.95) 100%);
}

/* Centrale content */
.cs-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    padding: 0 1.5rem;
    animation: cs-fade-in 1s ease-out;
}

@keyframes cs-fade-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cs-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.cs-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cs-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Formulier */
.cs-form {
    margin-bottom: 1rem;
}

.cs-input-group {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cs-input-group input {
    flex: 1;
    min-width: 240px;
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.cs-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cs-input-group input:focus {
    border-color: var(--turquoise);
    background: rgba(255, 255, 255, 0.18);
}

.cs-input-group button {
    padding: 0.9rem 1.8rem;
    background: var(--turquoise);
    color: var(--teal-dark);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.cs-input-group button:hover {
    background: var(--turquoise-light);
    transform: scale(1.03);
}

.cs-input-group button:active {
    transform: scale(0.97);
}

/* Status berichten */
.cs-success {
    color: var(--turquoise);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(47, 222, 211, 0.3);
    border-radius: 10px;
    background: rgba(47, 222, 211, 0.1);
    display: inline-block;
}

.cs-error {
    color: #ff6b6b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    background: rgba(255, 107, 107, 0.1);
    display: inline-block;
}

.cs-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.75rem;
}

/* Taalswitcher rechtsboven */
.cs-lang {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    display: flex;
    gap: 0.35rem;
    background: rgba(28, 75, 76, 0.6);
    backdrop-filter: blur(6px);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
}

.cs-lang-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.cs-lang-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.cs-lang-link.is-active {
    color: var(--white);
    background: var(--turquoise);
}

/* Mobiel: taalswitcher onderaan */
@media (max-width: 480px) {
    .cs-lang {
        top: auto;
        bottom: 1.5rem;
        right: 50%;
        transform: translateX(50%);
    }

    .cs-input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .cs-input-group input {
        min-width: 0;
    }
}