/* Monem Food AB */

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 231, 186, 9;
    --secondary-color: 138, 145, 131;

    --pink-accent-color: 221, 171, 182;

    --black-color: 17, 17, 17;
    --gray-color: 107, 100, 87;
    --gray-dark-color: 77, 68, 58;
    --gray-light-color: 244, 241, 235;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --section-width: 130rem;
    --col-padding: 3rem;
    --top-header-height: 4rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 980;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--secondary-color);
    --menu-color: var(--gray-light-color);
}

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

/* Layout
========================================================================== */
body {
    background-image: url('/assets/images/bistro-kok-2000px.jpg');
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
}

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

.section-block {
    padding: 10rem 5rem;
}

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

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

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

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}

/* Ovriga klasser */
.align-center {
    align-items: center;
}

@media only screen and (hover:none) {
    body {
        background-attachment: scroll;
        background-position: top center;
        background-size: auto 100vh;
    }
}

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

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

/* Text och typsnitt
========================================================================== */
body {
    font-family: "Work Sans", sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: .5em;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgb(var(--gray-dark-color));
}

.section-title {
    padding-bottom: .5em;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Antonio", sans-serif;
    color: rgb(var(--gray-dark-color));
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    font-family: "Antonio", sans-serif;
    color: rgb(var(--gray-dark-color));
}

/* Brodtext och lankar */
p,
li {
    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: 1000px) {

    /* Rubriker */
    .section-title {
        font-size: 4rem;
    }

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

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

    /* Rubriker */
    .section-title {
        font-size: 3.5rem;
    }

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2rem;
    margin: 7px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: .5rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .4s ease;
}

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

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

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

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

/* 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(--gray-light-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

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

.circle-icon em:before,
.circle-icon i:before {
    font-size: var(--base-size);
}

@media only screen and (max-width: 480px) {
    .btn {
        width: 100%;
        margin: 0;
    }
}

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

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

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

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

/* Grafiska element
========================================================================== */
/* Borders */
.border-dotted-pink {
    border: 2px dotted rgb(var(--pink-accent-color));
    padding: 2rem;
    border-radius: .5rem;
}

.border-bottom-dotted-primary {
    border-bottom: 2px dotted rgb(var(--primary-color));
}

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

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

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

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

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

/* Card 2-4 */
.cards-wrapper.card-2-4 .card-item {
    display: flex;
    border-radius: .5rem;
    margin: 0;
}

.card-2-4 a.card-item:hover {
    background: rgba(var(--gray-color), .1);
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.card-2-4 .card-header i {
    font-size: 3rem;
}

.card-2-4 .card-body {
    padding: 2rem;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    border-radius: .5rem;
    background-color: rgb(var(--gray-light-color));
    overflow: hidden;
}

.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: 1300px) {
    .split-content {
        padding: 3rem;
    }
}

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

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

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

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

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

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

/* Header / Navigation
========================================================================== */
header {
    box-shadow: 0 2px 5px rgba(var(--black-color), 0.1);
    background-color: rgb(var(--secondary-color));
}

header:not(.scrolled) {
    box-shadow: none;
    background-color: transparent;
}

/* Top header */
/* .top-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: var(--section-width);
    height: var(--top-header-height);
    padding: .5rem 0;
    margin: 0 auto;
    border-bottom: 1px solid rgba(var(--gray-light-color), .5);
    overflow: hidden;
    transition: .3s ease;
}

.top-header p {
    padding: 0 5px 0 0;
    font-size: 1.4rem;
    color: rgb(var(--gray-light-color));
}

.top-header a {
    display: flex;
    align-items: center;
    margin: 0 8px;
    font-size: 1.4rem;
    text-decoration: none;
    transition: .2s ease;
    color: rgb(var(--gray-light-color));
}

.top-header a:hover {
    color: rgb(var(--primary-color));
}

.top-header div {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin-right: 4px;
    border-radius: 50%;
} */

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

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

/* Nav */
.TemplateMenu a {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgb(var(--gray-light-color));
}

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

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

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

header:not(.scrolled) .header-cta-wrapper .btn:hover {
    color: rgb(var(--white-color))
}

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

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

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: 85vh;
    margin-top: calc(-1 * var(--menu-height));
    /* margin-top: calc(-1 * (var(--menu-height) + var(--top-header-height)));*/
    background-color: rgb(var(--black-color), .7);
}

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

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

.top-section .section-title {
    font-size: 6rem;
    font-weight: 500;
    color: rgb(var(--gray-light-color));
}

.top-section .small-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: rgb(var(--gray-light-color));
}

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

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

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

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

/* Meny
========================================================================== */
.section-menu {
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgb(var(--black-color), .7) 10rem, rgb(var(--gray-light-color)) 10rem);
}

/* Tab */
.tab-container {
    position: relative;
    padding: 4rem;
    border-radius: .5rem;
    background-color: rgb(var(--gray-light-color));
    border: 2px dotted rgb(var(--primary-color));
}

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

