@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --red: #C8102E;
    --red-dark: #9e0c24;
    --red-light: #f5e6e9;
    --black: #1a1a1a;
    --grey-dark: #444;
    --grey-mid: #888;
    --grey-light: #f4f2ef;
    --white: #ffffff;
    --cream: #faf9f7;
    --border: #e5e2dc;
    --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-height: 70px;
    --max-width: 1140px;
    --radius: 4px;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }

img { max-width: 100%; height: auto; display: block; }

/* ── NAVIGATION ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg { width: 22px; height: 22px; fill: white; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.logo-text span { color: var(--red); }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-dark);
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: all 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
    background: var(--red-light);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}

/* ── PAGE HERO ── */
.page-hero {
    background: var(--black);
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2d0a12 50%, #1a1a1a 100%);
    color: white;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 300px;
    height: 300px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.08;
}

.page-hero::after {
    content: '';
    position: absolute;
    left: 10%;
    bottom: -80px;
    width: 200px;
    height: 200px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.05;
}

.page-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.page-hero h1 span { color: var(--red); }

.page-hero p {
    margin-top: 16px;
    font-size: 1.1rem;
    opacity: 0.75;
    max-width: 600px;
    font-weight: 300;
}

/* ── HOME HERO ── */
.home-hero {
    background: var(--black);
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2d0a12 60%, #1a1a1a 100%);
    color: white;
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
    opacity: 0.15;
}

.home-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.home-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.home-hero-content h1 em {
    font-style: normal;
    color: var(--red);
}

.home-hero-content p {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.8;
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); color: white; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(200,16,46,0.4); }

.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: white; color: white; background: rgba(255,255,255,0.1); }

.hero-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 24px 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 140px;
}

.hero-badge-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.hero-badge-label {
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

/* ── MAIN CONTENT ── */
.site-main {
    min-height: 60vh;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 24px;
}

.container-sm {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* ── SECTIONS ── */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 16px;
}

/* ── HOME CARDS ── */
.home-sections {
    background: var(--cream);
    padding: 60px 24px;
}

.home-sections-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.25s;
    text-decoration: none;
    color: var(--black);
    display: block;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
    color: var(--black);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--red-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg { width: 24px; height: 24px; fill: var(--red); }

.card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9rem;
    color: var(--grey-mid);
    line-height: 1.6;
}

.card-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
}

/* ── FACEBOOK SECTION ── */
.fb-section {
    background: var(--white);
    padding: 60px 24px;
    border-top: 1px solid var(--border);
}

.fb-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.fb-cta {
    background: #1877F2;
    color: white;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
}
.fb-cta:hover { opacity: 0.9; transform: translateY(-2px); color: white; }
.fb-cta svg { width: 48px; height: 48px; fill: white; margin: 0 auto 16px; }
.fb-cta h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.fb-cta p { font-size: 0.9rem; opacity: 0.85; }

/* ── MEMBERS ── */
.members-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.filter-btn {
    padding: 6px 14px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
    color: var(--grey-dark);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.member-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s;
}

.member-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow);
}

.member-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.member-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.member-info li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--grey-dark);
    line-height: 1.5;
}

.member-info svg { width: 14px; height: 14px; fill: var(--grey-mid); flex-shrink: 0; margin-top: 3px; }
.member-info a { color: var(--red); }

/* ── BOARD ── */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.board-card {
    text-align: center;
    background: var(--cream);
    border-radius: 8px;
    padding: 32px 24px;
}

.board-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.board-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.board-avatar-placeholder svg { width: 48px; height: 48px; fill: var(--red); }

.board-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.board-role { font-size: 0.875rem; color: var(--grey-mid); }

/* ── AKTIVITETER ── */
.activities-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.activity-month {
    border-left: 3px solid var(--red);
    padding-left: 24px;
    padding-bottom: 40px;
    position: relative;
}

.activity-month::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    position: absolute;
    left: -7.5px;
    top: 6px;
}

.activity-month h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
}

