/* Camillas Kafé & Restaurang AB */

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 160, 187, 119;
    --secondary-color: 204, 155, 122;
    --black-color: 17, 17, 17;
    --gray-color: 130, 130, 130;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

    --accent-taube-color: 153, 139, 133;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 155rem;

    /* 	Typography */
    --base-size: 1.6rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1200;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

/* Layout
========================================================================== */
.section-block {
    padding: 12rem 5rem;
}

/* Paddings */
.p-1 .section-block,
.p-1:not(.section-wrapper) {
    padding: 1rem;
}

.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

.p-4 .section-block,
.p-4:not(.section-wrapper) {
    padding: 4rem;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pb-2 .section-block,
.pb-2:not(.section-wrapper) {
    padding-bottom: 2rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0rem;
}

.pt-2 .section-block,
.pt-2:not(.section-wrapper) {
    padding-top: 2rem;
}

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}
.mt-0{
    margin-top: 0 !important;
}

/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-1100 .section-block-wrapper,
.mw-1100:not(.section-wrapper) {
    max-width: 110rem;
}

/* Ovrigt */
.display-flex {
    display: flex;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'sofia-pro', sans-serif;
}

/* Rubriker */
.text-label {
    font-size: 1.6rem;
    padding-bottom: .5em;
    letter-spacing: 0.3rem;
    font-weight: 300;
    text-transform: uppercase;
}

.section-title {
    padding-bottom: .5em;
    font-size: 3rem;
    font-weight: 200;
    line-height: 1.2;
    font-family: 'sofia-pro', sans-serif;
}

.small-title {
    font-size: 2.5rem;
    padding-bottom: .5em;
    line-height: 1.4;
    font-weight: 300;
    font-family: 'sofia-pro', sans-serif;
}

/* Rubrik med bakgrundsfarg */
.bg-title-primary,
.bg-title-secondary {
    z-index: 1;
    position: relative;
    display: block;
    margin: 0 0 3rem -20rem;
}

.bg-title-primary {
    padding: 3rem;
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
    border-radius: 2rem;
}

.bg-title-secondary {
    padding: 3rem;
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgb(var(--white-color));
    background: rgb(var(--secondary-color));
    border-radius: 2rem;
}

@media screen and (max-width: 1000px) {

    /* Rubrik med bakgrundsfarg */
    .bg-title-primary {
        margin: 0 0 2rem;
    }

    .bg-title-secondary {
        margin: auto;
    }
}

/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
    font-weight: 300;
}

a {
    text-decoration: none;
}

.ingress {
    font-size: 2.3rem;
}

/* List-check */
.list-check {
    padding: 0;
    list-style: none;
}

.list-check li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
}

/* Ovriga klasser */
.text-block {
    max-width: 70rem;
}

.text-block-center {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.text-bold {
    font-weight: 700;
}

.text-italic {
    font-style: italic;
}

.text-center {
    text-align: center;
}
.justify-center{
    justify-content: center;
}

@media only screen and (max-width: 1200px) {
    .section-title {
        font-size: 3.8rem;
    }

    .small-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-title {
        font-size: 2.5rem;
    }

    .small-title {
        font-size: 2rem;
    }

    .text-label {
        font-size: 1.2rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    margin-top: 2rem;
}

.btn-wrapper.center {
    text-align: center;
}

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1rem;
    margin: 0.7rem;
    font-size: 1.5rem;
    border-radius: 3rem;
    transition: all .4s ease;
    padding: 1.3rem 3rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 300;
}

.btn::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

.btn:hover::after {
    transform: translateX(1rem);
    transition: transform .4s ease;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    border: 0.1rem solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: calc(var(--base-size)* .9);
    color: rgb(var(--primary-color));
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.arrow-link::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform .4s ease;
}

@media only screen and (max-width: 580px) {
    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

.circle-icon:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--secondary-color));
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: 1.5rem;
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-white {
    background-color: rgb(var(--white-color));
}

.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-secondary {
    background-color: rgb(var(--secondary-color));
}

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}

/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-black {
    color: rgb(var(--black-color));
}

.text-white {
    color: rgb(var(--white-color));
}

.text-accent-taube {
    color: rgb(var(--accent-taube-color));
}

/* Grafiska element
========================================================================== */
.br-1 {
    border-radius: 1rem;
}

.br-2 {
    border-radius: 2rem;
}

