/* 5 Sushi AB (Izakaya) */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600&family=Roboto:wght@100;300;400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap');

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

    /* 	Colors */
    --primary-color: 183, 26, 38;
    --primary-light-color: 255, 173, 198;
    --primary-dark-color: 127, 85, 57;
    --secondary-color: 193, 203, 188;
    --secondary-light-color: 169, 131, 96;
    --accent-green-color: 37, 42, 27;
    --accent-yellow-color: 208, 200, 174;

    --black-color: 0, 0, 0;
    --gray-color: 150, 145, 141;
    --gray-dark-color: 30, 30, 30;
    --gray-light-color: 238, 234, 231;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 0, 0, 0;
}

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

.section-block-wrapper {
    max-width: 150rem;

}

.mw-1300 .section-block-wrapper {
    max-width: 130rem;
}

/* Speciella paddings */
.pt-5 .section-block {
    padding-top: 5rem;
}

.pt-0 .section-block {
    padding-top: 0;
}

.pt-15 .section-block {
    padding-top: 15rem;
}

.pt-0 {
    padding-top: 0 !important;
}


.pb-0 .section-block {
    padding-bottom: 0;
}

.py-0 .section-block {
    padding-top: 0;
    padding-bottom: 0;
}

.py-5 .section-block {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.p-0 .section-block {
    padding: 0;
}

/* Speciella margins */
.mt-5 {
    margin-top: 5rem;
}

.mb-10 {
    margin-bottom: 10rem;
}

.mt--15 {
    margin-top: -10rem;
    margin-bottom: 20rem !important;
}

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

.mw-40 {
    max-width: 40rem;
}

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

    /* Margins */
    .mt--15 {
        margin-top: 0;
    }
}

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

    /* Ovriga klasser */
    .hide-on-phone {
        display: none;
    } 
}

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

/* Rubriker */
.section-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 400;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

.small-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    padding-bottom: 0.5rem;
    color: rgb(var(--primary-color));
}

.text-label {
    font-family: inherit;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: 500;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

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

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: var(--primary-color);
}

a:hover {
    text-decoration: none;
}

/* Ovriga klasser */
.text-block-center {
    max-width: 90rem;
    margin: 0 auto;
}

.text-block {
    max-width: 70rem;
}

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

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

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

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

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

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

    .section-title {
        font-size: 2.5rem;
    }

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

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

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

.btn-wrapper.multiple .btn:not(:last-child) {
    margin-right: 2rem;
}

.btn-wrapper.center {
    justify-content: center;
}

.btn {
    display: inline-block;
    min-width: 18rem;
    padding: 1.4rem 2.5rem;
    font-weight: 400;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
    border-radius: 5rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.btn-wide {
    width: 40rem;
    max-width: 100%;
}

.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 {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-dark-color));
    background-color: rgb(var(--primary-dark-color));
}

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

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

.btn-accent-yellow:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--accent-yellow-color));
    background-color: rgb(var(--accent-yellow-color), .8);
}




.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 {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--gray-light-color));
    background-color: rgb(var(--gray-light-color));
}


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

    .btn-wrapper.big {
        display: block !important;
    }

    .btn-wrapper.big .btn:not(:last-child) {
        margin-bottom: 2rem;
    }

    .btn-wrapper.big .btn {
        display: block;
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .btn:not(.btn-nav) {
        display: block;
        width: 100%;
    }

    .btn-wrapper {
        display: block;
    }

    .btn-wrapper.multiple .btn:not(:last-child) {
        margin-bottom: 2rem;
    }
}


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

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

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

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

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

.text-yellow {
    color: rgb(255, 208, 116);
}

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

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

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

.bg-accent-yellow {
    background-color: rgb(var(--accent-yellow-color)) !important;
}

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

.gradient-white-black {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgb(var(--black-color)) 50%);
}


/* Parallax
========================================================================== */
.parallax {

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

.section-start {
    background-image: url(/assets/images/sushi-traplanka.jpg);
}

.section-start .section-block {
    background-color: rgb(var(--black-color), .5);
}

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

.cards-wrapper.justify-center {
    justify-content: center;
}

.cards-wrapper.space-between {
    justify-content: space-between;
}

.cards-wrapper.align-center {
    align-items: center;
}

.card-item {
    text-decoration: none;
}

/* Specifika bredder */
.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4));
}