.activity-event {
    background: var(--cream);
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.activity-date {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-bottom: 6px;
}

.activity-event p { font-size: 0.95rem; line-height: 1.6; }

/* ── VEDTÆGTER ── */
.vedtaegter-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vedtaegt-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.vedtaegt-header {
    background: var(--cream);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.vedtaegt-par {
    background: var(--red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.vedtaegt-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    flex: 1;
}

.vedtaegt-body {
    padding: 20px 24px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--grey-dark);
    border-top: 1px solid var(--border);
}

/* ── GAVEKORT ── */
.gavekort-box {
    background: linear-gradient(135deg, var(--black) 0%, #2d0a12 100%);
    color: white;
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gavekort-box::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.15;
}

.gavekort-box h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.gavekort-box p {
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.purchase-box {
    background: white;
    color: var(--black);
    border-radius: 8px;
    padding: 24px 32px;
    display: inline-block;
    text-align: left;
    position: relative;
}

.purchase-box h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.purchase-box p { font-size: 0.9rem; color: var(--grey-dark); margin: 4px 0; }

/* ── KONTAKT ── */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--grey-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: var(--white);
    color: var(--black);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--red-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--red); }

/* ── PROSE (rich text) ── */
.prose h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--black);
}

.prose h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 24px 0 10px;
}

.prose p { margin-bottom: 16px; line-height: 1.75; }

.prose ul, .prose ol {
    margin: 16px 0 16px 24px;
    line-height: 1.75;
}

.prose li { margin-bottom: 6px; }

.prose strong { font-weight: 600; }

/* ── FOOTER ── */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.6);
    padding: 40px 24px;
    margin-top: 80px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.footer-brand span { color: var(--red); }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-copy { font-size: 0.8rem; opacity: 0.5; }

/* ── ADMIN ── */
.admin-body {
    background: #f0efed;
    min-height: 100vh;
}

.admin-header {
    background: var(--black);
    color: white;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}
.admin-logo span { color: var(--red); }

.admin-header-actions { display: flex; gap: 12px; align-items: center; }
.admin-header-actions a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.admin-header-actions a:hover { color: white; }

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 60px);
}

.admin-sidebar {
    background: var(--black);
    color: white;
    padding: 24px 0;
}

.admin-nav-section {
    padding: 0 16px;
    margin-bottom: 8px;
}

.admin-nav-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    padding: 12px 8px 8px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    transition: all 0.2s;
    text-decoration: none;
    margin-bottom: 2px;
}

.admin-nav-link svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.admin-nav-link:hover, .admin-nav-link.active { background: rgba(255,255,255,0.08); color: white; }
.admin-nav-link.active { background: var(--red); color: white; }

.admin-content {
    padding: 32px;
    overflow-y: auto;
}

.admin-page-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--black);
}

.admin-card {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
}

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

.admin-card-title {
    font-weight: 600;
    font-size: 0.95rem;
}

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

.admin-table th {
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey-mid);
    padding: 12px 16px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 14px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--cream); }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--red-light);
    color: var(--red);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.admin-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.admin-form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--grey-dark);
}

.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: white;
    transition: border-color 0.2s;
    color: var(--black);
}

.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
    outline: none;
    border-color: var(--red);
}

.admin-form-group textarea { min-height: 120px; resize: vertical; }

.admin-actions { display: flex; gap: 10px; }

.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-ghost { background: transparent; color: var(--grey-dark); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--grey-light); color: var(--black); transform: none; box-shadow: none; }
.btn-danger { background: #dc2626; color: white; }
.btn-danger:hover { background: #b91c1c; color: white; transform: none; }
.btn-green { background: #16a34a; color: white; }
.btn-green:hover { background: #15803d; color: white; }

.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2d0a12 100%);
    padding: 24px;
}

.login-box {
    background: white;
    border-radius: 12px;
    padding: 48px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}
.login-logo h2 span { color: var(--red); }
.login-logo p { font-size: 0.9rem; color: var(--grey-mid); margin-top: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--border);
        padding: 12px;
        box-shadow: var(--shadow-lg);
    }

    .home-hero-inner { grid-template-columns: 1fr; }
    .hero-badge { display: none; }
    .fb-inner { grid-template-columns: 1fr; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .container, .container-sm { padding: 40px 16px; }
    .home-sections { padding: 40px 16px; }
    .login-box { padding: 32px 24px; }
    .admin-content { padding: 20px 16px; }
}