.btr-2 {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

@media only screen and (max-width: 1000px) {
    .btr-2 {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/* Borders */
.border-secondary {
    border: 0.2rem solid rgb(var(--secondary-color));
}

.border-bottom-dotted-secondary {
    border-bottom: 0.1rem dotted rgb(var(--secondary-color));
}

.border-bottom-primary {
    border-bottom: 0.1rem solid rgb(var(--primary-color));
    margin-bottom: 2rem;
}

/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

.bg-image-wrapper,
.bg-video-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video */
.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Parallax
========================================================================== */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    min-height: 40rem;
    background-color: rgb(var(--black-color), .2)
}

/* Paralax Tjanster */
.parallax-tjanster {
    background-image: linear-gradient(to right, rgba(116, 100, 107, 0.743), rgba(116, 98, 105, 0.9)), url(/assets/images/kvinna-natur-1000px.jpg);
}

/* Paralax Konserter */
.parallax-konserter {
    background-image: linear-gradient(to right, rgba(116, 100, 107, 0.749), rgba(116, 98, 105, 0.9)), url(/assets/images/konsert-2000px.jpg);
}

/* Paralax Julbord */
.parallax-julbord {
    background-image: url('/assets/images/event/vinter-2000px.jpg');
}

@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

/* Bredder */
.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-50 .card-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-100 .card-item {
    width: 100%;
    margin: 1rem 0;
}

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

@media only screen and (max-width: 1300px) {
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 2rem);
        margin: 1rem;
    }
}

@media only screen and (max-width: 1050px) {

    .cards-wrapper.w-25 .card-item,
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 680px) {
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 2-1 */
.card-2-1 a.card-item:hover {
    background: rgb(var(--primary-color), .5);
    transition: .3s ease;
}

.card-2-1 .card-header {
    margin-bottom: 2rem;
    font-size: 5rem;
}

/* Card 3-1 */
.card-3-1 .image-wrapper {
    height: 25rem;
}

/* Card 3-6 */
.card-3-6 .card-item {
    position: relative;
    min-height: 50rem;
    padding: 2rem;
    align-content: end;
}

.card-3-6 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .5rem;
}

.card-3-6 img {
    transition: .3s ease;
}

.card-3-6 .card-item:hover img {
    transform: scale(1.03);
    transition: .3s ease;
}

.card-3-6 .card-body {
    z-index: 1;
    max-width: 75%;
    position: relative;
    border-radius: .5rem;
}

@media screen and (max-width: 1200px) {
    .cards-wrapper.card-3-6 {
        padding: 0;
    }

    .card-3-6 .card-body {
        max-width: 100%;
    }
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 6rem;
}

.split-image {
    width: 50%;
}

body:not(.EditMode) .split-image-expanded {
    width: 50%;
    margin: -5rem 0;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

/* Speciella bredder */
.split-wrapper .w-60 {
    width: 60%;
}

.split-wrapper .w-40 {
    width: 40%;
}

.split-text-wrapper {
    width: 80rem;
}

@media screen and (max-width: 1300px) {
    .split-content {
        padding: 3rem;
    }

    .split-text-wrapper {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
    }

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 2rem;
    }

    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }

    body:not(.EditMode) .split-image-expanded {
        width: 100%;
        margin: 0rem 0;
    }
}

/* Modal som oppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color), .7);
    padding: 0 4rem;
}

body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 70rem;
    max-height: 87vh;
    padding: 6rem;
    border-radius: 2rem;
    overflow: scroll;
    background: rgb(var(--white-color));
    transform: translate(-50%, -50%);
    outline: 0.2rem solid rgba(var(--primary-color));
    outline-offset: -1.1rem;
}

.section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
}

.section-auto-modal p {
    padding-bottom: 0.8rem;
}

/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
    display: none;
}

.popup-wrapper {
    z-index: 8;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
}

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: #A0BB77;
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    cursor: pointer;
}

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    color: #fff;
}

.popup-wrapper .popup-button .icon-open,
.popup-wrapper.opened .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(1);
}

.popup-wrapper.opened .popup-button .icon-open,
.popup-wrapper .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(0);
}

/* Innehall */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    max-width: 60rem;
    max-height: calc(100vh - 10rem);
    padding: 4rem;
    margin: 0 2rem;
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

.popup-wrapper.opened .popup-window {
    opacity: 1;
    visibility: visible;
    display: block;
    bottom: 10rem;
}

.popup-window.bg-paskharar {
    padding-bottom: 10rem;
    background-image: url(/assets/images/seasons/paskharar-gras.svg);
    background-size: auto 10rem;
    background-repeat: repeat-x;
    background-position: left bottom;
}

.icon-close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
}

