/* ===============================
   KARNA SOS — LIQUID GLASS CALM UI
   =============================== */

/* ---------- Root ---------- */
:root {
    --text-main: #f1f4f6;
    --text-muted: #c9d1d9;
    --accent-warm: #cfaa6d;
}

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

/* ---------- Body ---------- */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    background: #0b1215;
}
/*-----------nav----------*/
nav{
    opacity: 0.9;
}
/* ---------- Background Video ---------- */
#video {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -3;
    filter: brightness(0.6) saturate(0.85);
}

/* ---------- Atmospheric Overlay ---------- */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(255, 255, 255, 0.08),
        rgba(15, 25, 29, 0.55)
    );
    backdrop-filter: blur(2px);
    z-index: -2;
}



/* ---------- Main Section ---------- */
.calm-section {
    min-height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

/* ---------- Glass Card ---------- */
.comfort-card {
    width: 100%;
    max-width: 680px;
    padding: 52px;
    border-radius: 24px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.22),
        rgba(255, 255, 255, 0.06)
    );

    backdrop-filter: blur(4px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);

    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

/* ---------- Header ---------- */
.header-message {
    text-align: center;
    margin-bottom: 42px;
}

.header-message h1 {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2.4rem;
    color: var(--accent-warm);
    margin-bottom: 12px;
}

.reassurance {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 85%;
    margin: 0 auto;
}

/* ---------- Form Layout ---------- */
.row {
    display: flex;
    gap: 22px;
    margin-bottom: 26px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.short {
    flex: 0.35;
}

/* ---------- Labels ---------- */
label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* ---------- Inputs ---------- */
input {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    padding: 16px;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.24);
    border-color: var(--accent-warm);
    box-shadow: 0 0 0 3px rgba(207, 170, 109, 0.25);
}

/* ---------- Button ---------- */
.gentle-btn {
    width: 100%;
    margin-top: 18px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid white;
    border-radius: 14px;

    cursor: pointer;
    transition: all 0.25s ease;
}
.gentle-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.gentle-btn:active {
    transform: translateY(0);
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
    #video {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    filter: brightness(0.6) saturate(0.85);
}

    .comfort-card {
        padding: 34px 22px;
    }

    .row {
        flex-direction: column;
        gap: 18px;
    }

    .short {
        flex: 1;
    }

    .header-message h1 {
        font-size: 2rem;
    }

    .reassurance {
        max-width: 100%;
    }
}