:root {
    --bg: #0e0f13;
    --card: #181a20;
    --accent: #c62828;
    --text: #e5e5e5;
    --muted: #9aa0a6;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden; /* verhindert horizontales Scrollen */
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.main-content {
    flex: 1;
}

/* Header */
.header {
    background: #111;
    border-bottom: 1px solid #222;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    height: 70px;
    padding: 0 20px;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
}

.main-nav {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center; /* vertikal zentriert */
}

.main-nav a {
    font-size: 0.95rem;
}

.main-nav a.btn {
    background: var(--accent);
    padding: 8px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: #0b0c10;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    padding: 20px 10px;
}

.footer h4 {
    margin-bottom: 10px;
}

.footer a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--muted);
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    color: var(--muted);
    border-top: 1px solid #222;
}

/* Hero */
.hero {
    padding: 20px 0 20px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero p {
    color: var(--muted);
}

/* Event Grid */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding: 40px 0;
    width: 100%;
}

.event-card {
    background: var(--card);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    max-width: 100%;
}

.event-card img {
    max-width: 100%;
    height: auto;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.event-card-body {
    padding: 16px;
}

.event-card h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.event-card .org {
    font-size: 0.9rem;
    color: var(--muted);
}

.event-card .meta {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--muted);
}

.event-card-footer {
    margin-top: auto;
    padding: 12px 16px;
    background: #14161b;
    font-size: 0.85rem;
}

.slots {
    color: #8bc34a;
}

/* Grid für Zentrierung */
.login-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px; /* Abstand rund um die Card */
}

