/* Groß FjordViking - Campingplatzverwaltung CSS */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
    --fjord-dark: #0d2137;
    --fjord-blue: #1a3a5c;
    --fjord-mid: #2a5a7a;
    --fjord-light: #3a7a9a;
    --fjord-sky: #5a9aba;
    --viking-gold: #c8963e;
    --viking-gold-light: #dab06e;
    --viking-red: #8b2500;
    --forest-green: #2d5a27;
    --forest-light: #4a8a3a;
    --sand: #f4e8d0;
    --sand-light: #faf5eb;
    --cream: #fffdf7;
    --wood: #8b6914;
    --wood-dark: #5c4a1e;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --border: #d4c9b8;
    --border-light: #e8e0d4;
    --success: #2d7a3a;
    --warning: #b8860b;
    --danger: #a52a2a;
    --info: #2a6a8a;
    --sidebar-width: 260px;
    --header-height: 60px;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(13,33,55,0.12);
    --shadow-lg: 0 4px 20px rgba(13,33,55,0.18);
}

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

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--sand-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6, .heading {
    font-family: 'Cinzel', serif;
    color: var(--fjord-dark);
    line-height: 1.3;
}

a { color: var(--fjord-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--viking-gold); }

/* ===== ADMIN LAYOUT ===== */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--fjord-dark) 0%, var(--fjord-blue) 100%);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
    transition: transform 0.3s;
}

.sidebar-brand {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.15);
}

.sidebar-brand .logo {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--viking-gold);
    display: block;
}

.sidebar-brand .subtitle {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.sidebar-nav { padding: 10px 0; }

.nav-section {
    padding: 12px 20px 6px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.nav-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.nav-item.active {
    background: rgba(200,150,62,0.15);
    color: var(--viking-gold);
    border-left-color: var(--viking-gold);
}

.nav-item .icon { font-size: 18px; width: 24px; text-align: center; }
.nav-item .badge-nav {
    margin-left: auto;
    background: var(--viking-red);
    color: #fff;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Header */
.top-header {
    height: var(--header-height);
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.top-header .page-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--fjord-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.header-user .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--fjord-mid);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

/* Page Content */
.page-content {
    padding: 24px;
    flex: 1;
}

/* ===== CARDS ===== */
.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream);
}

.card-header h3 {
    font-size: 16px;
    margin: 0;
}

.card-body { padding: 20px; }
.card-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border-light);
    background: var(--cream);
}

/* Stat Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.stat-icon.blue { background: rgba(42,90,122,0.12); color: var(--fjord-mid); }
.stat-icon.gold { background: rgba(200,150,62,0.12); color: var(--viking-gold); }
.stat-icon.green { background: rgba(45,90,39,0.12); color: var(--forest-green); }
.stat-icon.red { background: rgba(165,42,42,0.12); color: var(--danger); }

.stat-info h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-info .stat-value {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--fjord-dark);
    line-height: 1;
}

.stat-info .stat-sub {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ===== TABLES ===== */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead th {
    background: var(--fjord-dark);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    white-space: nowrap;
}

table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

table tbody tr:hover {
    background: rgba(244,232,208,0.3);
}

table tbody tr:nth-child(even) {
    background: rgba(250,245,235,0.5);
}

table tbody tr:nth-child(even):hover {
    background: rgba(244,232,208,0.3);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 4px;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--fjord-mid);
    box-shadow: 0 0 0 3px rgba(42,90,122,0.12);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--fjord-mid);
}

