/* Storm Restaurangbiograf i Grebbestad AB */

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 10rem;
    --menu-height-scrolled: 8rem;
    --section-width: 130rem;

    /* 	Colors */
    --primary-color: 40, 92, 129;
    --primary-light-color: 240, 245, 250;
    --primary-dark-color: 19, 44, 62;

    --black-color: 17, 17, 17;
    --gray-dark-color: 54, 54, 54;
    --gray-color: 153, 153, 153;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

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

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

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

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

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

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

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0 !important;
}
.py-5 .section-block {
    padding: 5rem 0;
}
/*Margins*/
.mt-3 {
    margin-top: 3rem;
}

.mt-10 {
    margin-top: 10rem;
}

.mt--9 {
    margin-top: -9rem;
}

.EditMode .mt--7 {
	margin-top: 0;
}

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

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

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

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

/* Rubriker */
.text-label {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 1em;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: .5em;
}

.small-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    padding-bottom: .7em;
}

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    font-weight: 700;
}

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

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

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

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

.text-center {
    text-align: 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 {
    min-width: 15rem;
    padding: 1.4rem 2rem;
    margin: 7px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.btn-primary-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover {
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
    color: rgb(var(--primary-color));
}

.btn-primary-dark-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-dark-color));
    background-color: rgb(var(--primary-dark-color));
}

.btn-primary-dark-filled:hover {
    border: 1px solid rgb(var(--primary-dark-color));
    background-color: transparent;
    color: rgb(var(--primary-dark-color));
}

.btn-white-filled {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--white-color));
}

.btn-white-filled:hover {
    border: 1px solid rgb(var(--white-color));
    background-color: transparent;
    color: rgb(var(--white-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    color: rgb(var(--gray-dark-color));
    cursor: pointer;
}

.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: 480px) {
    .btn {
        display: block;
        width: 100%;
        margin: 7px 0;
    }
}

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

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

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}
.bg-black {
    background-color: rgb(var(--black-color));
}
.bg-white {
    background-color: rgb(var(--white-color));
}
.bg-gradient-primarylight-white {
    background-image: linear-gradient(to top, rgb(var(--white-color)) 50%, rgb(var(--primary-color)) 50%);
}

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

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

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-video {
    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;
}

/* Grafiska element
========================================================================== */
/* Borders */
.border {
    border: 1px solid;
}

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

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

/* Badge */
.badge-wrapper {
    position: relative;
}

.badge {
    position: absolute;
    top: 1rem;
    left: 0;
    padding: .3rem 1.3rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 .8rem .8rem 0;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

/* Object position */
.of-wrapper .op-80-30 {
    object-position: 80% 30%;
}

/* Video ratio */
.section-slider .video-ratio {
    position: relative;
    padding-bottom: 100%;
    height: 0;
}

.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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


.card-item {
    text-decoration: none;
    transition: all .3s ease;
}

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

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

/* Bredder */
.cards-wrapper.w-20 .card-item {
    width: calc((100% / 5) - 2rem);
    margin: 1rem;
}
.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;
}

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

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

@media only screen and (max-width: 700px) {
    .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: 580px) {
    /* Bredder */
    .cards-wrapper.w-25 .card-item,
    .cards-wrapper.w-20 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 2-1 */
.card-2-1 a.card-item:hover {
    background: rgb(var(--primary-light-color));
}

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

/* Card 3-1 */
.card-3-1 .video-wrapper {
    width: 100%;
}

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

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

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

.split-image {
    width: 50%;
}

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

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

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

@media screen and (max-width: 580px) {
    .split-wrapper {
        background: transparent;
    }

    .split-content {
        padding: 0 0 3rem;
    }

}

/* Header / Navigation
========================================================================== */
header {
    background-color: rgb(var(--primary-color));
}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
}

.header-logo img {
    padding: 2rem 0;
}

/* Nav */
.TemplateMenu a {
    font-weight: 400;
    font-size: 1.8rem;
    color: rgb(var(--white-color), .6);
}

.TemplateMenu>li>a:hover,
.TemplateMenu li.active>a {
    color: rgb(var(--white-color));
}

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

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

.header-cta-wrapper li {
    margin: 0 .5rem;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    line-height: 1;
}