.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% !important;
}

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

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

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

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

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

/* Cards 2 */
.cards-2 .card-item {
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    overflow: hidden;
    background-color: rgb(var(--gray-dark-color));
    transition: .4s ease;
}

.cards-2 .card-item:hover {
    background-color: rgb(var(--gray-dark-color), .8);
}


.cards-2 .text-wrapper {
    padding: 4rem 3rem;
}

.cards-2 .small-title {
    padding: 0 0 1rem;
    margin: 0 0 2rem;
    border-bottom: 1px dotted rgb(0, 0, 0);
}

.cards-2 .small-title i {
    font-size: 1.2em;
    margin: 0 1rem 0 0;
}

.cards-2 .btn-wrapper {
    height: 7rem;
    margin: auto 0 0;
    padding: 2rem 3rem;
}

/* Card 3-4 */
.card-3-4 .card-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.card-3-4 .image-wrapper {
    width: 16rem;
    height: 100%;
    margin-right: 2rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    
}

.card-3-4 .card-body {
    flex: 1 1 0px;
}

.card-3-4 .contact-item i {
    margin-right: 1rem;
}

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

@media only screen and (max-width: 900px) {
    .card-3-4 .card-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
}

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


/* Cards 16 */
.cards-16 .card-item {
    border-radius: 1rem;
    position: relative;
    width: calc((100% / 2) - 2rem);
    margin: 0 1rem;
    padding: 20rem 2rem 2rem;
    background: rgb(var(--black-color));
}

.cards-16 .text-wrapper {
    z-index: 1;
    position: relative;
    height: 100%;
    padding: 2rem 3rem;
    outline: 1px solid rgb(var(--primary-color));
    outline-offset: -11px;
    background-color: rgb(var(--black-color));
}

.cards-16 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cards-16 img {
    transition: .3s ease;
}

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



/* grafiska element
========================================================================== */

.section-decor {
    position: relative;

}

.section-decor::before {
    content: "";
    position: absolute;
    left: 10rem;
    bottom: -20rem;
    width: 40%;
    height: 100%;
    background-image: url("/assets/images/pinnar.png");
    background-repeat: no-repeat;
    background-size: 42rem;
    opacity: 0.1;
}

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

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

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

.split-image {
    width: 50%;
    border-radius: 3px;
}

.split-image.offset img {
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
}

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

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

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

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

    /* Split med bg */
    .split-wrapper.bg-white .split-content {
        padding: 3rem 2rem;
        background-color: rgb(var(--white-color));
    }
}

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

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

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

header .container {
    padding: 0 5rem;
    margin: 0 auto;
}

/* top header */
.top-header {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: .3s ease;
    padding: 0 4rem;
}

.scrolled .top-header {
    height: 0;
}

.top-header ul {
    display: flex;
    justify-content: flex-end;
    height: 4rem;
    padding: 0;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid rgb(var(--white-color), 0.4);
}

.top-header a {
    padding: 0 1.7rem;
    font-size: 1.4rem;
}

.top-header img {
    height: 3rem !important;
}

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

.header-logo img {
    width: 40rem;
    max-width: 100%;
}

/* Nav */
.TemplateMenu a {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 400;
    font-size: 1.3rem;
    padding: 0 2rem;
    color: rgb(var(--white-color));
}

.TemplateMenu li.active>a,
.TemplateMenu ul a:hover {
    color: rgb(255, 208, 116);
}

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

.TemplateMenu a:hover,
header.scrolled .TemplateMenu a:hover {
    color: rgb(255, 208, 116) !important;
}

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

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

/* Mobilmeny */
header.mobile-menu .header-logo {
    flex-grow: 1;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    background-color: rgb(var(--white-color));
}

