:root{
    --padding: 20px;
    --shade1:#B65B11;
    --shade2:#92480D;
    --shade3:#DB6D14;
}
*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    max-width: 100%;
}

body{
    /* margin: 0;
    padding:0; */
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    background: #92480D;
    background: linear-gradient(180deg, rgba(146, 72, 13, 1) 0%, rgba(219, 109, 20, 1) 12%, rgba(182, 91, 17, 1) 100%);
}

.container{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* height: 200vh; */
}


.pris{
    font-weight: 700;
    text-align: center;
}


/*AI GENERATED*/
.divider {
    --thickness:2px;
    --divider-gap:12px;
    display: flex;
    align-items: center;
    gap: var(--divider-gap);
    margin: 2rem 0;
    font-weight: 600;
  }
  

.divider::before{
    content: "";
    flex: 1;
    height: var(--thickness);
    background: linear-gradient(to right, transparent, var(--shade2));
}

.divider::after{
    content: "";
    flex: 1;
    height: var(--thickness);
    background: linear-gradient(to left, transparent, var(--shade2));
}


.menu-divider{
    width: 100%;
}

main{
    padding: 10px;
}

/* Header */
header.header {
    font-size: 2em;
    padding: var(--padding);
    text-align: center;
    /* border-bottom: 1px solid var(--shade2); */
    margin-bottom: 25px;
    color: white;
    background-image: url(./images/kafe.png);
    background-position: center;
    background-size:cover;
    text-shadow: 2px 2px black;
}

header h1{
    vertical-align: top;
    backdrop-filter: blur(2px);
    border-radius: 6px;
}

 nav{
    display: flex;
    justify-content: space-evenly;
}
nav a{
    color: white;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 6px;
}

nav a:hover{
    /* background-color: gray; */
    /* backdrop-filter: blur(2px);
    background-color: rgba(219, 109, 20, .3); */
}


#hero p{
    text-align: center;
}
/* End Header */


/* Dagens */

#dagens{
    /* background-color: blue; */
    height: 200px;
    display: flex;
    justify-content:space-evenly;
    padding: 10px;
    background-color: var(--shade1);
    border-radius: 6px;
}

#dagens dl{
    flex-grow: 2;
    padding: 10px;
}
#dagens img{
    object-fit:cover;
    /* height: inherit; */
    flex-grow: 1;
    border-radius: 6px;
}

section.dagens{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-image: url(./images/dagens.png); */
    background-position: center;
    background-size: cover;
    color: white;
    border-radius: 15px;
    /* margin: auto auto auto auto; */
    margin: auto;
    text-shadow: 2px 2px black;
}
.dagens img{
    height: 20%;
    width: 20%;
}


.dagens-card{
    /* border-top: solid 1px var(--shade2); */
    /* border-bottom: solid 1px var(--shade2); */
    
    justify-items: center;
}

.dagens-card header{

    text-align: center;
}


.dagens article{
    /* border: 1px solid var(--shade2); */
    /* border-bottom: 1px solid var(--shade2); */
    padding: 25px;

}
/* End Dagens */



/* kaffe-meny  */
.kaffe-meny{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid var(--shade2);  */
}
.menu-item{
    border-bottom: 1px solid var(--shade2);
    padding: 25px;
    margin: 25px;
}

.menu-item:last-child{
    border-bottom: 0;
    margin-bottom: 10px;
    
}
.menu-item header{
    text-align: center;
    text-decoration: underline;
}

img.item-image{
    min-width: 25px;
    min-height: 25px;
}
/* End kaffe-meny */




.kaffe-meny,.dessert-meny,.frokost-meny{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--shade1);
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: var(--shade1);

    /* box-shadow: 5px 5px var(--shade2); */
}


/* Footer */
main section:last-child{
    margin-bottom: 100px;
}
footer{
    font-size: .7rem;
    padding: 0px var(--padding);
    display: flex;
    flex-direction: row;
    border-top: 3px solid var(--shade2);
    justify-content: space-evenly;
}

.contact ul{
    list-style-type: none;
    text-align: left;
}
.opening-hours ul{
    list-style-type: none;
}
/* End Footer */


@media (min-width:1000px) {

    /* .menu-divider{
        border-top: 2px solid var(--shade2);
    } */

    footer{
        justify-content: space-around;
        font-size: 1rem;
    }

    main{
        width: 50%;
        margin-left: 25%;
    }
}