/*/assets/css/style.css*/

/* ═══════════════════════════════════
   ShiftMate – Global Styles
   ═══════════════════════════════════ */

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

:root {
    --bg-deep: #06060c;
    --bg-base: #0b0b14;
    --bg-surface: #12121f;
    --bg-elevated: #1a1a2e;
    --bg-card: rgba(18, 18, 35, 0.6);
    --border: rgba(100, 120, 255, 0.08);
    --border-glow: rgba(100, 180, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #bbbdcc;
    --text-muted: #9d9fbb;
    --neon-cyan: #00d4ff;
    --neon-blue: #4a6cf7;
    --neon-purple: #8b5cf6;
    --neon-pink: #e040fb;
    --neon-magenta: #ff006e;
    --gradient-main: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple), var(--neon-pink));
    --gradient-soft: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(139,92,246,0.12), rgba(224,64,251,0.12));
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Ambient background ───────────── */
.bg-ambient {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    overflow: hidden;
}
.bg-ambient::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    top: -200px; left: -200px;
    background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
    animation: drift1 25s ease-in-out infinite;
}
.bg-ambient::after {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    bottom: -100px; right: -200px;
    background: radial-gradient(circle, rgba(224,64,251,0.05) 0%, transparent 70%);
    animation: drift2 30s ease-in-out infinite;
}
@keyframes drift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(120px, 80px); }
}
@keyframes drift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-100px, -60px); }
}

/* ── Navigation ───────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    background: rgba(6, 6, 12, 0.75);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1100px; margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: var(--text-primary);
}
.nav-brand img {
    width: 38px; height: 38px; border-radius: 10px;
}
.nav-brand span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700; font-size: 1.3rem;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex; align-items: center; gap: 8px;
}
.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500; font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 999px;
    transition: all 0.3s;
    cursor: pointer;
    border: none; background: none;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: rgba(100, 160, 255, 0.08);
}
.nav-link.active {
    background: rgba(100, 160, 255, 0.12);
    box-shadow: 0 0 20px rgba(74, 108, 247, 0.1);
}

/* ── Language toggle ──────────────── */
.lang-toggle {
    display: flex; align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px;
    margin-left: 12px;
}
.lang-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 999px;
    border: none; cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lang-btn.active {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 2px 12px rgba(74, 108, 247, 0.3);
}

/* ── Mobile menu ──────────────────── */
.mobile-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text-secondary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── Main content ─────────────────── */
main {
    position: relative; z-index: 1;
    max-width: 1100px; margin: 0 auto;
    padding: 120px 32px 80px;
}

.fade-in {
    animation: fadeUp 0.5s ease;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Hero ──────────────────────────── */
.hero {
    text-align: center;
    padding: 60px 0 80px;
}
.hero-logo {
    width: 100px; height: 100px;
    border-radius: 24px;
    margin-bottom: 32px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(74, 108, 247, 0.2),
                0 0 80px rgba(139, 92, 246, 0.08);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 .gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
}

/* ── Section headings ─────────────── */
.section-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

/* ── Footer ───────────────────────── */
footer {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
    padding: 40px 32px;
    text-align: center;
}
footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}
footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover { color: var(--neon-cyan); }

/* ── Loading skeleton ─────────────── */
.skeleton {
    opacity: 0.4;
    text-align: center;
    padding: 60px 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
}

/* ── Responsive (global) ──────────── */
@media (max-width: 768px) {
    .nav-inner { padding: 0 20px; }
    main { padding: 100px 20px 60px; }
    .hero { padding: 30px 0 50px; }
    .hero-logo { width: 76px; height: 76px; border-radius: 18px; }

    .mobile-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: rgba(6, 6, 12, 0.95);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.35s, visibility 0.35s, opacity 0.35s;
        gap: 4px;
        z-index: 99;
    }
    .nav-links.open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-link { width: 100%; text-align: center; padding: 12px; }
    .lang-toggle { margin: 8px auto 0; }
}