/* ===== MOBILE FIRST CSS ===== */
:root {
    --primary-color: #1a2f3f;        /* Dyb marine - maskulin, professionel, selvsikker */
    --primary-dark: #0e1a24;          /* Mørkere nuance til gradients */
    --secondary-color: #f0f3f7;       /* Lys, ren baggrund */
    --accent-color: #c69c6d;          /* Varm messing/brændt guld - eksklusiv, markant */
    --text-dark: #1e2b37;              /* Dyb mørkegrå til tekst */
    --text-light: #5a6a7a;              /* Mellemgrå til secondary tekst */
    --success-color: #2d5a4b;          /* Mørk skovgrøn - succes med tyngde */
    
    /* Ekstra nuancer */
    --primary-rgb: 26, 47, 63;
    --accent-rgb: 198, 156, 109;
    --shadow-primary: 0 8px 25px rgba(26, 47, 63, 0.15);
    --shadow-accent: 0 8px 25px rgba(198, 156, 109, 0.25);
}

/* Base Mobile Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant', 'Georgia', 'Times New Roman', serif;  /* Værdig serif font */
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-size: 18px;                   /* Større, markant tekst */
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Profile Switcher - Mobile */
.profile-switcher-top {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-primary);
    border-bottom: 3px solid var(--accent-color);  /* Markant accent-streg */
}

.switcher-container h4 {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.4rem;
    font-family: 'Cormorant', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.profile-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.profile-btn {
    padding: 1rem 1.2rem;
    border: 2px solid var(--accent-color);      /* Guld kant i stedet for hvid */
    background: transparent;
    color: white;
    border-radius: 0;                            /* Skarpe kanter - markant */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    font-size: 1.1rem;
    font-family: 'Cormorant', serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.profile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.profile-btn:hover::before,
.profile-btn.active::before {
    left: 0;
}

.profile-btn:hover, .profile-btn.active {
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* Hero Section - Mobile */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Cormorant', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-proposition-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 0;                    /* Skarpe kanter */
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198, 156, 109, 0.3);  /* Diskret guld kant */
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.value-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);          /* Guld ikoner */
}

.value-card h4 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-family: 'Cormorant', serif;
    font-weight: 500;
    letter-spacing: 1px;
}

.value-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

/* CV Container - Mobile */
.cv-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sidebar - Mobile */
.sidebar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    order: 2;
}

.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.profile-section {
    text-align: center;
    margin-bottom: 2.5rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 0;                    /* Firkantet - markant */
    border: 3px solid var(--accent-color);
    margin: 0 auto 1.5rem;
    background: var(--primary-dark);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-accent);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-color);
}

.name {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant', serif;
    letter-spacing: 1px;
}

