* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #4891ff;
    --primary-color-light: #95bcf6;
    --primary-color-hover: #90b9f7;
    --light-color: #f4f4f6;
    --dark-color: #111;
    --primary-warning-color: #9f3131;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;  /* Full höjd på fönstret */
    font-family: poppins, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    scrollbar-gutter: stable;  /* Vad betyder detta.. ? */
    /* overflow-x: hidden; */
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
}

/* Navbar */
.navbar {
    height: 50px;
    margin-bottom: 30px;
    background: #e47056;
    position: relative;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar .main-menu ul {
    display: flex;
}

.navbar ul li a {
    padding: 10px 20px;
    display: block;
    font-weight: 600;
    transition: 0.5s;
}

.navbar ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.navbar .logo   {
    width: 33px;
    height: 45px;
    background: #fff;
    padding: 2px;
    border: 1px solid black;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 3px;
}






.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}



.hamburger-button .hamburger-line {
    width: 30px;
    height: 3px;
    background: #333;
    margin: 6px 0; 
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    margin-top: 100px;
    padding-right: 10px;
}

.mobile-menu li {
    margin: 10px 0;
}

.mobile.menu ul li a {
    font-size: 20px;
    transition: 0.3s;
}


main {
    flex-grow: 1;
}

section {
    border-bottom: 1px solid rgb(149, 3, 3);
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    justify-content: space-around;
}

footer  {
    height: 100px;
    position: relative;
}


/* SVG background design */
.custom-shape-divider-bottom-1753263051 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1753263051 svg {
    position: relative;
    display: block;
    width: calc(233% + 1.3px);
    height: 100px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1753263051 .shape-fill {
    fill: #CC4D4D;
}





/* Media Queries */

@media (max-width: 960px) {

}



/* Larger mobile devices */ 
@media (max-width: 670px) {
    .navbar .main-menu {
        display: none;
    }

    .navbar .hamburger-button {
        display: block;
    }

    /* Utility Classes */
    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .container-sm {
        min-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
    }

}

/* Smaller mobile devices */
@media (max-width: 500px) {

}


/* TOAST */  

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.toast.show {
  opacity: 1;
  pointer-events: auto;
}

