
:root{
    --broedtekst: #000;
    --hover: #D31212;
    --footer: #EEEEEE;
    --button: #e31313;

    --font-regular: "poppins", sans-serif;
    --weight-regular: 400;
    --weight-semibold: 600;
    --weight-bold: 700;
    --style-normal: normal;
    
    /* Font size */
    --fs-rubrik: 28px;
    --fs-underrubrik: 24px;
    --fs-button: 20px;
    --fs-body: 16px;
}

/*Body*/
body{
    width: 100%;
    margin-top: 10;
    margin-bottom: 0;
    margin-left:0;
    margin-right: 0;
    font-family: "poppins";
}
/* HEADER */
.cart-icon {
    display: flex;
    align-items: center;
    padding-right: 60px;  /* Default padding for larger screens */
}

.cart-icon img {
    width: 24px;
    height: auto;
}

.nav-logo img {
    height: clamp(55px, 5vw + 30px, 60px);
    width: auto;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 78px;
    background: white;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -1;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
    mix-blend-mode: multiply;
}

.nav-logo {
    margin-left: 60px;
}

.nav-links {
    margin-left: auto;
    margin-right: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    /* Positioning */
    position: relative;
    display: grid;
    place-items: center;
    width: fit-content;
    
    /* Typography */
    font-family: var(--font-regular);
    font-size: 20px;
    font-weight: var(--weight-regular);
    text-decoration: none;
    
    /* Colors */
    color: var(--color-text);
    /* Transitions */
    transition: color 0.3s ease;
}

/* Create a hidden bold version that reserves space */

.cart-icon img {
    width: auto;
    height: 24px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-icon a:hover img {
    filter: invert(19%) sepia(91%) saturate(1184%) hue-rotate(354deg) brightness(85%) contrast(105%);
}


.nav-links a:hover {
    color: var(--color-red);
}

/* Active state */
.nav-links a.active {
    color: var(--color-red);
}

/* Cart icon styles */
.nav-links img {
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
    stroke-width: 0;
    stroke: var(--color-red);
}

.nav-links img:hover {
    filter: invert(19%) sepia(91%) saturate(1184%) hue-rotate(354deg) brightness(85%) contrast(105%);
    transform: scale(1.05);
}

.nav-logo a {
    display: inline-block;
    text-decoration: none;
}

.nav-logo img {
    display: block; /* Removes any unwanted space below the image */
}

.burger-menu {
    cursor: pointer;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.burger-menu div {
    width: 100%;
    height: 2px;
    background-color: black;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}



/* Fonts */
@font-face {
    font-family: "poppins";
    src: url(/fonts/Poppins/Poppins-Regular.ttf);
}


/* MAIN */
main{
    width: 91%;
    height: 100%;
    padding-top: 78px; /* Height of fixed header */
    padding-left: 55px;
}
h2 {
    font-size: 28px;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

img{
    border-radius: 4px;
}

.overskrift {
width: 100%;
text-align: center;
padding-bottom: 4rem;
}

.pasfoto {
display: flex;
width: 100%;
justify-content: space-evenly;
padding-bottom: 10rem;
}

#pas {
    width: 40%;
}

.pasfototekst {
    margin-top: 3%;
    margin-left: 10%;
}

.pasfotopriser {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    padding-bottom: 8rem;

}
.pasfotopriser img {
    margin-left: 5%;
    width: 40%;
}
.pasfotoprisertekst {
    margin-left: 10%;
}

.analog {
    width: 100%;
    display: flex;
}

.analog h2 {
    margin-top: 5%;
    margin-left: 5%;
    font-size: 28px;

}

.analog img{
    width: 50%;
    height: 100%;
    justify-content: left;
    padding-bottom: 3rem;
    padding-right: 5rem;
}

.analog_section{
    display: block;
    justify-content:center;
    text-align: left;
    height: 50px;
    width: 100%;
    padding-bottom: 15rem;
}
.analogpriser_section{
    display: flex;
    justify-content:center;
    text-align: left;
    width: 100%;
    padding-bottom: 10rem;
}
.analogpriser {
    display: flex;
    justify-content: space-evenly;
    width: 60%;
}

/* FOOTER */
footer{
    background-color: var(--footer);
    background-size: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    font-family: "poppins";
}

#top{
    width: 100%;
    display: flex;
    padding-left: 60px;

}
#bottom{
    width: 200px;
    display: flex;
    justify-content: space-between;
    padding-left: 60px;
}

#description{
    padding-left: 10px;
    padding-right: 40px;
}

#description_textbox{
    width: clamp(600px, 100%, 400px);
}
#description h2{
    width: 400px;
}
#description_text{
    text-align:justify;
    width: clamp(400px, 70%, 400px);
}

#de3{
    display: grid;
    grid-template-columns: repeat(3, 230px);
    row-gap: 3rem;
    column-gap: 1rem;
    justify-content: center;
    overflow-x: visible;
    text-align: left;
    width: clamp(600px,100%,1200px);
}
#adresse{
    width: 100%;
    display: block;
    justify-content: flex-start;
}
#aabningstider{
    width: 100%;
    height: 100%;
    display: block;
}

