:root {
    --branding-1: #00626F;
    --branding-2: #F4F1E8;
    --branding-3: #AFC1C5;
    --branding-4: #DAB968;
}

a {
    text-decoration: none !important;
    color: var(--branding-1) !important;
}

a:hover {
    text-decoration: underline !important;
    text-underline-offset: 5px !important;
    text-decoration-thickness: 3px !important;
    color: var(--branding-1);
}

a.active {
    text-decoration: underline !important;
    text-underline-offset: 10px !important;
    color: black;
    text-decoration-color: black;
    text-decoration-thickness: 3px !important;
}

a.btn {
    all: unset;
    text-decoration: none !important;
    background-color: var(--branding-1) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 5px;
    cursor: pointer;
}

a.btn {
    text-decoration: none !important;
}

/* blockquote */

.custom-blockquote {
    border-left: 0.25rem solid var(--branding-1);
    padding-left: 1rem;
    margin-left: 0;
}

/* QA */

.qa-section {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
    /* border-radius: 12px; */
    /* max-width: 800px; */
    margin: 2rem auto;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.qa-header {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.qa-item {
    margin-bottom: 1.5rem;
}

.qa-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.qa-answer {
    margin: 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


/* Ekstra verktøystiler */
.default-font-regular {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.default-font-medium {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.default-font-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.brand-logo {
    min-width: 250px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* buttons */

.btn-icon {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.btn-icon:hover {
    background-color: rgba(0, 0, 0, 0.05);
    /* eller en branding-farge */
}

.btn-icon:focus-visible {
    outline: 2px solid #007bff;
    /* valgfri fokusring */
    outline-offset: 2px;
}

.btn-icon svg,
.btn-icon i {
    font-size: 40px;
    color: inherit;
}

.btn-branding {
    color: white;
    background-color: var(--branding-1);
    border: 1px solid var(--branding-1);
    padding: 0.7rem 1.7rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border-radius: 40px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.btn-branding:hover {
    opacity: 0.8;
}

.btn-branding:active {
    opacity: 0.8;
}

.btn-branding:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(50, 42, 35, 0.25);
}

.btn-branding:disabled,
.btn-branding[disabled] {
    background-color: #e0e0e0;
    border-color: #d0d0d0;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}


.btn-branding-alt {
    color: var(--branding-1);
    background-color: transparent;
    border: 1px solid var(--branding-1);
    padding: 0.7rem 1.7rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border-radius: 40px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.btn-branding-alt:hover {
    opacity: 0.8;
}

.btn-branding-alt:active {
    opacity: 0.8;
}

.btn-branding-alt:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(50, 42, 35, 0.25);
}

.btn-branding-alt:disabled,
.btn-branding-alt[disabled] {
    background-color: #e0e0e0;
    border-color: #d0d0d0;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

/* radius */
.radius-12 {
    border-radius: 12px;
}


/* text */

.text-12 {
    font-size: 12px;
}

.text-14 {
    font-size: 14px;
}

.text-16 {
    font-size: 16px;
}

.text-18 {
    font-size: 18px;
}

.text-20 {
    font-size: 20px;
}

.text-24 {
    font-size: 24px;
}

.text-26 {
    font-size: 26px;
}

.text-28 {
    font-size: 28px;
}

.text-30 {
    font-size: 30px;
}

.text-32 {
    font-size: 32px;
}


.text-branding-1 {
    color: var(--branding-1);
}

.text-branding-2 {
    color: var(--branding-2);
}

.text-branding-3 {
    color: var(--branding-3);
}

.text-branding-4 {
    color: var(--branding-4);
}

/* background */
.bg-branding-1 {
    background-color: var(--branding-1);
}

.bg-branding-2 {
    background-color: var(--branding-2);
}

.bg-branding-3 {
    background-color: var(--branding-3);
}

.bg-branding-4 {
    background-color: var(--branding-4);
}


/* card behandlinger */

/* .card-border {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

@media (min-width: 768px) {
    .card-border {
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 60px;
    }
} */

/* image filter */

img.lighten-1 {
    filter: brightness(1.1);
    /* 1.0 = original, 1.1 = 10% lysere */
}

img.lighten-2 {
    filter: brightness(1.2);
    /* 1.0 = original, 1.2 = 20% lysere */
}

img.lighten-3 {
    filter: brightness(1.3);
    /* 1.0 = original, 1.3 = 30% lysere */
}

img.lighten-4 {
    filter: brightness(1.4);
    /* 1.0 = original, 1.4 = 40% lysere */
}

img.lighten-5 {
    filter: brightness(1.5);
    /* 1.0 = original, 1.5 = 50% lysere */
}

img.lighten-6 {
    filter: brightness(1.6);
    /* 1.0 = original, 1.6 = 60% lysere */
}

img.lighten-7 {
    filter: brightness(1.7);
    /* 1.0 = original, 1.6 = 60% lysere */
}

img.lighten-8 {
    filter: brightness(1.8);
    /* 1.0 = original, 1.8 = 80% lysere */
}

img.lighten-9 {
    filter: brightness(1.9);
    /* 1.0 = original, 1.9 = 90% lysere */
}

img.lighten-10 {
    filter: brightness(2.0);
    /* 1.0 = original, 2.0 = 100% lysere */
}

img.decrease-color-1 {
    filter: saturate(0.9);
    /* 1.0 = normal, 1.1 = 10 % mer metning */
}

img.decrease-color-2 {
    filter: saturate(0.8);
    /* 1.0 = normal, 1.2 = 20 % mer metning */
}

img.decrease-color-3 {
    filter: saturate(0.7);
    /* 1.0 = normal, 1.3 = 30 % mer metning */
}

img.enhance-color-1 {
    filter: saturate(1.1);
    /* 1.0 = normal, 1.1 = 10 % mer metning */
}

img.enhance-color-2 {
    filter: saturate(1.2);
    /* 1.0 = normal, 1.2 = 20 % mer metning */
}

img.enhance-color-3 {
    filter: saturate(1.3);
    /* 1.0 = normal, 1.3 = 30 % mer metning */
}

img.enhance-color-4 {
    filter: saturate(1.4);
    /* 1.0 = normal, 1.4 = 40 % mer metning */
}

img.enhance-color-5 {
    filter: saturate(1.5);
    /* 1.0 = normal, 1.5 = 50 % mer metning */
}

img.enhance-color-6 {
    filter: saturate(1.6);
    /* 1.0 = normal, 1.6 = 60 % mer metning */
}