@media only screen and (max-width: 1024px) {
    .header-logo img {
        padding: 1.3rem 0;
    }

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

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

/* Top-section
========================================================================== */
.top-section .section-block {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--menu-height));
    background-color: rgb(var(--black-color), .5);
}

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

.top-section .logo {
    display: block;
    margin: 0 auto;
    filter: invert();
}

.top-section .btn-wrapper {
    margin-left: 15rem;
}

@media only screen and (max-width: 1100px) {
    .top-section .btn-wrapper {
        margin-left: 15%;
    }
}

@media only screen and (max-width: 520px) {
    .top-section .btn-wrapper {
        margin-left: 0;
    }
}

/* Pa gang pa Storm
========================================================================== */
.section-slider {
    overflow: hidden;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin: 3rem 0 7rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

.scroll-wrapper.cards-wrapper .slick-track {
    display: flex;
    margin: 0;
}

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
}

/* Card item */
.scroll-wrapper .card-item {
    display: flex;
    flex-direction: column;
    margin: 0 2rem 0 0;
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -6rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

.scroll-wrapper .slick-arrow::after {
    font-weight: 300;
    color: rgb(var(--white-color));
}

.scroll-wrapper .slick-next {
    right: 2rem;
}

.scroll-wrapper .slick-prev {
    left: auto;
    right: 6rem;
}

/* CTA
========================================================================== */
.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-wrapper .text-block {
    max-width: 65rem;
}

.cta-wrapper .btn-wrapper {
    margin-top: 0;
}

@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-wrap: wrap;
    }

    .cta-wrapper .btn-wrapper {
        margin-top: 2rem;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 40rem;
    text-align: center;
    background: rgb(var(--primary-dark-color));
}

.hero.bg-image .section-block {
    min-height: 60rem;
}

.hero.bg-image .section-block {
    background: rgba(var(--black-color), .55);
}

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

.hero .section-title {
    font-size: 6rem;
    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: Restaurang
========================================================================== */
.menu-wrapper {
    border: 3px solid rgb(var(--primary-color));
}

/* Taggar/Rubriker */
.tags-heading {
    display: none;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -3rem;
}

.tags-list .tag {
    padding: 1rem 3rem;
    font-size: 1.9rem;
    cursor: pointer;
    transition: .2s ease;
}

.tags-list .tag:hover,
.tags-list .tag-picked {
    color: rgb(var(--primary-color));
}

/* Menyn */
.tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding: 8rem 2rem 10rem
}

.tab-col {
    width: 100%;
}

.tab-col.w-50 {
    width: calc(50% - 4rem);
    margin: 0 2rem;
}

.tab-col .tab-item {
    max-width: 50rem;
    margin: 0 auto;
}

.tab-col .tab-item:not(:last-of-type) {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

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

    /* Taggar */
    .tags-wrapper {
        position: relative;
        max-width: 25rem;
        margin: -2.4rem auto;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

    .tags-heading {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }

    .tags-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: rgb(var(--white-color));
    }

    .tags-heading i {
        margin-left: 2rem;
    }

    .tags-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        box-shadow: 1px 1px 10px rgba(var(--black-color), .1);
    }

    .tags-wrapper.opened .tags-list {
        display: block;
    }

    .tags-wrapper .tag {
        padding: 1rem 2rem;
        letter-spacing: normal;
        text-transform: initial;
    }

    /*Innehåll*/
    .tab-col.w-50 {
        width: 100%;
        margin: 2rem 0;
    }
}

/* ==========================================================================
Undersida: Biograf
========================================================================== */
.section-movies .section-block-wrapper {
    align-items: flex-start;
}

/* Veckans filmer */
.section-movies .col-0 {
    width: 35rem;
    padding: 1.5rem;
    margin: 1rem 0 0 0;
    background: rgb(var(--gray-light-color));
    border: 1px solid rgb(var(--gray-color));
}

.section-movies .col-0 .text-bold {
    padding: 2rem 0 10px 0;
    text-transform: capitalize;
}

.section-movies .col-0 .card-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0;
}

.section-movies .col-0 .card-item p {
    padding: 0;
    font-size: 1.4rem;
}