.title {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Focus Areas - Mobile */
.focus-areas {
    margin-bottom: 2.5rem;
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.focus-tag {
    background: transparent;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 0;                    /* Skarpe kanter */
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.focus-tag:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Info - Mobile */
.contact-info {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 0;                    /* Skarpe kanter */
    backdrop-filter: blur(10px);
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(198, 156, 109, 0.15);
    border-radius: 0;                    /* Skarpe kanter */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.contact-item:hover .contact-icon {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Sidebar Sections - Mobile */
.sidebar-section {
    margin-bottom: 2.5rem;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    font-family: 'Cormorant', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-title i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.competency-list, .language-list {
    list-style: none;
    padding-left: 0;
}

.competency-item, .language-item {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.competency-item::before, .language-item::before {
    content: '◆';                        /* Diamant i stedet for trekant */
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Result Stats - Mobile */
.result-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0;
}

.result-stat {
    text-align: center;
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
    font-family: 'Cormorant', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hobbies Section - Mobile */
.hobbies-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 0;                    /* Skarpe kanter */
    margin-top: 2rem;
    border-top: 3px solid var(--accent-color);
}

.hobby-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding: 0.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hobby-item:hover {
    background: rgba(198, 156, 109, 0.1);
    transform: translateX(5px);
}

.hobby-icon {
    width: 40px;
    height: 40px;
    background: rgba(198, 156, 109, 0.15);
    border-radius: 0;                    /* Skarpe kanter */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--accent-color);
    flex-shrink: 0;
    font-size: 1.1rem;
    border: 1px solid var(--accent-color);
}

.hobby-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.hobby-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Main Content - Mobile */
.main-content {
    padding: 2.5rem 1.5rem;
    background: white;
    order: 1;
}

.section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-family: 'Cormorant', serif;
    letter-spacing: 1px;
}

.section-title i {
    margin-right: 12px;
    font-size: 1.4rem;
    color: var(--accent-color);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Timeline - Mobile */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: 2px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 0;                    /* Firkantet i stedet for rund */
    background: var(--primary-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 0 2px rgba(198, 156, 109, 0.3);
    z-index: 1;
    transform: rotate(45deg);             /* Roteret firkant - markant */
}

.timeline-content {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 0;                    /* Skarpe kanter */
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(26, 47, 63, 0.1);
}

.timeline-period {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: inline-block;
    background: transparent;
    padding: 0.2rem 0;
    border-radius: 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--accent-color);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Cormorant', serif;
}

.timeline-company {
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.timeline-company i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Skill Tags - Mobile */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.skill-tag {
    background: transparent;
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 0;                    /* Skarpe kanter */
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Consulting Value - Mobile */
.consulting-value {
    background: rgba(45, 90, 75, 0.08);
    color: var(--success-color);
    padding: 1.5rem;
    border-radius: 0;                    /* Skarpe kanter */
    margin: 1.5rem 0;
    border-left: 4px solid var(--success-color);
    font-size: 1rem;
}

.consulting-value-title {
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--success-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consulting-value-title i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Problem Solution Grid - Mobile */
.problem-solution-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-solution-item {
    background: rgba(26, 47, 63, 0.03);
    padding: 1rem;
    border-radius: 0;                    /* Skarpe kanter */
    border-bottom: 1px solid var(--accent-color);
}

.problem, .solution {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Contact Form - Mobile */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    margin: 2rem -1.5rem -2.5rem -1.5rem;
    padding: 3rem 1.5rem;
    border-radius: 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.contact-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.8rem;
}

.contact-form {
    max-width: 100%;
    margin: 0 auto;
}

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

.form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.6rem;
    display: block;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-control, .form-select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0;                    /* Skarpe kanter */
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.consulting-type-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.consulting-type-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 0;                    /* Skarpe kanter */
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    border-bottom: 3px solid transparent;
}

.consulting-type-card:hover {
    border-bottom-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.consulting-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.consulting-type-name {
    color: white;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.consulting-type-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 0;                    /* Skarpe kanter */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem;
    border-radius: 0;                    /* Skarpe kanter */
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.success-message {
    background: rgba(255, 255, 255, 0.95);
    color: var(--success-color);
    padding: 1.2rem;
    border-radius: 0;                    /* Skarpe kanter */
    text-align: center;
    margin-top: 1.5rem;
    display: none;
    font-size: 1rem;
    border-left: 4px solid var(--success-color);
}

.form-note {
    background: rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-note i {
    color: var(--accent-color);
    margin-right: 0.8rem;
}

/* Print Button - Mobile */
.print-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 0;                    /* Firkantet */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
    border: 2px solid var(--accent-color);
}

.print-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== TABLET STYLES ===== */
@media (min-width: 768px) {
    .profile-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .profile-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 4rem 2rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .value-proposition-grid {
        flex-direction: row;
        gap: 2rem;
    }
    
    .value-card {
        flex: 1;
    }
    
    .sidebar {
        padding: 3rem 2rem;
    }
    
    .main-content {
        padding: 3rem 2rem;
    }
    
    .consulting-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-section {
        margin: 2rem -2rem -3rem -2rem;
        padding: 3rem 2rem;
    }
}

/* ===== DESKTOP STYLES ===== */
@media (min-width: 1024px) {
    .cv-container {
        flex-direction: row;
        max-width: 1300px;
        min-height: calc(100vh - 140px);
        margin: 0 auto;
    }
    
    .sidebar {
        width: 35%;
        order: 1;
        padding: 3.5rem 2.5rem;
    }
    
    .main-content {
        width: 65%;
        order: 2;
        padding: 3.5rem;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-section {
        border-radius: 0;
    }
    
    .profile-switcher-top {
        padding: 2rem;
    }
    
    .switcher-container h4 {
        font-size: 1.6rem;
    }
}

/* ===== LARGE DESKTOP STYLES ===== */
@media (min-width: 1200px) {
    .hero-section {
        padding: 5rem 2rem;
    }
    
    .sidebar {
        padding: 4rem 3rem;
    }
    
    .main-content {
        padding: 4rem;
    }
}

/* Print Styles */
@media print {
    .print-btn, .profile-switcher-top, .contact-section {
        display: none;
    }
    
    .cv-container {
        box-shadow: none;
        flex-direction: row;
    }
    
    .sidebar, .main-content {
        width: 50%;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.consulting-type-card.selected .checkmark {
    opacity: 1;
}

.consulting-type-card.multiple-selected {
    border-color: var(--accent-color);
    background: rgba(198, 156, 109, 0.15);
}

/* LinkedIn link styling */
.linkedin-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.linkedin-link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-item .fab.fa-linkedin {
    color: var(--accent-color);
}

.consulting-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-card {
    flex: 1;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;                    /* Skarpe kanter */
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: none;
    border-bottom: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.highlight-value {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant', serif;
}

.highlight-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ekstra markante elementer */
hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin: 2rem 0;
}

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding: 1rem 0 1rem 2rem;
    margin: 2rem 0;
    color: var(--primary-color);
}


/* ===== BAGGRUND MED VARIERENDE PRIKKER ===== */
body {
    margin: 0;
    min-height: 100vh;
    background-color: #f5f0e8; /* Lys varm beige/neutral bund - professionel */
    
    /* Prikker i forskellige størrelser og intensitet */
    background-image: 
        /* Store, meget lyse prikker (sjældne) */
        radial-gradient(circle at 15% 30%, rgba(198, 156, 109, 0.25) 0px, transparent 3px),
        radial-gradient(circle at 82% 15%, rgba(198, 156, 109, 0.3) 0px, transparent 4px),
        radial-gradient(circle at 45% 70%, rgba(198, 156, 109, 0.2) 0px, transparent 3px),
        radial-gradient(circle at 90% 85%, rgba(198, 156, 109, 0.35) 0px, transparent 5px),
        radial-gradient(circle at 5% 60%, rgba(198, 156, 109, 0.15) 0px, transparent 2px),
        
        /* Mellemstore prikker (almindelige) */
        radial-gradient(circle at 25% 40%, rgba(26, 47, 63, 0.1) 0px, transparent 2px),
        radial-gradient(circle at 60% 25%, rgba(26, 47, 63, 0.08) 0px, transparent 2px),
        radial-gradient(circle at 75% 55%, rgba(26, 47, 63, 0.12) 0px, transparent 3px),
        radial-gradient(circle at 35% 80%, rgba(26, 47, 63, 0.07) 0px, transparent 2px),
        radial-gradient(circle at 55% 45%, rgba(26, 47, 63, 0.09) 0px, transparent 2px),
        
        /* Små, diskrete prikker (mange) */
        radial-gradient(circle at 10% 10%, rgba(26, 47, 63, 0.05) 0px, transparent 1px),
        radial-gradient(circle at 20% 90%, rgba(26, 47, 63, 0.04) 0px, transparent 1px),
        radial-gradient(circle at 40% 20%, rgba(198, 156, 109, 0.08) 0px, transparent 1px),
        radial-gradient(circle at 70% 35%, rgba(26, 47, 63, 0.06) 0px, transparent 1px),
        radial-gradient(circle at 85% 65%, rgba(198, 156, 109, 0.07) 0px, transparent 1px),
        radial-gradient(circle at 95% 40%, rgba(26, 47, 63, 0.05) 0px, transparent 1px),
        radial-gradient(circle at 30% 95%, rgba(198, 156, 109, 0.06) 0px, transparent 1px),
        radial-gradient(circle at 65% 75%, rgba(26, 47, 63, 0.04) 0px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(198, 156, 109, 0.1) 0px, transparent 2px),
        radial-gradient(circle at 12% 45%, rgba(26, 47, 63, 0.03) 0px, transparent 1px);
    
    background-size: 100% 100%; /* Sikrer at prikkerne ikke gentages */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fast baggrund ved scroll */
}

/* ===== ORNAMENT BAND ===== */
.ornament-band {
    height: 120px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.ornament-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Bølgende mønster i CSS i stedet for SVG */
        repeating-linear-gradient(45deg, 
            rgba(255, 255, 255, 0.15) 0px, 
            rgba(255, 255, 255, 0.15) 15px,
            transparent 15px, 
            transparent 30px
        ),
        repeating-linear-gradient(-45deg, 
            rgba(198, 156, 109, 0.2) 0px, 
            rgba(198, 156, 109, 0.2) 10px,
            transparent 10px, 
            transparent 20px
        );
    pointer-events: none;
}

.ornament-band::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(198, 156, 109, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}