/* Fehler bei der Verkleinerung. Der Inhalt wird unverkleinert zurückgegeben.
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(21,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(22,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(23,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(24,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(25,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(26,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(35,28): run-time error CSS1039: Token not allowed after unary operator: '-background'
(36,17): run-time error CSS1039: Token not allowed after unary operator: '-foreground'
(69,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(75,21): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(116,35): run-time error CSS1039: Token not allowed after unary operator: '-border'
(137,46): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(137,62): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(144,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(164,21): run-time error CSS1039: Token not allowed after unary operator: '-foreground'
(170,25): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(189,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(190,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-foreground'
(202,17): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(203,28): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(212,28): run-time error CSS1039: Token not allowed after unary operator: '-secondary'
(213,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-foreground'
(283,46): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(283,62): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(343,46): run-time error CSS1039: Token not allowed after unary operator: '-background'
(343,65): run-time error CSS1039: Token not allowed after unary operator: '-card'
(347,28): run-time error CSS1039: Token not allowed after unary operator: '-background'
(351,46): run-time error CSS1039: Token not allowed after unary operator: '-background'
(351,65): run-time error CSS1039: Token not allowed after unary operator: '-card'
(355,28): run-time error CSS1039: Token not allowed after unary operator: '-card'
(372,28): run-time error CSS1039: Token not allowed after unary operator: '-border'
(380,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(402,25): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(423,50): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(423,66): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(447,28): run-time error CSS1039: Token not allowed after unary operator: '-border'
(486,17): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(497,21): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(510,21): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(537,28): run-time error CSS1039: Token not allowed after unary operator: '-border'
(545,21): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(556,21): run-time error CSS1039: Token not allowed after unary operator: '-foreground'
(563,28): run-time error CSS1039: Token not allowed after unary operator: '-border'
(565,17): run-time error CSS1039: Token not allowed after unary operator: '-foreground'
(572,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(597,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(629,28): run-time error CSS1039: Token not allowed after unary operator: '-border'
(637,21): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(650,28): run-time error CSS1039: Token not allowed after unary operator: '-card'
(651,32): run-time error CSS1039: Token not allowed after unary operator: '-border'
(664,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(691,32): run-time error CSS1039: Token not allowed after unary operator: '-border'
 */
/* 
 * Herbrich Corporation - ASP.NET MVC2 Template
 * Design Philosophy: Organic-Electronic
 * Colors: Deep Violet (#2d1b4e), Neon Pink (#ff006e), Cyan (#00d9ff), Creme (#f5f1e8)
 */

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

:root {
    --primary: #ff006e;
    --primary-foreground: #f5f1e8;
    --secondary: #d946ef;
    --accent: #00d9ff;
    --background: #2d1b4e;
    --card: #3d2a5c;
    --foreground: #f5f1e8;
    --muted: #5a4a7a;
    --border: rgba(255, 0, 110, 0.2);
}

html {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        color: var(--accent);
    }

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(45, 27, 78, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.navbar-menu {
    display: none;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: block;
    }
}

.navbar-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .navbar-list a {
        color: var(--foreground);
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .navbar-list a:hover {
            color: var(--primary);
        }

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

    .btn-primary:hover {
        background-color: #ff1a7f;
        box-shadow: 0 0 30px rgba(255, 0, 110, 0.7);
        transform: translateY(-2px);
    }

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

    .btn-secondary:hover {
        background-color: rgba(0, 217, 255, 0.1);
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    }

.btn-tertiary {
    background-color: var(--secondary);
    color: var(--primary-foreground);
}

    .btn-tertiary:hover {
        background-color: #e033d9;
        box-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
    }

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

.hero-section {
    margin-top: 5rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(0, 217, 255, 0.1));
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 0, 110, 0.2), transparent);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite reverse;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   WAVE DIVIDER
   ============================================ */

.wave-divider {
    width: 100%;
    height: 100px;
    color: rgba(255, 0, 110, 0.2);
    display: block;
}

.wave-divider-reverse {
    transform: rotate(180deg);
    color: rgba(0, 217, 255, 0.2);
}

/* ============================================
   SECTIONS
   ============================================ */

.about-section,
.page-section,
.api-documentation,
.api-cta {
    padding: 5rem 0;
}

.about-section {
    background: linear-gradient(180deg, var(--background), var(--card));
}

.page-section {
    background-color: var(--background);
}