.section-movies .col-0 .card-item a {
    padding: 5px;
    font-size: 1.2rem;
    border-radius: 7px;
    text-decoration: none;
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-dark-color));
    background: rgb(var(--primary-dark-color));
    transition: .2s ease;
}

.section-movies .col-0 .card-item a:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-dark-color));
    background: rgb(var(--primary-color));
}

.section-movies .col-0 .btn-wrapper {
    justify-content: space-between;
    margin-top: 3rem;
}

.section-movies .col-0 .btn {
    min-width: unset;
    padding: .7rem 1.2rem;
    font-size: 1.2rem;
}

/* Alla filmer */
.section-movies .col-1 {
    width: calc(100% - 35rem);
    padding-left: 8rem;
}

.section-movies .col-1 .card-item p {
    display: -webkit-box;
    padding: 0;
    font-size: 1.4rem;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Nar man klickat pa filmen */
.movie-dates ul {
    display: flex;
    list-style: none;
    padding: 0;
}

.movie-dates a {
    padding: 5px;
    margin: 5px;
    font-size: 1.2rem;
    border-radius: 7px;
    text-decoration: none;
    color: rgb(var(--white-color));
    text-transform: capitalize;
    border: 1px solid rgb(var(--primary-dark-color));
    background: rgb(var(--primary-dark-color));
    transition: .2s ease;
}

.movie-dates a:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-dark-color));
    background: rgb(var(--primary-color));
}

@media only screen and (max-width: 1100px) {
    .section-movies .col-0 {
        padding: 1.5rem;
        margin: 0 auto;
    }
 
    .section-movies .col-1 {
        width: 100%;
        padding-left: 0;
        margin-top: 5rem;
    }
}

/* ==========================================================================
Undersida: Vinkallaren
========================================================================== */
.slider-design-1.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

.slider-design-1.scroll-wrapper.cards-wrapper .slick-track {
    display: flex;
}

.slider-design-1.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
    margin: 0 1rem;
    transition: all .3s ease;
}

.slider-design-1.scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
    opacity: .5;
    transform: scale(.9);
}

/* ==========================================================================
Undersida: Storm Comedy Club
========================================================================== */
.wall-of-fame-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 4rem);
    margin: 2rem;
    box-shadow: 0 3px 6px rgba(var(--black-color), .25)
}

.wall-of-fame-wrapper .card-item:nth-child(even) {
    transform: rotate(-1.5deg);
}

.wall-of-fame-wrapper .card-item:nth-child(odd) {
    transform: rotate(1.5deg);
}

.wall-of-fame-wrapper .card-item .card-body {
    padding: 2rem 1rem;
}

.wall-of-fame-wrapper .card-item .card-body p {
    line-height: 1.4;
}

@media only screen and (max-width: 1200px) {
    .wall-of-fame-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 4rem);
    }
}

@media only screen and (max-width: 800px) {
    .wall-of-fame-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 4rem);
    }
}

@media only screen and (max-width: 600px) {
    .wall-of-fame-wrapper.w-25 .card-item {
        width: 100%;
        margin: 2rem 0;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-map {
    position: relative;
    font-size: 0;
}

.section-map .oppettider {
    z-index: 2;
    position: absolute;
    left: 8rem;
    top: 14rem;
}

@media only screen and (max-width:980px) {
    .section-map .oppettider {
        left: 3rem;
        bottom: 3rem;
        top: auto;
    }
}

@media only screen and (max-width:750px) {
    .section-map .oppettider {
        display: none;
    }

    .section-map iframe {
        height: 40rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background-color: rgb(var(--gray-light-color));
    padding: 0 5rem;
}

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

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

.footer-menu-large {
    --base-size: 1.3rem;
    width: 30%;
}

.footer .text-label {
    color: rgb(var(--black-color));
    padding: 0 0 1rem;
    line-height: 1;
}

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

.footer-top li,
.footer-top p,
.footer-top a {
    color: rgb(var(--black-color), .6);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
    color: rgb(var(--black-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: var(--base-size);
}

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

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

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

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

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

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

    /* Footer top */
    .footer-menu {
        width: 100%;
        order: 0;
    }

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

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

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

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