@media only screen and (max-width: 450px) {
    .popup-window {
        padding: 2rem 3rem 2rem 2rem;
    }

    .icon-close-popup {
        top: 1rem;
    }
}

/* Header / Navigation
========================================================================== */
/* Ta bort klick */
body:not(.EditMode) .TemplateMenu a[href="/17/37/om-kafe-himlavalvet/"],
body:not(.EditMode) .TemplateMenu a[href="/17/45/mat/"],
body:not(.EditMode) .TemplateMenu a[href="/17/103/konserter/"],
body:not(.EditMode) .TemplateMenu a[href="/17/51/event/"],
body:not(.EditMode) .TemplateMenu a[href="/17/52/kontakt-bokning/"] {
    pointer-events: none;
}

/* Dolj hem */
body:not(.EditMode) header .TemplateMenu>li:nth-child(1) {
    display: none;
}

header {
    padding: 0;
}

header .container {
    max-width: none;
    padding: 0;
}

.IndexPage header:not(.scrolled) {
    background-color: transparent;
}

/* Logo */
.header-logo {
    flex: 1 1 0rem;
}

.header-logo img {
    background: rgb(var(--secondary-color));
    padding-left: 1rem;
    padding-right: 1rem;
}

.IndexPage header:not(.scrolled) .header-logo img {
    background: transparent;
    outline: none;
}

/* Nav */
.IndexPage header:not(.scrolled) .TemplateMenu a.toplevel {
    color: rgb(var(--white-color));
}

.TemplateMenu a.toplevel {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.TemplateMenu a {
    letter-spacing: 1px;
    font-size: 1.5rem;
    color: rgb(var(--primary-color));
}

.TemplateMenu ul {
    width: 22rem;
}

.TemplateMenu ul li a:hover {
    background: rgb(var(--primary-color));
    color: rgb(var(--white-color));
}

.TemplateMenu li .active a {
    color: rgb(var(--black-color));
}


/* CTA  */
.header-cta-wrapper {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 0rem;
    padding: 0;
    margin: 0 0 0 4rem;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.header-cta-wrapper li {
    padding-right: 2rem;
}

@media only screen and (max-width: 1200px) {
    .IndexPage header:not(.scrolled) .TemplateMenu a.toplevel {
        color: rgb(var(--primary-color));
    }

    .mobile-menu .container {
        padding-right: 2rem;
    }

    .TemplateMenu ul li a:hover {
        background: rgb(var(--transparent));
        color: rgb(var(--black-color));
    }
}

@media only screen and (max-width: 580px) {

    /* Header logo */
    .header-logo a {
        font-size: 1.6rem;
    }

    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }

    .header-cta-wrapper .btn {
        display: none;
    }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section {
    min-height: 100vh;
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), .6);
}