.form-inline {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.form-inline .form-group { margin-bottom: 0; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--fjord-mid); color: #fff; }
.btn-primary:hover { background: var(--fjord-dark); color: #fff; }

.btn-gold { background: var(--viking-gold); color: #fff; }
.btn-gold:hover { background: var(--wood); color: #fff; }

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #1f5a28; color: #fff; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #7a1a1a; color: #fff; }

.btn-warning { background: var(--warning); color: #fff; }

.btn-secondary { background: #6c757d; color: #fff; }
.btn-secondary:hover { background: #545b62; color: #fff; }

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-mid);
}
.btn-outline:hover { background: var(--cream); border-color: var(--fjord-mid); color: var(--fjord-mid); }

.btn-sm { padding: 4px 10px; font-size: 12px; }
.btn-lg { padding: 12px 24px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.btn-group { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-success { background: rgba(45,122,58,0.12); color: var(--success); }
.badge-danger { background: rgba(165,42,42,0.12); color: var(--danger); }
.badge-warning { background: rgba(184,134,11,0.12); color: var(--warning); }
.badge-info { background: rgba(42,106,138,0.12); color: var(--info); }
.badge-secondary { background: rgba(108,117,125,0.12); color: #6c757d; }
.badge-dark { background: rgba(26,26,26,0.12); color: var(--text-dark); }

/* ===== ALERTS ===== */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-success { background: rgba(45,122,58,0.1); border: 1px solid rgba(45,122,58,0.2); color: var(--success); }
.alert-danger { background: rgba(165,42,42,0.1); border: 1px solid rgba(165,42,42,0.2); color: var(--danger); }
.alert-warning { background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.2); color: var(--warning); }
.alert-info { background: rgba(42,106,138,0.1); border: 1px solid rgba(42,106,138,0.2); color: var(--info); }

.alert-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
    color: inherit;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,33,55,0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 { margin: 0; font-size: 18px; }
.modal-body { padding: 20px; }
.modal-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* ===== TABS ===== */
.tabs {
    display: flex;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 20px;
    overflow-x: auto;
}

.tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: all 0.2s;
}

.tab:hover { color: var(--fjord-mid); }
.tab.active {
    color: var(--viking-gold);
    border-bottom-color: var(--viking-gold);
    font-weight: 600;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pagination a, .pagination span {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid var(--border);
    color: var(--text-mid);
}

.pagination a:hover { background: var(--cream); border-color: var(--fjord-mid); }
.pagination .active {
    background: var(--fjord-mid);
    color: #fff;
    border-color: var(--fjord-mid);
}

/* ===== CALENDAR ===== */
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.calendar .day-header {
    background: var(--fjord-dark);
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

.calendar .day {
    background: #fff;
    padding: 6px 8px;
    min-height: 80px;
    font-size: 12px;
    position: relative;
}

.calendar .day.today {
    background: rgba(200,150,62,0.08);
    outline: 2px solid var(--viking-gold);
    outline-offset: -2px;
}

.calendar .day.other-month {
    background: var(--sand-light);
    color: var(--text-light);
}

.calendar .day-number {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.calendar .day-event {
    background: var(--fjord-mid);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.calendar .day-event.cleaning { background: var(--info); }
.calendar .day-event.maintenance { background: var(--warning); }
.calendar .day-event.vacation { background: var(--forest-green); }

/* ===== OCCUPANCY MAP ===== */
.pitch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.pitch-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.pitch-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pitch-card.frei { border-color: var(--success); background: rgba(45,122,58,0.05); }
.pitch-card.belegt { border-color: var(--danger); background: rgba(165,42,42,0.05); }
.pitch-card.reserviert { border-color: var(--warning); background: rgba(184,134,11,0.05); }
.pitch-card.gesperrt { border-color: var(--text-light); background: rgba(0,0,0,0.05); }

.pitch-card .pitch-number {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--fjord-dark);
}

.pitch-card .pitch-type {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== PROGRESS ===== */
.progress {
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s;
}

.progress-bar.green { background: var(--success); }
.progress-bar.gold { background: var(--viking-gold); }
.progress-bar.red { background: var(--danger); }
.progress-bar.blue { background: var(--fjord-mid); }

/* ===== RESPONSIVE ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--fjord-dark);
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .pitch-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .page-content {
        padding: 12px;
    }
}

/* ===== LANDING PAGE ===== */
.landing-body {
    background: var(--cream);
}

.landing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--fjord-dark) 0%, var(--fjord-blue) 40%, var(--fjord-mid) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cpath d='M0 400 Q300 350 600 380 Q900 410 1200 370 L1200 600 L0 600Z' fill='rgba(255,255,255,0.03)'/%3E%3Cpath d='M0 450 Q300 420 600 440 Q900 460 1200 430 L1200 600 L0 600Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
}

.landing-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    position: relative;
    z-index: 10;
}

.landing-nav .brand {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--viking-gold);
}

.landing-nav .brand span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 400;
    display: block;
}

.landing-nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.landing-nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-nav-links a:hover { color: var(--viking-gold); }

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 6vw, 72px);
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 .gold { color: var(--viking-gold); }

.hero-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.landing-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 12px;
}

.landing-section .section-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--fjord-mid), var(--fjord-light));
    color: #fff;
}

.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--text-light); font-size: 14px; }

/* Booking Form */
.booking-section {
    background: var(--fjord-dark);
    color: #fff;
    padding: 80px 40px;
}

.booking-section h2 { color: var(--viking-gold); }
.booking-section .section-sub { color: rgba(255,255,255,0.6); }

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 32px;
}

.booking-form-container label {
    color: rgba(255,255,255,0.8);
}

.booking-form-container .form-control {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.booking-form-container .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.booking-form-container .form-control:focus {
    border-color: var(--viking-gold);
    box-shadow: 0 0 0 3px rgba(200,150,62,0.2);
}

/* Landing Footer */
.landing-footer {
    background: var(--fjord-dark);
    color: rgba(255,255,255,0.6);
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.landing-footer .footer-brand {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--viking-gold);
    margin-bottom: 12px;
}

.landing-footer p { font-size: 13px; margin-bottom: 4px; }

/* ===== PRINT ===== */
@media print {
    .sidebar, .top-header, .btn, .no-print { display: none !important; }
    .main-content { margin-left: 0; }
    .page-content { padding: 0; }
    body { background: #fff; font-size: 12px; }
    .card { box-shadow: none; border: 1px solid #ccc; }
    table thead th { background: #eee; color: #000; }
}

/* ===== UTILITIES ===== */
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-gold { color: var(--viking-gold); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.p-2 { padding: 16px; }
.d-flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.hidden { display: none; }