/* Mobilmeny */
@media only screen and (max-width: 1024px) {
    header .container {
        padding: 0 3rem;
    }

    /* top header */
    .top-header {
        padding: 0 3rem;
    }
}

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

    .top-phone-number {
        display: none;
    }

    /* top header */
    .top-header {
        padding: 0 2rem;
    }

    .top-header ul {
        justify-content: center;
    }
}

/* ==========================================================================
Startsida
========================================================================== */
/* Top Section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--menu-height));
    background-color: rgb(var(--accent-green-color));
}

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

.top-section .col-wrapper {
    max-width: 100rem;
}

.top-section h1 {
    font-size: 7rem;
    font-weight: 300;
}

.top-section p {
    color: rgb(var(--white-color));
    text-align: left;
    max-width: 55rem;
}

@media only screen and (max-width: 1024px) {
    .top-section {
        min-height: 55vh;
    }

    .top-section h1 {
        font-size: 5rem;
    }

    .top-section p {
        font-size: 2.8rem;
    }
}

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

    .top-section h1 {
        font-size: 3rem;
    }

    .top-section p {
        font-size: 2rem;
    }
}


/* Sektion Instagram
========================================================================== */

.section-instagram .section-block-wrapper {
    max-width: none;
}

.section-instagram {
    overflow: hidden;
}

/* Meny
========================================================================== */

/* Tab */
.tab-container {
    padding: 5rem 7rem;
    margin-top: -15rem;
}

/* Tabbarna */
.tabs-wrapper {
    margin-bottom: 10rem;
}

.tabs-list {
    text-align: center;
}

.tabs-heading {
    display: none;
}

.tab {
    display: inline-block;
    padding: 1rem 2rem;
    color: rgb(var(--white-color), .7);
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .3rem;
    cursor: pointer;
}

.tab-active {
    color: rgb(255, 208, 116);
}

/* Innehåll */
.tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tab-col {
    width: calc((100% / 2) - 2rem);
}

.tab-item {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    border-radius: 2rem;
}

.tab-item .small-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    letter-spacing: .2rem;
    line-height: 1.1;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(var(--white-color), .7);
}

.tab-item .price {
    padding-left: 1rem;
}

.tab-item .description {
    font-size: 1.5rem;
    color: rgb(var(--white-color), .7);
}

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

    /* Gör menyvalen till dropdown */
    .tab-container {
        padding: 2rem 3rem;
        margin-top: -5rem;
    }

    .tabs-wrapper {
        position: relative;
        max-width: 25rem;
        padding: 1rem 2rem;
        background: rgb(var(--accent-yellow-color));
        cursor: pointer;
        margin-bottom: 2rem;
        border-radius: 1rem 1rem 0 0;
    }

    .tabs-heading {
        display: block;
    }

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

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

    .tabs-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border-radius: 0 0 1rem 1rem;
        text-align: left;
        background: rgb(var(--white-color));
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
    }

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

    .tab-col {
        width: 100%;
    }

    .tab {
        display: block;
        padding: 1.5rem 1rem;
        letter-spacing: normal;
        text-transform: initial;
        color: rgb(var(--black-color));
    }
}

@media only screen and (max-width:480px) {
    .tab-container {
        padding: 0;
    }

    .tabs-wrapper {
        max-width: 100%;
    }

    .tab-item .small-title {
        font-size: 1.3rem;
    }

    .tab-item .description {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--accent-green-color));
}

.footer-container {
    max-width: 140rem;
    padding: 0 5rem;
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 4rem;
    border-bottom: 1px solid rgb(var(--white-color), .7);
}

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

.footer-menu:first-child {
    width: 40%;
}

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

.footer-top li,
.footer-top a,
.footer-top p {
    color: rgb(var(--white-color), .7);
    font-weight: 400;
    font-size: 1.4rem;
}

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

.footer p.small-title {
    padding-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: 500;
    color: rgb(255, 208, 116);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: rgb(var(--white-color), .5);
}

.footer-bottom .circle-icon,
.footer-bottom .circle-icon:hover {
    color: rgb(var(--white-color));
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: 300;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    filter: invert();
}


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

    .footer-container {
        padding: 0 3rem;
    }

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

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

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

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

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

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
    }
}

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