/* ============================================
   ORBIAL MORTIS - GLOBAL STYLES
   Sicherheit & Performance Optimiert
   ============================================ */

:root {
    --primary-color: #ff6f00;
    --primary-strong: #ff9f2d;
    --secondary-color: #060606;
    --background-color: #020202;
    --surface-color: #111111;
    --text-color: #f4f1ea;
    --text-muted: rgba(244, 241, 234, 0.72);
    --border-color: #262626;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background-color: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 111, 0, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Hamburger / mobile nav */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: radial-gradient(circle at top left, rgba(255, 111, 0, 0.28), transparent 24%),
                radial-gradient(circle at top right, rgba(255, 160, 50, 0.12), transparent 25%),
                linear-gradient(180deg, #070707 0%, #040404 100%);
    padding: 6rem 1rem;
    border-bottom: 1px solid rgba(255, 111, 0, 0.24);
    box-shadow: inset 0 0 80px rgba(255, 111, 0, 0.06);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.eyebrow {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 111, 0, 0.12);
    color: var(--primary-strong);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(3rem, 4vw, 4.5rem);
    color: var(--primary-color);
    line-height: 1.02;
    margin: 0;
    text-shadow: 0 0 24px rgba(255, 111, 0, 0.15);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 620px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-panel {
    padding: 2rem;
    background: rgba(255, 111, 0, 0.06);
    border: 1px solid rgba(255, 111, 0, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.panel-headline {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.panel-list li {
    color: var(--text-color);
    position: relative;
    padding-left: 1.8rem;
}

.panel-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.button.primary {
    background-color: var(--primary-color);
    color: #090909;
    box-shadow: 0 18px 42px rgba(255, 111, 0, 0.24);
}

.button.secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: rgba(255, 111, 0, 0.22);
}

.button:hover {
    transform: translateY(-2px);
}

.button.secondary:hover {
    border-color: var(--primary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 1.75rem;
    background: rgba(255, 111, 0, 0.05);
    border: 1px solid rgba(255, 111, 0, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.feature-card h2 {
    margin-top: 0;
    margin-bottom: 0.85rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
    min-height: calc(100vh - 300px);
}

.content {
    padding: 3rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content h2 {
    font-size: 2.2rem;
    color: var(--primary-strong);
    margin-bottom: 1.5rem;
}

.content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ============================================
   FORMS & INPUT SECURITY
   ============================================ */

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-radius: 4px;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

button {
    padding: 0.85rem 1.75rem;
    background-color: var(--primary-color);
    color: #090909;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 14px 32px rgba(255, 111, 0, 0.18);
}

button:hover {
    background-color: var(--primary-strong);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 111, 0, 0.24);
}

button:active {
    transform: scale(0.98);
}

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

footer {
    background-color: #040404;
    border-top: 1px solid rgba(255, 111, 0, 0.16);
    padding: 2.5rem 1rem;
    margin-top: 3rem;
}

footer .container {
    text-align: center;
}

footer p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.95rem;
        position: absolute;
        right: 1rem;
        top: 68px;
        background: rgba(6,6,6,0.98);
        border: 1px solid rgba(255,111,0,0.08);
        padding: 1rem;
        border-radius: 12px;
        display: none;
        flex-direction: column;
    }

    .nav-toggle { display: inline-flex; }

    .nav-menu[data-visible="true"] { display: flex; }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content h2 {
        font-size: 1.4rem;
    }

    .logo-container {
        gap: 0.5rem;
    }

    .brand {
        font-size: 1.2rem;
    }

    .logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .hero-panel { order: 2; }
    .hero-content { order: 1; }
    .hero { padding: 3.5rem 1rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .button { padding: 0.9rem 1.25rem; font-size: 0.95rem; }
    .nav-menu { right: 0; left: 0; margin: 0 1rem; }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    header,
    footer,
    .no-print {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }
}
.hero h1 {
    font-size: 3.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 24px rgba(255, 122, 0, 0.35);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(248, 242, 231, 0.88);
}

.content h2 {
    font-size: 2.2rem;
    color: #ff9d3b;
}

.content p {
    color: rgba(248, 242, 231, 0.86);
}

footer {
    background-color: #090909;
    border-top: 2px solid rgba(255, 122, 0, 0.18);
}

footer p {
    color: rgba(248, 242, 231, 0.76);
}

.nav-link {
    color: rgba(248, 242, 231, 0.92);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.logo-container {
    gap: 0.75rem;
}

.logo {
    height: 56px;
}
