


body {
       font-family: "Poppins", serif;
    font-size:16px;
}


::selection {
  background-color: #000; /* Bakgrundsfärg på den markerade texten */
  color: #fff; /* Textfärg på den markerade texten */
}

/* --------------------------------------------------------------------------
   Start page Styles
   -------------------------------------------------------------------------- */

h1{
    font-weight:600;
font-style: normal;


}


h2{
    font-weight: 600;
font-style: normal;


}

p{
  font-family: "Poppins", serif;

Color: #134039;
Line-height: 1.6em;
Font-weight: 400;

}

h3
{
    font-weight: 600;
font-style: normal;


}



 /* BILDSPEL */
      .gallery-wrapper {
        overflow: hidden;
        position: relative;
      }

      .gallery {
        display: flex;
        gap: 10px;
        animation: scroll 40s linear infinite;
        width: max-content;
      }

      .thumbnail {
        width: 100px;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
      }

      @keyframes scroll {
        0% {
          transform: translateX(0%);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      /* Dubbel uppsättning bilder för oändlig loop */
      .gallery-wrapper-inner {
        display: flex;
        width: max-content;
      }


@media (max-width: 768px) {
  
  .thumbnail {
        width: 80px;
        height: 96px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
      }
  }
}

 /* BILDSPEL slut */


/* --------------------------------------------------------------------------
   Navbar Styles
   -------------------------------------------------------------------------- */
.navbar {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; margin: 0; padding:5px;

}

.center-navbar {
  width: 100%;
  text-align: center;
}

.center-navbar > li {
  display: inline-block;
  float: none;
}


.navHeader {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    margin: auto;
    padding: 0px 0px;
}

.navbar .navbar-header,
.navbar .collapse.navbar-collapse in,
.navbar .navbar-nav > li > div {
    margin-left:30px;
    margin-top: 15px;
    margin-bottom: 15px;
    
    
}

.navbar .navbar-nav > li {
    margin-top: 10px;
    margin-bottom: 15px;

}

.navbar .navbar-nav > li > a {
   
   color:#082023;
     font-weight:600;
    background-color:  none;
    font-size: 20px;
    Padding: 8px 20px;

    text-decoration: none;
}

.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus 
{
text-decoration:underline;
 text-underline-offset: 4px;
text-decoration-color:#712525;
background-color:transparent;

}


.navbar .navbar-nav > li.mainMenuSelected > a {

    text-decoration:underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
text-decoration-color:#712525;

}

#navbar-holder {
    display: flex;
    justify-content: space-between;
}

 @media (max-width: 768px) {
     #navbar-holder {
        flex-direction: column; 
     }
 }


@media (max-width: 767px) {
    .navbar .navbar-nav > li > a {
        
        font-size: 22px;
        padding: 5px 10px;
        margin:30px 3vw 30px 3vw;
        text-align:center;

    }
    
    .navbar-right {
        text-align:right;
        
        
    }
}
 

.mainFooter {
    color: white;
    padding: 10px; 
    /*background: linear-gradient(to right, rgb(245, 110, 189), rgb(249, 209, 100));*/
    background: #712525;
}

.footer-logo {
    width: 300px; /* Default size */
}

@media (max-width: 910px) {
    .footer-logo {
        width: 200px; /* Smaller size for mobile */
    }

.navbar-nav {
    text-align:center;
    margin:0px;
}


}

/* --------------------------------------------------------------------------
   Well Styles
   -------------------------------------------------------------------------- */
.well {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: box-shadow 0.3s ease;
}
.offer-box {
             max-width: 400px;
            background: #f8f9fa;
            border: 2px solid #ccc;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
            
        }
        .offer-title {
            font-size: 24px;
            font-weight: bold;
            color: #d9534f;
            margin-bottom: 10px;
        }
        .offer-text {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
        }
        .offer-price {
            font-size: 20px;
            font-weight: bold;
            color: #5cb85c;
        }