/*
Theme Name: Matchbird
Theme URI: https://matchbird.com
Author: Vieweger Software S.L.
Author URI: https://veriado.com
Description: AI-first business matching platform theme
Version: 1.0.0
Text Domain: matchbird
*/

/* ==========================================================
   RESET / BASICS
========================================================== */

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

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #020617;
    color: #e5e7eb;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================
   FARBSYSTEM (MATCHBIRD)
========================================================== */

:root {
    --mb-bg: #020617;
    --mb-bg-soft: #0b1220;

    --mb-orange: #ff7a1a;
    --mb-orange-soft: #ff9a3c;

    --mb-text: #e5e7eb;
    --mb-text-soft: #cbd5f5;
}

/* ==========================================================
   KI GRID / CANVAS (HINTERGRUND)
========================================================== */

#mb-ki-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* sanfte Tiefen-Vignette über dem Grid */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(
            circle at top,
            rgba(255,122,26,0.14),
            rgba(2,6,23,0.95) 70%
        );
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================
   HEADER (LOGO + MENÜ – FINAL)
========================================================== */

.mb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 100;
    background: linear-gradient(
        180deg,
        rgba(2,6,23,0.85),
        rgba(2,6,23,0.65)
    );
    backdrop-filter: blur(10px);
}

.mb-header-inner {
    height: 72px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.mb-logo img {
    max-height: 42px;
    width: auto;
    display: block;
}

.mb-logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

/* Navigation */
.mb-nav .mb-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mb-nav .mb-menu a {
    color: #f8fafc;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    opacity: 0.9;
    transition: opacity .2s ease, color .2s ease;
}

.mb-nav .mb-menu a:hover {
    opacity: 1;
    color: var(--mb-orange);
}

/* ==========================================================
   STARTSEITE – HERO
========================================================== */

#mb-frontpage {
    position: relative;
    min-height: 100vh;
    background: transparent;
}

.mb-hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(120px + 72px) 6% 80px; /* Offset für Header */
}

.mb-hero-inner {
    max-width: 920px;
}

.mb-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: #ffffff;
}

.mb-hero h1 span {
    color: var(--mb-orange);
}

.mb-hero-sub {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 42px;
    color: var(--mb-text-soft);
}

/* ==========================================================
   BUTTONS
========================================================== */

.mb-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.mb-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: all .25s ease;
}

.mb-btn-primary {
    background: linear-gradient(
        135deg,
        var(--mb-orange),
        var(--mb-orange-soft)
    );
    color: #020617;
}

.mb-btn-primary:hover {
    transform: translateY(-2px);
}

.mb-btn-secondary {
    border: 1px solid var(--mb-orange);
    color: var(--mb-orange);
}

.mb-btn-secondary:hover {
    background: rgba(255,122,26,0.12);
}

/* ==========================================================
   CONTENT SECTIONS (UNTER HERO)
========================================================== */

.mb-section {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 6%;
}

.mb-section h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.mb-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--mb-text-soft);
    max-width: 760px;
}

.mb-section ul {
    margin-top: 30px;
    padding-left: 0;
    list-style: none;
}

.mb-section li {
    margin-bottom: 14px;
    color: var(--mb-text);
    font-size: 1.05rem;
}

/* ==========================================================
   FOOTER
========================================================== */

.mb-footer {
    position: relative;
    z-index: 2;
    padding: 48px 24px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}
