@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; }
}

/* =========================================================
   Kometbutikkerne premium homepage v4
   Scoped to premium-* classes so admin/subpages are not affected
   ========================================================= */
:root{
    --premium-burgundy:#350711;
    --premium-burgundy-2:#5d0b1c;
    --premium-red:#d7193f;
    --premium-gold:#caa263;
    --premium-cream:#fbf7f0;
    --premium-ink:#21191a;
}
.site-header{height:86px;background:#fff;border-bottom:1px solid rgba(33,25,26,.08);box-shadow:0 8px 30px rgba(35,22,15,.04)}
.nav-inner{max-width:1280px;height:86px;padding:0 34px}.site-logo img{height:64px!important}.main-nav{gap:16px}.main-nav a{font-size:.78rem;font-weight:800;color:#1d1718;text-transform:none;letter-spacing:-.01em;padding:9px 2px;background:transparent}.main-nav a:hover,.main-nav a.active{background:transparent;color:var(--premium-red)}
.premium-hero{position:relative;overflow:hidden;min-height:455px;color:#fff;background:radial-gradient(circle at 88% 20%,rgba(177,20,48,.65),transparent 34%),linear-gradient(100deg,#21060d 0%,#3b0713 42%,#7d0d22 100%)}
.premium-hero-bg{position:absolute;inset:0;background:radial-gradient(circle at 7% 92%,transparent 0 16%,rgba(255,255,255,.045) 16.2% 16.8%,transparent 17% 24%,rgba(255,255,255,.035) 24.2% 24.8%,transparent 25% 32%,rgba(255,255,255,.025) 32.2% 32.8%,transparent 33%),linear-gradient(90deg,rgba(28,5,11,.55) 0%,rgba(54,7,18,.82) 40%,rgba(54,7,18,.1) 74%)}
.premium-hero-inner{position:relative;z-index:1;max-width:1280px;margin:0 auto;min-height:455px;padding:56px 34px;display:grid;grid-template-columns:minmax(420px,.95fr) minmax(500px,1.18fr);gap:54px;align-items:center}.premium-kicker{text-transform:uppercase;letter-spacing:.24em;font-size:.78rem;font-weight:900;color:var(--premium-gold);margin-bottom:18px}.premium-hero-copy h1{font-family:Georgia,'Times New Roman',serif;font-weight:800;letter-spacing:-.065em;line-height:.94;font-size:clamp(4rem,7vw,6.75rem);max-width:680px;margin:0 0 22px}.premium-hero-copy h1 em{font-style:normal;color:var(--premium-red);display:block}.premium-hero-copy p{font-size:1.16rem;line-height:1.6;color:rgba(255,255,255,.92);max-width:590px;margin:0 0 26px}.premium-actions{display:flex;gap:16px;flex-wrap:wrap}.premium-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;border-radius:10px;padding:16px 24px;font-weight:900;font-size:.95rem;line-height:1;text-decoration:none;transition:.2s ease}.premium-btn-primary{background:var(--premium-red);color:#fff!important;box-shadow:0 18px 40px rgba(215,25,63,.28)}.premium-btn-primary:hover{transform:translateY(-2px);background:#ee1b46}.premium-btn-secondary{background:rgba(20,6,9,.28);border:1px solid rgba(202,162,99,.75);color:#fff!important}.premium-btn-secondary:hover{transform:translateY(-2px);background:rgba(255,255,255,.08)}
.premium-hero-visual{position:relative;min-height:330px;border-radius:23px;overflow:visible}.premium-hero-visual img{width:100%;height:330px;object-fit:cover;border-radius:23px;box-shadow:0 30px 90px rgba(0,0,0,.34);border:1px solid rgba(255,255,255,.18);filter:saturate(1.05) contrast(1.04)}.premium-hero-visual::before{content:"";position:absolute;inset:0;border-radius:23px;background:linear-gradient(90deg,rgba(52,7,17,.65),rgba(52,7,17,.04) 45%);z-index:1;pointer-events:none}.premium-stat-card{position:absolute;right:34px;top:50%;transform:translateY(-50%);z-index:2;width:162px;min-height:250px;border-radius:22px;background:linear-gradient(160deg,rgba(140,25,45,.92),rgba(57,6,18,.95));border:1px solid rgba(236,199,135,.6);box-shadow:0 28px 80px rgba(18,3,8,.38);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:22px;color:#fff}.premium-stat-icon{width:48px;height:48px;border-radius:999px;border:1px solid rgba(202,162,99,.8);display:grid;place-items:center;color:var(--premium-gold);font-size:1.55rem;margin-bottom:16px}.premium-stat-card strong{font-family:Georgia,'Times New Roman',serif;font-size:3.3rem;line-height:.95}.premium-stat-card span{text-transform:uppercase;letter-spacing:.18em;font-size:.78rem;font-weight:900;color:#ffe1a7;margin-top:8px}.premium-stat-card small{display:block;margin-top:22px;padding-top:17px;border-top:1px solid rgba(202,162,99,.55);font-size:.85rem;line-height:1.35;color:rgba(255,255,255,.85)}
.premium-intro-section{background:var(--premium-cream);padding:48px 34px 58px}.premium-section-head{text-align:center;max-width:720px;margin:0 auto 38px}.premium-kicker-light{color:var(--premium-gold);margin-bottom:10px}.premium-section-head h2,.premium-events-copy h2{font-family:Georgia,'Times New Roman',serif;font-size:clamp(2.3rem,3.8vw,3.6rem);letter-spacing:-.05em;line-height:1.03;color:var(--premium-ink);margin:0 0 10px}.premium-section-head p,.premium-events-copy p{color:#6b5f5e;font-size:1rem;line-height:1.6}.premium-feature-grid{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:22px}.premium-feature-card{display:block;background:#fff;border-radius:17px;padding:29px 28px 25px;border:1px solid rgba(45,32,20,.08);box-shadow:0 18px 55px rgba(53,33,18,.06);min-height:190px;color:var(--premium-ink);text-decoration:none;transition:.2s ease}.premium-feature-card:hover{transform:translateY(-5px);box-shadow:0 28px 75px rgba(53,33,18,.1)}.premium-feature-icon{width:48px;height:48px;border-radius:999px;background:#f8e9e9;color:var(--premium-red);display:grid;place-items:center;font-weight:900;font-size:1.05rem;margin-bottom:18px}.premium-feature-card h3{font-size:1.18rem;line-height:1.2;margin:0 0 13px;color:var(--premium-ink);font-weight:900}.premium-feature-card p{font-size:.94rem;line-height:1.55;color:#746969;margin:0 0 18px}.premium-feature-card b{color:var(--premium-red);font-size:.87rem;font-weight:900}
.premium-events-section{background:#fffaf3;border-top:1px solid rgba(33,25,26,.06);padding:26px 34px 52px}.premium-events-inner{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:285px 1fr;gap:34px;align-items:center}.premium-events-copy h2{font-size:2.35rem}.premium-events-copy p{margin-bottom:20px}.premium-event-row{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.premium-event-card{position:relative;overflow:hidden;border-radius:12px;background:#fff;border:1px solid rgba(45,32,20,.08);box-shadow:0 14px 34px rgba(53,33,18,.08)}.premium-event-card img{width:100%;height:105px;object-fit:cover}.premium-date{position:absolute;top:0;left:0;z-index:2;background:var(--premium-red);color:#fff;width:56px;height:64px;border-radius:0 0 10px 0;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center}.premium-date strong{font-size:1.45rem;line-height:1;font-weight:900}.premium-date span{font-size:.7rem;font-weight:900;letter-spacing:.08em}.premium-event-content{padding:14px}.premium-event-content h3{font-size:.97rem;margin:0 0 9px;color:var(--premium-ink);font-weight:900}.premium-event-content p{font-size:.78rem;color:#6d6261;margin:0}
@media(max-width:1100px){.premium-hero-inner{grid-template-columns:1fr;gap:30px}.premium-hero-copy h1{font-size:clamp(3.3rem,11vw,5.5rem)}.premium-feature-grid{grid-template-columns:repeat(2,1fr)}.premium-events-inner{grid-template-columns:1fr}.premium-event-row{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.site-header,.nav-inner{height:auto}.nav-inner{padding:14px 18px}.site-logo img{height:52px!important}.premium-hero-inner{padding:44px 22px}.premium-hero-copy h1{font-size:3.25rem}.premium-hero-visual img{height:250px}.premium-stat-card{right:18px;width:130px;min-height:190px}.premium-feature-grid,.premium-event-row{grid-template-columns:1fr}.premium-events-section,.premium-intro-section{padding-left:22px;padding-right:22px}}

/* Admin hard-reset v4: keep admin isolated from the premium frontpage */
body.admin-body{margin:0!important;background:#f4f2ef!important;color:#1a1a1a!important;font-family:Manrope,Arial,sans-serif!important;overflow-x:hidden!important}.admin-body svg{width:16px!important;height:16px!important;max-width:16px!important;max-height:16px!important;display:inline-block!important;fill:currentColor!important}.admin-body .admin-header{height:64px!important;background:#1a1a1a!important;color:#fff!important;display:flex!important;align-items:center!important;justify-content:space-between!important;padding:0 24px!important;position:sticky!important;top:0!important;z-index:2000!important}.admin-body .admin-logo{font-size:1rem!important;font-weight:800!important;color:#fff!important}.admin-body .admin-logo span{color:#c8102e!important}.admin-body .admin-header-actions{display:flex!important;gap:14px!important;align-items:center!important}.admin-body .admin-header-actions a{color:#fff!important;font-size:.85rem!important;text-decoration:none!important}.admin-body .admin-layout{display:grid!important;grid-template-columns:260px 1fr!important;min-height:calc(100vh - 64px)!important}.admin-body .admin-sidebar{background:#222!important;color:#cfcfcf!important;padding:22px 14px!important;min-height:calc(100vh - 64px)!important}.admin-body .admin-content{padding:30px!important;min-width:0!important;background:#f4f2ef!important}.admin-body .admin-nav-section{margin-bottom:24px!important}.admin-body .admin-nav-label{font-size:.72rem!important;text-transform:uppercase!important;letter-spacing:.1em!important;color:#777!important;margin:0 10px 8px!important;font-weight:800!important}.admin-body .admin-nav-link{display:flex!important;align-items:center!important;gap:10px!important;padding:10px 12px!important;border-radius:8px!important;color:#cfcfcf!important;text-decoration:none!important;font-size:.9rem!important;font-weight:650!important;margin-bottom:4px!important;line-height:1.3!important}.admin-body .admin-nav-link:hover,.admin-body .admin-nav-link.active{background:#c8102e!important;color:#fff!important}.admin-body .admin-page-title{font-size:2rem!important;font-weight:800!important;margin:0 0 24px!important;color:#1a1a1a!important}.admin-body .admin-card{background:#fff!important;border:1px solid #e5e2dc!important;border-radius:12px!important;box-shadow:0 2px 20px rgba(0,0,0,.06)!important;overflow:hidden!important}.admin-body .admin-card-header{padding:16px 20px!important;border-bottom:1px solid #e5e2dc!important;background:#fff!important}.admin-body .admin-card-title{font-weight:800!important;color:#1a1a1a!important}.admin-body input,.admin-body textarea,.admin-body select{font:inherit!important;max-width:100%!important}.admin-body table{width:100%!important;border-collapse:collapse!important}.admin-body img{max-width:100%!important;height:auto!important}
@media(max-width:900px){.admin-body .admin-layout{grid-template-columns:1fr!important}.admin-body .admin-sidebar{position:relative!important;min-height:auto!important}.admin-body .admin-header{height:auto!important;min-height:64px!important;align-items:flex-start!important;gap:10px!important;flex-direction:column!important;padding:14px 18px!important}.admin-body .admin-content{padding:18px!important}}

.premium-event-empty {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid rgba(40, 20, 20, .08);
  border-radius: 18px;
  padding: 28px;
  color: #6f625f;
  box-shadow: 0 18px 50px rgba(40, 20, 20, .06);
}

/* v7: clickable frontpage activity cards + popup modal */
.premium-event-card {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(45,32,20,.08);
    padding: 0;
    text-align: left;
    font: inherit;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.premium-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(53,33,18,.14);
    border-color: rgba(215,25,63,.22);
}
.premium-event-card:focus-visible {
    outline: 3px solid rgba(215,25,63,.35);
    outline-offset: 4px;
}
.premium-event-content b {
    display: inline-block;
    margin-top: 12px;
    color: var(--premium-red);
    font-size: .78rem;
    font-weight: 900;
}
body.premium-modal-open { overflow: hidden; }
.premium-event-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}
.premium-event-modal.is-open { display: flex; }
.premium-event-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 6, 10, .72);
    backdrop-filter: blur(7px);
}
.premium-event-modal-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: calc(100vh - 56px);
    overflow: auto;
    background: #fffaf3;
    border-radius: 24px;
    box-shadow: 0 40px 120px rgba(0,0,0,.36);
    border: 1px solid rgba(255,255,255,.35);
}
.premium-event-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #250711;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.14);
}
.premium-event-modal-close:hover { background: #fff; color: var(--premium-red); }
.premium-event-modal-image {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
    background: #2a1016;
}
.premium-event-modal-body {
    padding: 34px 38px 38px;
}
.premium-event-modal-body h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -.045em;
    line-height: 1.05;
    color: var(--premium-ink);
    margin: 0 0 18px;
}
.premium-event-modal-body p {
    white-space: pre-line;
    color: #5f5352;
    font-size: 1.06rem;
    line-height: 1.75;
    margin: 0 0 26px;
}
@media(max-width:720px){
    .premium-event-modal { padding: 14px; }
    .premium-event-modal-image { height: 210px; }
    .premium-event-modal-body { padding: 26px 22px 28px; }
}