.tab-col {
    width: calc((100% / 2) - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tab-heading {
    padding: 2rem;
    border-radius: .5rem;
    background-color: rgba(var(--secondary-color), .3);
}

.tab-heading .section-title {
    padding: 0;
    line-height: 1;
}

.tab-col .text-label {
    padding: 1rem 0 0;
    color: rgb(var(--gray-color));
}

.tab-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 3.5rem;
}

.tab-container .small-title {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    letter-spacing: .2rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.dots {
    flex: 1;
    margin: 0 0.5rem;
    border-bottom: 2px dotted rgb(var(--gray-color));
}

.tab-item .description {
    padding: 0;
    font-size: 1.4rem;
    color: rgb(var(--gray-color));
}

/* 2 kolumner */
.section-menu .tab-container .extras-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 1rem;
}

.section-menu .extras-wrapper.w-50 .col-item {
    width: calc((100% / 2) - 2rem);
}

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

    /* 2 kolumner */
    .section-menu .extras-wrapper.w-50 .col-item {
        width: 100%;
    }
}

@media only screen and (max-width: 1000px) {
    .section-menu {
        background-image: linear-gradient(to bottom, rgb(var(--black-color), .7) 8rem, rgb(var(--gray-light-color)) 8rem);
    }

    .tab-col {
        width: 100%;
    }

    .tab-col:not(:first-of-type) {
        padding-top: 4rem;
    }

    .tab-container {
        padding: 3rem;
    }

    /* 2 kolumner */
    .section-menu .extras-wrapper.w-50 .col-item {
        width: calc((100% / 2) - 2rem);
    }
}

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

    /* 2 kolumner */
    .section-menu .extras-wrapper.w-50 .col-item {
        width: 100%;
    }
}

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

    .tab-item {
        padding-bottom: 3rem;
    }

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

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

/* Oppettider / Kontaktuppgifter
========================================================================== */
.section-optimes .block-object {
    width: 80%;
    margin: 0 auto;
}

/* Card-optimes */
.card-optimes .card-item .card-body {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.card-item .card-divider {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 2px;
    height: 3rem;
    border-left: 2px dotted rgb(var(--primary-color));
}

.card-body .date,
.card-body .time {
    text-align: center;
}

.card-body .date,
.card-body .time {
    width: calc(50%);
}

@media only screen and (max-width: 1150px) {
    .section-optimes .block-object {
        width: 90%;
    }
}

@media only screen and (max-width: 980px) {
    .section-optimes .col-0 {
        margin-bottom: 4rem;
    }

    .section-optimes .block-object {
        max-width: 53rem;
        width: 90%;
    }
}

/* Kontaktformular
========================================================================== */
.ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 3rem;
    border: 2px dotted rgb(var(--primary-color));
    border-radius: .5rem;
}

.ContactForm div {
    width: 49%;
}

.ContactForm .textarea-field {
    width: 100%;
}

.ContactForm p {
    display: none;
}

.ContactForm p::after {
    font-size: 1.4rem;
}

.ContactForm input[type="text"],
.ContactForm input[type="email"],
.ContactForm input[type="tel"],
.ContactForm input[type="datetime-local"],
.ContactForm input[type="number"],
.ContactForm textarea {
    border: none;
    border-bottom: 2px dotted rgb(var(--primary-color));
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm input[type="datetime-local"]:not(.illegal),
.ContactForm input[type="number"]:not(.illegal),
.ContactForm textarea:not(.illegal) {
    background-color: transparent;
}

.ContactForm .submit-button-container {
    width: 100%;
    margin: 0;
}

.ContactSubmit {
    margin: 0;
}

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

    .section-form .section-title,
    .section-form p {
        text-align: center;
    }

    .ContactForm {
        margin-top: 4rem;
    }
}

@media only screen and (max-width: 600px) {
    .ContactForm div {
        width: 100%;
    }
}

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

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

.footer-menu {
    width: 20%;
}

.footer-menu .logo-item {
    height: 8rem;
}

.footer-menu .logo-item img {
    height: 100%;
}

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

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
}

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

.footer-top li,
.footer-top p:not(.text-label),
.footer-top a {
    color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

.footer-top a {
    transition: .2s ease;
}

.footer a:hover:not(.circle-icon) {
    color: rgb(var(--primary-color));
    text-decoration: none;
}

.footer-top em {
    width: 2rem;
    margin-right: 5px;
    font-size: 1.4rem;
    text-align: center;
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    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: 48%;
        margin: 0 0 5rem;
    }

    .footer-menu:nth-child(1) {
        width: 100%;
    }
}

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

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

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

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

    /* Footer top */
    .footer-menu {
        margin: 0 0 3rem;
    }

    /* Social Menu */
    .social-menu {
        justify-content: center;
    }

    .social-menu li {
        margin: 1rem 5px;
    }

    .social-menu a {
        font-size: 1.2rem;
    }

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

    .footer-bottom p,
    .footer-bottom a {
        font-size: 1.3rem;
    }

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