.top-section .section-block {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-section .section-block-wrapper {
    width: 100%;
}

.top-section .text-block-center {
    max-width: 85rem;
}

.logo-wrapper {
    max-width: 45rem;
    margin: auto;
}

.top-section .section-title {
    font-size: 6rem;
    font-weight: 400;
    text-transform: uppercase;
}

.top-section p {
    max-width: 60rem;
    margin: 0 auto;
}

.top-section .btn-primary-filled:hover {
    color: rgb(var(--white-color));
}

/* ==========================================================================
Sektion Instagram
========================================================================== */
.instagram {
    overflow: hidden;
}

@media only screen and (max-width: 1200px) {
    .top-section .section-title {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .top-section .section-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 55rem;
}

.hero.hero-gradient {
    background-color: rgb(var(--black-color), .8);
}

.hero .section-block-wrapper {
    width: 100%;
}

.hero .section-title {
    font-size: 4rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 30rem;
    }

    .hero .section-title {
        font-size: 4rem;
    }
}

/* ==========================================================================
Undersida Vin-olsortiment
========================================================================== */
.drink-wrapper,
.drink-wrapper-badge {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.drink-wrapper img {
    max-width: 3rem;
    margin-bottom: 1rem;
}

.drink-wrapper-badge img {
    max-width: 5rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
Undersida Konserter > Enskilda konserter
========================================================================== */
@media only screen and (max-width: 1000px) {

    .singel-concert .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column-reverse;
    }
}

/* ==========================================================================
Undersida Tidigare konserter
========================================================================== */
.LayoutPage .springsteen {
    background-color: transparent !important;
}

.springsteen .bg-image-wrapper {
    position: absolute !important;
}

.springsteen .section-block,
.LayoutPage .springsteen .section-block {
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    background-color: rgb(var(--black-color), 0);
}

.springsteen .section-block-wrapper {
    width: 100%;
    max-width: none;
}

.springsteen .text-block {
    max-width: 50rem;
}

.springsteen p {
    font-size: 1.5rem;
}

.decorative {
    text-transform: uppercase;
    font-size: 7rem;
    line-height: 1;
    max-width: 53rem;
    padding-bottom: 5rem;
    font-weight: 700;
}

.decorative .vecka {
    font-size: 14.5rem;
}

.exibition {
    max-width: 47rem;
    position: absolute;
    right: 6rem;
    top: 12rem;
    rotate: 10deg;
    border: 0.3rem solid rgb(var(--white-color));
}

.thumbnail {
    max-width: 20rem;
    margin: 0 1rem 2rem 0;
    transition: .2s ease;
}

.thumbnail:hover {
    transform: scale(105%);
}

.thumbnail img {
    border-radius: 1rem;
}

.spotify {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    max-width: 55rem;
}

@media only screen and (max-width: 1500px) {
    .decorative {
        font-size: 5rem;
    }

    .decorative .vecka {
        font-size: 10.4rem;
    }

    .exibition {
        max-width: 35rem;
    }
}

@media only screen and (max-width: 950px) {

    .springsteen .section-block,
    .LayoutPage .springsteen .section-block {
        background-color: rgb(var(--black-color), 0.7);
    }

    .exibition {
        max-width: none;
        width: 100%;
        position: static;
        rotate: 0deg;
    }

    .spotify {
        position: relative;
        margin: 5rem 2rem 0;
    }
}

@media only screen and (max-width: 500px) {
    .decorative {
        font-size: 4rem;
    }

    .decorative .vecka {
        font-size: 8.3rem;
    }

    .springsteen .display-flex {
        flex-direction: column;
        align-items: start;
    }
}

/* ==========================================================================
Undersida Julbord
========================================================================== */
.section-julbord .text-block-center {
    max-width: 110rem;
}

/* Julbord utbud
========================================================================== */
.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.accordion-wrapper.w-50 .accordion-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.accordion-item {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgb(var(--secondary-color));
    transition: .3s ease;
}

.accordion-item:hover {
    background: rgb(var(--secondary-color), .8);
}

.accordion-item.active {
    background: rgb(var(--white-color));
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
    background: rgb(var(--secondary-color), .8);
    border-radius: 1rem;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    color: rgb(var(--white-color));
    transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 2rem;
}

.accordion-body p {
    font-size: 1.5rem;
}

@media only screen and (max-width: 800px) {
    .accordion-wrapper.w-50 .accordion-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }

    .accordion-header::after {
        right: 1rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.5rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
}

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
    margin-top: 10rem;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 3rem;
}

.footer-menu.socials {
    width: 8%;
    margin: 0 0 3rem;
}

.footer-menu {
    width: 30%;
    margin: 0 0 3rem;
}

.footer-menu.socials .circle-icon em:before {
    padding-left: 0.3rem;
}

.footer .text-label {
    padding: 0 0 1rem;
    color: rgb(var(--primary-color));
    line-height: 1;
    font-weight: 600;
    font-size: 1.7rem;
    font-family: 'Playfair Display';
}

.footer-submenu {
    padding: 0;
    list-style: none;
}

.footer-top p,
.footer-top a {
    font-size: 1.4rem;
    text-decoration: none;
}

.footer-top p {
    color: rgb(var(--accent-taube-color));
}

.footer-top a {
    color: rgb(var(--accent-taube-color));
    text-decoration: none;
}

.footer-top a:hover {
    color: rgb(var(--black-color));
}

.circle-icon em {
    color: rgb(var(--white-color));
}

/* Sociala medier */
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo::before,
.footer-logo::after {
    position: relative;
    display: inline-block;
    content: '';
    flex: 1 1 0%;
    border-top: 1px solid rgb(var(--secondary-color));
}

.footer-logo::before {
    margin-right: 2rem;
}

.footer-logo::after {
    margin-left: 2rem;
}

.footer-logo img {
    max-width: 25rem;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 0.1rem solid rgb(var(--gray-color));
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgb(var(--gray-dark-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    opacity: .6;
}

@media only screen and (max-width: 1200px) {
    .footer {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 33.333%;
    }

    .footer-menu-large {
        width: 100%;
    }

    .footer-menu-large p {
        max-width: 55rem;
    }

    .footer-menu.socials .footer-submenu {
        display: flex;
    }
}

@media only screen and (max-width: 750px) {

    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .footer {
        padding: 0 2rem;
    }

    /* Footer top */
    .footer-top {
        padding: 5rem 0;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}