
/* ============================================================
   /assets/ui/ljh-start.css
   LJH START UI – WORLD: Public / Marketing
   Version 1.1 – CLEAN & SCOPED
   ------------------------------------------------------------
   WORLD RULE:
   - All CSS MÅSTE vara scopad med .world-start
   - Ingen reset
   - Ingen body/html-styrning
   - Ingen global bakgrund
============================================================ */

/*
WORLD RULE:
Denna fil får ALDRIG:
- göra reset
- styra body / html
- påverka andra worlds
*/



/* ============================================================
   WORLD START – TOKENS (lokala variationer)
============================================================ */

.world-start {
    --start-glass: rgba(255,255,255,0.06);
    --start-border: rgba(255,255,255,0.14);
    --start-shadow: 0 20px 60px rgba(0,0,0,0.45);

    --start-accent: #2aa4f4;
    --start-accent-soft: rgba(42,164,244,0.25);
}


/* ============================================================
   START – HEADER
============================================================ */

.world-start .ljh-start-header {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    background: linear-gradient(
        180deg,
        rgba(10,20,35,0.85),
        rgba(10,20,35,0.65)
    );

    border-bottom: 1px solid var(--start-border);
}

.world-start .ljh-start-header .ljh-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 28px;

    display: flex;
    align-items: center;
    gap: 28px;
}

/* Navigation */
.world-start .ljh-start-header .start-nav {
    display: flex;
    gap: 22px;
    margin-left: auto;
}

.world-start .ljh-start-header .start-nav a {
    color: #cfe6ff;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
}

.world-start .ljh-start-header .start-nav a:hover {
    color: #ffffff;
}

/* Login */
.world-start .ljh-start-header .header-login-btn {
    margin-left: 20px;
}


/* ============================================================
   START – BANNER SLOT
============================================================ */

.world-start .ljh-start-banner {
    max-width: 1320px;
    margin: 24px auto 0;
    padding: 0 28px;
}


/* ============================================================
   START – MAIN LAYOUT
============================================================ */

.world-start .ljh-start-main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 28px 80px;
}

.world-start .ljh-start-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    gap: 36px;
}

@media (max-width: 1024px) {
    .world-start .ljh-start-layout {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   START – LEFT COLUMN
============================================================ */

.world-start .ljh-start-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}


/* ============================================================
   START – SIDEBAR
============================================================ */

.world-start .ljh-start-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.world-start .start-side-card {
    background: var(--start-glass);
    border: 1px solid var(--start-border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--start-shadow);
}

.world-start .start-side-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}


/* ============================================================
   START – CONTENT BLOCKS
============================================================ */

.world-start .ljh-start-block {
    background: var(--start-glass);
    border-radius: 20px;
    padding: 34px;
    box-shadow: var(--start-shadow);
}


/* ============================================================
   START – Centered blocks (Scoped)
============================================================ */

.world-start .ljh-container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

/* ============================================================
   START – Hero Refinement
============================================================ */

.world-start .ljh-hero-centered {
    text-align: center;
}


/* ============================================================
   START – Hero layout override (single column)
============================================================ */

.world-start .ljh-hero {
    display: block;
}

.world-start .ljh-hero-inner {
    display: block;
}

.world-start .ljh-hero-title,
.world-start .ljh-hero-subtitle {
    display: block;
}

.world-start .ljh-hero-centered .ljh-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

/* H1 */
.world-start .ljh-hero-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

/* Subtitle */
.world-start .ljh-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ljh-text-soft);
    max-width: 640px;
    margin: 0 auto;
}


.world-start .ljh-panel {
    background: var(--start-glass);
    border: 1px solid var(--start-border);
    box-shadow: var(--start-shadow);
}


/* ============================================================
   START – Dialogue Panel Styling
============================================================ */

.world-start .ljh-panel {
    background: var(--start-glass);
    border: 1px solid var(--start-border);
    box-shadow: var(--start-shadow);
    border-radius: 18px;
    padding: 28px;
    color: var(--ljh-text);
}


.world-start .ljh-form label {
    color: var(--ljh-text-soft);
    font-weight: 500;
}

.world-start .ljh-form input,
.world-start .ljh-form textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--start-border);
    color: var(--ljh-text);
}

.world-start .ljh-form input::placeholder,
.world-start .ljh-form textarea::placeholder {
    color: var(--ljh-text-muted);
}

.world-start .ljh-btn-primary {
    box-shadow: 0 0 18px rgba(42,164,244,.35);
}