.api-documentation {
    background: linear-gradient(180deg, var(--background), var(--card));
}

.api-cta {
    background-color: var(--card);
    text-align: center;
}

/* ============================================
   CARDS GRID
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: rgba(61, 42, 92, 0.5);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .card:hover {
        border-color: var(--primary);
        box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
        transform: translateY(-5px);
    }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-list {
    list-style: none;
    margin-top: 1rem;
}

    .card-list li {
        padding: 0.5rem 0;
        opacity: 0.8;
    }

        .card-list li::before {
            content: '• ';
            color: var(--primary);
            font-weight: bold;
            margin-right: 0.5rem;
        }

/* ============================================
   API SECTIONS
   ============================================ */

.api-hero {
    margin-top: 5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(0, 217, 255, 0.1));
}

    .api-hero h1 {
        font-size: 3.5rem;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

.api-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.api-endpoints {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.endpoint-card {
    background-color: rgba(61, 42, 92, 0.5);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.endpoint-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.method {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
}

    .method.get {
        background-color: #3498db;
    }

    .method.post {
        background-color: #2ecc71;
    }

    .method.put {
        background-color: #f39c12;
    }

    .method.delete {
        background-color: #e74c3c;
    }

.endpoint-path {
    font-family: 'Courier New', monospace;
    color: var(--accent);
    font-weight: 600;
}

.endpoint-details {
    margin-top: 1rem;
}

    .endpoint-details h4 {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        color: var(--primary);
    }

    .endpoint-details pre {
        background-color: rgba(0, 0, 0, 0.3);
        padding: 1rem;
        border-radius: 0.5rem;
        overflow-x: auto;
        font-size: 0.875rem;
    }

    .endpoint-details code {
        font-family: 'Courier New', monospace;
        color: var(--accent);
    }

/* ============================================
   API TESTER
   ============================================ */

.api-tester-section {
    padding: 3rem 0;
    margin-top: 5rem;
}

.tester-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 1024px) {
    .tester-grid {
        grid-template-columns: 1fr;
    }
}

.tester-panel {
    background-color: rgba(61, 42, 92, 0.5);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

    .tester-panel h2 {
        margin-bottom: 1.5rem;
        color: var(--primary);
    }

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--foreground);
    }

.form-control {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 10px rgba(255, 0, 110, 0.3);
    }

.response-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
}

    .info-item label {
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 700;
    background-color: rgba(255, 0, 110, 0.2);
    color: var(--primary);
}

    .status-badge.success {
        background-color: rgba(46, 204, 113, 0.2);
        color: #2ecc71;
    }

    .status-badge.error {
        background-color: rgba(231, 76, 60, 0.2);
        color: #e74c3c;
    }

.response-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.tester-examples {
    margin-top: 3rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.example-card {
    background-color: rgba(61, 42, 92, 0.5);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

    .example-card h4 {
        margin-bottom: 0.5rem;
        color: var(--primary);
    }

    .example-card p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

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

.footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 0.5rem;
    }

.footer-column a {
    font-size: 0.875rem;
    opacity: 0.8;
}

    .footer-column a:hover {
        opacity: 1;
    }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.7;
}

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

@media (max-width: 768px) {
    .navbar-list {
        gap: 1rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .tester-grid {
        grid-template-columns: 1fr;
    }
}
.help-page {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

    .help-page h2 {
        margin-top: 3rem;
        margin-bottom: 1rem;
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        border-left: 4px solid #ff00e8;
        padding-left: 12px;
    }

    .help-page h3 {
        margin-top: 2rem;
        font-size: 1.1rem;
        color: #00d9ff;
    }
    .help-page table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 10px;
        margin: 1rem 0 2rem;
    }

    .help-page thead th {
        text-align: left;
        font-weight: 600;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
        padding: 10px 14px;
    }

    .help-page tbody tr {
        background: rgba(255,255,255,0.04);
        border-radius: 10px;
    }

    .help-page tbody td {
        padding: 12px 14px;
        vertical-align: top;
    }
    .help-page td:first-child {
        font-family: Consolas, monospace;
        font-weight: 600;
        color: #00e5ff;
    }
    .help-page pre {
        background: rgba(0,0,0,0.4);
        padding: 16px;
        border-radius: 12px;
        overflow-x: auto;
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    .help-page code {
        color: #ffb3f2;
    }
    .help-page .section {
        margin-bottom: 3rem;
    }
