/*
  Urban Youth Hub — Coming Soon
  A restrained, street-culture take: ink background, cream text,
  one signal accent. Vibe drawn from the "Open Doors" youth hub concept.
*/

:root {
    --ink:    #0c0c0e;   /* near-black background */
    --panel:  #141417;   /* subtle lift */
    --cream:  #f3efe6;   /* off-white text */
    --muted:  #8a877f;   /* secondary text */
    --accent: #ff4a1c;   /* spray-can orange */
    --line:   rgba(243, 239, 230, 0.12);

    --display: 'Anton', 'Arial Narrow', sans-serif;
    --body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html, body { height: 100%; }

body {
    background-color: var(--ink);
    color: var(--cream);
    font-family: var(--body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Fine film grain for texture */
.grain {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Warm glow bleeding up from behind the headline */
.glow {
    position: fixed;
    left: 50%;
    bottom: -10%;
    z-index: 0;
    width: min(80vw, 780px);
    height: min(80vw, 780px);
    transform: translateX(-50%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 74, 28, 0.28) 0%, rgba(255, 74, 28, 0) 62%);
    filter: blur(10px);
}

.wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(1.75rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
}

/* ---- Top bar ---- */
.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mark {
    font-family: var(--display);
    font-size: 1.35rem;
    letter-spacing: 0.14em;
    color: var(--cream);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

/* ---- Language switcher ---- */
.lang {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.lang-btn .flag {
    font-size: 0.95rem;
    line-height: 1;
}

.lang-btn:hover { color: var(--cream); }

.lang-btn.is-active {
    color: var(--ink);
    background: var(--cream);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(255, 74, 28, 0.6);
    animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 74, 28, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(255, 74, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 74, 28, 0); }
}

/* ---- Hero ---- */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0;
    max-width: 720px;
}

.eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.headline {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(4.5rem, 17vw, 11rem);
    line-height: 0.86;
    letter-spacing: 0.005em;
    margin-bottom: 1.75rem;
}

.lede {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: var(--muted);
    max-width: 46ch;
}

/* ---- Bottom ---- */
.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 2rem;
    flex-wrap: wrap;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line);
    font-size: 0.85rem;
}

.names {
    color: var(--muted);
    letter-spacing: 0.02em;
}

.contact {
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.contact:hover { color: var(--accent); }

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