/* Card */
.login-card {
    background: var(--card); /* nur die Card bekommt Hintergrund */
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 400px;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Form */
.login-card form {
    display: flex;
    flex-direction: column;
}

.login-card label {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.login-card input {
    padding: 10px 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #0e0f13; /* dunkler Input-Hintergrund */
    color: var(--text);
    font-size: 0.95rem;
}

/* Buttons */
.login-btn {
    padding: 10px 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s ease;
}

.login-btn-primary {
    background-color: var(--accent);
    color: #fff;
}

.login-btn-primary:hover {
    background-color: #b71c1c; /* Hover-Farbe */
}

/* Registrieren Link unter Formular */
.login-card p a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.login-card p a:hover {
    text-decoration: underline;
}

/* Profil Section */
.profile-section {
    padding: 60px 20px;
}

/* Header */
.profile-header h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.profile-header .profile-sub {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Card */
.profile-card {
    background: var(--card);
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.profile-card h3 {
    margin-bottom: 15px;
}

/* Listen */
.profile-list {
    list-style: none;
}

.profile-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.profile-list li span {
    color: var(--muted);
}

.profile-status-active {
    color: #8bc34a;
    font-weight: bold;
}

.profile-status-inactive {
    color: #c62828;
    font-weight: bold;
}

/* Buttons */
.profile-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 15px;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.profile-btn:hover {
    background: #b71c1c;
}

/* Register Section */
.register-section {
    padding: 60px 20px;
}

/* Grid für Zentrierung */
.register-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card */
.register-card {
    background: var(--card);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 400px;
}

.register-card h2 {
    text-align: center;
    margin-bottom: 15px;
}

/* Form */
.register-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.register-form-group label {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.register-form-group input {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #0e0f13;
    color: var(--text);
    font-size: 0.95rem;
}

/* Buttons */
.register-btn {
    padding: 10px 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s ease;
}

.register-btn-primary {
    background-color: var(--accent);
    color: #fff;
}

.register-btn-primary:hover {
    background-color: #b71c1c;
}

/* Fehleranzeige */
.register-error {
    color: red;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 10px;
}

/* Event Detail */
.event-detail {
    padding: 60px 20px;
}

/* Header */
.event-header {
    text-align: left;
    margin-bottom: 40px;
}

.event-header h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.event-org {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 5px;
}

.event-meta {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Layout */
.event-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.event-content {
    flex: 2;
    min-width: 280px;
}

/* Sections: normaler Hintergrund */
.event-section {
    background: var(--bg);
    padding: 15px 0;
    margin-bottom: 30px;
}

.event-section h2,
.event-section h3 {
    margin-bottom: 15px;
    font-weight: bold;
}

/* Event Inhalte */
.event-description,
.event-rules,
.event-timetable {
    padding: 0;
    line-height: 1.6;
}

/* Listenpunkte entfernen */
.event-rules ul,
.event-timetable ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* Sidebar */
.event-sidebar {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Booking Box: hervorgehoben */
.booking-box {
    background: var(--card);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    color: #fff; /* Textfarbe korrigiert */
}

.booking-box .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.booking-box .slots-detail {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #e5e5e5; /* besser lesbar */
}

.btn-book {
    display: inline-block;
    padding: 10px 15px;
    background: var(--accent);  /* roter Button */
    color: #ffffff !important;   /* zwingend weiße Schrift */
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.btn-book:hover {
    background: #b71c1c;
}

/* Sidebar Sections: normaler Hintergrund */
.event-sidebar .event-section {
    background: var(--bg);
    padding: 15px 0;
}

/* Links in Sidebar */
.event-sidebar a {
    color: var(--accent);
    text-decoration: none;
}

.event-sidebar a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 800px) {
    .event-layout {
        flex-direction: column;
    }
    .event-sidebar {
        width: 100%;
    }
}



/* Responsive */
@media (max-width: 480px) {
    .register-card {
        padding: 20px 15px;
    }

    .register-card h2 {
        font-size: 1.5rem;
    }

    .register-form-group input, .register-btn {
        font-size: 0.9rem;
    }
}


/* Responsive */
@media (max-width: 600px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* Responsive */
@media (max-width: 480px) {
    .login-card {
        padding: 20px 15px;
    }

    .login-card h2 {
        font-size: 1.5rem;
    }

    .login-card input, .login-btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 10px 15px; /* mehr Abstand rundherum */
    }

    .main-nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap; /* Links umbrechen, falls nötig */
        gap: 10px;       /* Abstand zwischen den Links */
        margin-top: 10px; /* Abstand zum Logo */
    }

    .main-nav a {
        margin: 0; /* Margin wird durch gap ersetzt */
        padding: 8px 10px; /* vertikales und horizontales Padding für bessere Klickbarkeit */
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .event-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* ==================== Buchungsseite ==================== */
.booking-main {
    padding: 40px 20px;
    width: 100%;
    max-width: 1200px; /* wie Startseite */
    margin: 0 auto;
    box-sizing: border-box;
}

/* Header */
.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.booking-header .booking-event-info {
    color: var(--muted);
    font-size: 1rem;
}

/* Layout */
.booking-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.booking-content {
    flex: 2 1 0%;
    min-width: 280px;
}

.booking-sidebar {
    flex: 1 1 0%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sections */
.booking-section {
    background: var(--bg);
    padding: 15px 15px;
    margin-bottom: 30px;
}

.booking-section h2 {
    margin-bottom: 15px;
    font-weight: bold;
}

.booking-section .info-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.booking-section .info-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Checkbox / Radio */
.booking-section input[type="checkbox"],
.booking-section input[type="radio"] {
    margin-right: 8px;
}

/* Warenkorb */
.booking-sidebar .booking-box {
    background: var(--card);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    color: #fff;
}

.booking-sidebar .booking-box h3 {
    margin-bottom: 15px;
}

.booking-sidebar .booking-box .info-list li {
    display: flex;
    justify-content: space-between;
}

.booking-sidebar .booking-box .price {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 15px 0;
}

/* Checkout Button */
.booking-sidebar .booking-box .btn-book {
    display: inline-block;
    padding: 12px 20px;
    background: var(--accent);
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.booking-sidebar .booking-box .btn-book:hover {
    background: #b71c1c;
}

/* Footer Hinweis */
.booking-sidebar .booking-box + .booking-section p.muted {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
}

/* Responsive */
@media (max-width: 1000px) {
    .booking-layout {
        flex-direction: column;
        gap: 20px;
    }
    .booking-sidebar,
    .booking-content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .booking-main {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ====================== Creator Dashboard ====================== */

.creator-main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.creator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.creator-header h1 {
    margin: 0 0 6px;
    font-size: 2rem;
}

.creator-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
}

.creator-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* Status Cards */
.creator-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.creator-status-card {
    background: var(--card);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.creator-status-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.creator-status-package {
    font-size: 1.3rem;
    font-weight: bold;
}

.creator-status-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.creator-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
}

/* Hints */
.creator-hints {
    margin-bottom: 30px;
}

.creator-hint {
    background: #14161b;
    border-left: 4px solid var(--accent);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Event Table */
.creator-section {
    margin-bottom: 40px;
}

.creator-table-wrapper {
    background: var(--card);
    border-radius: 8px;
    overflow-x: auto;
}

.creator-event-table {
    width: 100%;
    border-collapse: collapse;
}

.creator-event-table th,
.creator-event-table td {
    padding: 12px 14px;
    font-size: 0.9rem;
    text-align: left;
}

.creator-event-table th {
    background: #14161b;
    color: var(--muted);
    font-weight: normal;
}

.creator-event-table tr:not(:last-child) {
    border-bottom: 1px solid #222;
}

.creator-event-table td.creator-actions a {
    margin-right: 10px;
    font-size: 0.85rem;
    color: var(--accent);
}

/* Checkbox column */
.creator-checkbox-col {
    width: 36px;
    text-align: center;
}

/* Badges */
.creator-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.creator-badge-active {
    background: #2e7d32;
}

.creator-badge-draft {
    background: #616161;
}

.creator-badge-full {
    background: #c62828;
}

/* Bulk Actions */
.creator-bulk-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.creator-bulk-left button {
    margin-left: 8px;
}

/* Buttons */
.creator-btn-primary {
    display: inline-block;
    background: var(--accent);
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.creator-btn-primary:hover {
    filter: brightness(1.1);
}

.creator-btn-secondary {
    display: inline-block;
    background: #2a2d36;
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--text);
    font-size: 0.85rem;
    text-decoration: none;
}

.creator-btn-secondary:hover {
    background: #343846;
}

.creator-btn-danger {
    display: inline-block;
    background: #c62828;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
}

/* Select */
.creator-bulk-right select {
    background: var(--card);
    color: var(--text);
    border: 1px solid #222;
    padding: 6px 8px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
    .creator-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .creator-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .creator-status-grid {
        grid-template-columns: 1fr;
    }

    .creator-bulk-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .creator-bulk-right {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .creator-event-table th,
    .creator-event-table td {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
}

/* ====================== Creator Config Page ====================== */

.config-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.creator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.creator-header h1 {
    margin: 0 0 6px;
    font-size: 2rem;
}

.creator-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Tabs Navigation */
.creator-config-wrapper input[type="radio"] {
    display: none;
}

.creator-config-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #222;
    margin-bottom: 30px;
}

.creator-config-tabs label {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.creator-config-tabs label:hover {
    color: var(--text);
}

#creator-cfg-general:checked ~ .creator-config-tabs label[for="creator-cfg-general"],
#creator-cfg-gear:checked ~ .creator-config-tabs label[for="creator-cfg-gear"],
#creator-cfg-locations:checked ~ .creator-config-tabs label[for="creator-cfg-locations"],
#creator-cfg-staff:checked ~ .creator-config-tabs label[for="creator-cfg-staff"] {
    color: var(--text);
    border-color: var(--accent);
}

/* Content */
.creator-config-content {
    display: none;
}

#creator-cfg-general:checked ~ .content-general,
#creator-cfg-gear:checked ~ .content-gear,
#creator-cfg-locations:checked ~ .content-locations,
#creator-cfg-staff:checked ~ .content-staff {
    display: block;
}

/* Config Items */
.creator-config-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    font-size: 0.9rem;
}

.creator-config-list-item:last-child {
    border-bottom: none;
}

.creator-config-actions a {
    margin-left: 10px;
    font-size: 0.8rem;
    color: var(--accent);
}

/* Forms */
.creator-config-form textarea {
    background: var(--card);
    border: 1px solid #222;
    color: var(--text);
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    min-height: 120px;
    margin-bottom: 10px;
}

/* Status Card */
.creator-status-card {
    background: var(--card);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Buttons */
.creator-btn-primary {
    display: inline-block;
    background: var(--accent);
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.creator-btn-primary:hover {
    filter: brightness(1.1);
}

.creator-btn-secondary {
    display: inline-block;
    background: #2a2d36;
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--text);
    font-size: 0.85rem;
    text-decoration: none;
}

.creator-btn-secondary:hover {
    background: #343846;
}

/* Responsive */
@media (max-width: 900px) {
    .creator-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .creator-config-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .creator-config-tabs label {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    .creator-config-actions a {
        font-size: 0.75rem;
    }
}

/* ====================== Creator Landing Page ====================== */

.creator-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Intro */
.creator-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.creator-intro h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.creator-lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 15px;
}

.creator-intro p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* Packages Grid */
.creator-packages .package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* Package Card */
.creator-packages .package-card {
    background: var(--card);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.creator-packages .package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.creator-packages .package-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.creator-packages .package-card .price {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.creator-packages .package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 0.9rem;
}

.creator-packages .package-card li {
    margin-bottom: 8px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.creator-packages .package-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Buttons */
.creator-packages .package-card .btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: filter 0.2s;
}

.creator-packages .package-card .btn-primary:hover {
    filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .creator-intro h1 {
        font-size: 1.8rem;
    }

    .creator-intro .creator-lead {
        font-size: 1rem;
    }

    .creator-packages .package-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .creator-packages .package-card h3 {
        font-size: 1.1rem;
    }

    .creator-packages .package-card .price {
        font-size: 1.2rem;
    }

    .creator-packages .package-card li {
        font-size: 0.85rem;
    }
}

/* ===== Über uns Seite (kein extra Hintergrund) ===== */

.about-us {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-us h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.about-us p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

/* Hero */
.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
    .about-us {
        padding: 30px 15px;
        gap: 20px;
    }

    .about-us h2 {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
/* ===== Datenschutzerklärung & AGB ===== */

.privacy-us,
.agb-us {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.privacy-us h2,
.agb-us h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.privacy-us p,
.agb-us p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

/* Hero */
.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-us,
    .agb-us {
        padding: 30px 15px;
        gap: 20px;
    }

    .privacy-us h2,
    .agb-us h2 {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ==================== HERO SECTION ==================== */

.hero-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Hintergrund */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 15, 0.7),
        rgba(10, 10, 10, 0.85),
        rgba(10, 10, 10, 1)
    );
}

/* Layout */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px;
}

.hero-content {
    max-width: 720px;
}

/* Text */
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
}

/* Actions */
.hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Buttons */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

/* Primary */
.hero-btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.hero-btn-primary:hover {
    background: #b71c1c;
}

/* Secondary */
.hero-btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        padding: 90px 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
    }
}

/* ==================== CONTACT SECTION ==================== */

.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Info */
.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-intro {
    color: var(--muted);
    margin-bottom: 25px;
}

.contact-details p {
    color: var(--muted);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Form */
.contact-form {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Form Grid */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-full {
    grid-column: span 2;
}

/* Fields */
.contact-form-field label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    background: #0e0f13;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    font-size: 0.95rem;
    transition: border 0.2s, box-shadow 0.2s;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(198,40,40,0.35);
}

/* Submit */
.contact-submit-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.contact-submit-btn:hover {
    background: #b71c1c;
}

/* Message */
.contact-form-message {
    margin-top: 12px;
    font-size: 0.9rem;
}

/* Map */
.contact-map-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
}

#map {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-full {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }
}
.contact-map-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
}

#contactMap {
    width: 100%;
    height: 100%;
}