:root {
    /* Bakgrunder */
    --bg-primary: #ffffff;
    --bg-secondary: #f9f1ec;
    --bg-accent: #260038;
    --bg-gray: #F5F5FA;

    /* Text */
    --text-primary: #2d2824;
    --text-secondary: #665e58;
    --text-on-accent: #ffffff;

    /* Lila */
    --purple-primary: #990ae3;
    --purple-hover: #8607d0;
    --purple-dark: #6d02a3;
    --purple-darker: #4e0174;

    /* Borders */
    --border-light: #ede1d8;

    /* Status / accent */
    --teal: #00847e;

    --telia-purple: #990AE3;

    /* Hover/aktiv lila */
    --telia-purple-dark: #8607D0;

    /* Mörk hero-bakgrund */
    --telia-plum: #260038;

    /* Ljus markeringsyta för menyer */
    --telia-lavender: #F4E0FF;

    /* Nästan vit lila ton */
    --telia-lilac: #FAF4FF;

    /* Text */
    --text-primary: #2D2824;
    --text-secondary: #665E58;
    --text-on-dark: #FFFFFF;

    /* Ljusa bakgrunder */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9F1EC;

    /* Ljus markeringsyta för menyer */
    --telia-lavender: #F4E0FF;

    /* Nästan vit lila ton */
    --telia-lilac: #FAF4FF;

    /* Text */
    --text-primary: #2D2824;
    --text-secondary: #665E58;
    --text-on-dark: #FFFFFF;

    /* Ljusa bakgrunder */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9F1EC;
}

html, body {
    font-family: "Telia Sans";
    margin: 0;
    padding: 0;
    min-height: 90vh;
    width: 100%;
}

.dynamic {
    display: block;
    padding-top: 70px;
    margin: 0 auto;
    min-height: 80vh;
}

.standard {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
}

.s_h1 {
    font-family: "Telia Sans Heading", sans-serif;
    font-weight: 400;
    font-size: 50px;
    margin: 0;
    margin-top: 100px;
    color: var(--text-primary);
}

.s_h2 {
    font-weight: 200;
    font-size: 20px;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 50px;
}

.s_h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 50px;
    color: var(--text-secondary);
}

nav {
    height: 70px;
    width: 100%;

    display: flex;
    align-items: center;
    
    position: fixed;
    top: 0;
    left: 0;

    padding: 0 10%;
    box-sizing: border-box;

    background: white;
    z-index: 1000;
}

.navlogoa {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.navlogo {
    height: 32px;
    width: auto;
    color: var(--telia-purple);
}

.navlinks {
    height: 100%;
    display: flex;
    align-items: center;
}

.navlinks a {
    height: 100%;
    display: flex;
    align-items: center;

    padding: 0 10px;

    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;

    transition: all 0.3s ease;
}

.navlinks.right {
    margin-left: auto;
}

.navlinks a:hover, .navlogoa:hover {
    background: var(--telia-lavender);
    color: var(--purple-darker);
    box-shadow: inset 0 -3px 0 var(--purple-darker);
}

.navlogoa:hover .navlogo {
    color: var(--purple-darker);
}



footer {
    background: var(--telia-plum);
    color: var(--bg-primary);
    min-height: 30vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_content {
    width: 80%;
}

.footerlogo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
}

.footer_row2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer_row2 p {
    margin: 0;
}

.footerlinks {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footerlinks a {
    color: var(--bg-primary);
    transition: opacity 0.2s ease;
}

.footerlinks a:hover {
    opacity: 0.75;
}