#kontakt{
    width: 100%;
    display: block;
    justify-content: center;
}
@media only screen and (min-width: 500px){
    
    #kontakt2 {
        display: none;
    }
    #pas2 {
        display: none;
    }
    .mobile-drawer {
        display: none;

}
.burger-menu {
    display: none;
}
}

  @media only screen and (max-width: 830px) {
.mobile-drawer {
    display: none;
}
    #pas2 {
        display: none;
    }
    .pasfoto img{
        width: 90%;
        margin-top: 10%;
        margin-bottom: 10%;
    }
    .pasfotopriser img{
        width: 50%;
    }
    .analog {
        width: 100%;
        display: flex;
    }
    
    .analog h2 {
        font-size: 28px;
    }
    
    .analog img{
        width: 90%;
        padding-bottom: 3rem;
        padding-right: 5rem;
        margin-top: 7%;
    }
    .analog_section{
        display: flex;
        justify-content:center;
        height: 50px;
        width: 100%;
        padding-bottom: 15rem;
    }
    .analogpriser_section{
        display: flex;
        text-align: left;
        width: 100%;
        padding-bottom: 10rem;
    }
    .analogpriser {
        display: flex;
        width: 100%;

    }

    /* FOOTER */
    footer{
        background-size: 100%;
        width: 100%;
        height: 100%;
        font-size: 15px;
        display: grid;
    }

    #top{
        width: 100%;
        display: flex;
        text-align: center;


    }
    #bottom{
        width: 200px;
        display: block;
        justify-content: space-between;
        padding-left: 0px;
        text-align: right;
    }

    #description{
        padding-left: 10px;
        padding-right: 40px;
        text-align: center;
        display: block;
        width: clamp(600px, 100%, 400px);
    }
    #de3{
        grid-template-columns: repeat(1, 230px);
        justify-content: center;
    }

    #description_textbox{
        text-align: center;
        padding-left: 5vw;
        padding-right: 12vw;
    }
    #description h2{
        width: 400px;
    }
    #description_text{
        text-align:justify;
        width: clamp(400px, 40vw, 400px);
    }

    #adresse{
        width: 100%;
        display: block;
        justify-content: flex-start;
    }
    #aabningstider{
        width: 100%;
        height: 100%;
        display: block;
    }
    }


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

    .navbar {
        justify-content: center;
        position: relative;
        padding: 0 20px;
        min-width: auto;
    }
    .content-section {
        gap: 40px;
    }
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
        position: absolute;
        left: 30px;
    }

    .nav-logo {
        margin: 0;
    }

    .nav-links a {
        margin: 0;
    }

    .cart-icon {
        position: absolute;
        right: 20px;
        padding-right: 30px; 
    }
    .navbar {
        width: 100%;
    }
    .nav-logo img {
        height: clamp(40px, 5vw + 15px, 45px);
    }

    .cart-icon {
        right: 10px;
    }

    .burger-menu {
        left: 10px;
    }
  
    h2 {
        font-size: 18px;
    }
    
    p {
        font-size: 14px;
    }

    .pasfoto {
        display: inline;
    }

    #pas2 {
        width: 100%;
       
    }

    #pas {
        display: none;
    }
    

    .pasfototekst {
       width: 100%;
        
    }


    .pasfotopriser {
        display: inline;
        width: 100%;
        padding-bottom: 8rem;
    
    }
    .pasfotopriser img {
        width: 80%;
    }
    .pasfotoprisertekst {
        margin-left: 10%;
    }
    .analog {
        width: 100%;
        display: inline;
    }
    
    .analog h2 {
       justify-content: center;
        font-size: 18px;
    }
    
    .analog img{
        width: 80%;
        height: 100%;
        justify-content: center;
        padding-bottom: 3rem;
        padding-right: 5rem;
    }
    
    .analog_section{
        display: flex;
        justify-content:center;
        height: 50px;
        width: 100%;
        padding-bottom: 15rem;
    }
    .analogpriser_section{
        display: flex;
        justify-content:center;
        text-align: left;
        width: 100%;
        padding-bottom: 10rem;
    }
    .analogpriser {
        display: flex;
        width: 100%;

    }

    /* FOOTER */
    footer{
        background-size: 100%;
        width: 100%;
        height: 100%;
        font-size: 15px;
        display: grid;
    }

    #top{
        width: 100%;
        display: grid;
        text-align: center;
        padding-bottom: 12vw;

    }
    #bottom{
        width: 200px;
        display: block;
        justify-content: space-between;
        padding-left: 0px;
        text-align: center;
    }
    #bottom p{
        width: 398px;
    }

    #betalingsmetoder{
        justify-content: center;
        padding-left: 12vw;
        padding-right: 12vw;
    }
    #description{
        width: 100%;
        padding-left: 10px;
        padding-right: 40px;
        text-align: center;
        display: block;
        width: clamp(600px, 100%, 400px);
    }

    #description_text{
        text-align:justify;
        width: 80vw;
        justify-content: center;
        width: clamp(400px, 40vw, 400px);
    }

    #de3{
        grid-template-columns: repeat(1, 230px);
        justify-content: center;
    }
    

    #adresse{
        width: 100%;
        display: block;
        justify-content: flex-start;
    }
    #aabningstider{
        width: 100%;
        height: 100%;
        display: block;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--color-background);
        z-index: 999;
        transition: left 0.3s ease;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
        padding-top: 100px;
    }
    
    .mobile-drawer, .active {
        left: 0;
    }
    
    .mobile-drawer, .nav-links {
        flex-direction: column;
        margin: 0;
        padding: 20px;
        gap: 20px;
    }
    
    .mobile-drawer, .nav-links a {
        font-size: 18px;
        width: 100%;
        text-align: left;
    }
    
    /* Overlay for when drawer is open */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
   
  }
    

  