body {
    padding: 0;
    margin: 0;
    background-color: #6798C0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
/*SKIP TO MAIN CONTENT KNAPP START*/
.skipcontent {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 2rem 1rem;
  background-color: #6798C0;
  color: #FFF9F2;
  opacity: 0;
}
.skipcontent:focus {
  left: 40%;
  transform: translateX(-50%);
  transform: translateY(100%);
  opacity: 1;
}
/*SKIP TO MAIN CONTENT KNAPP SLUT*/
/*BANNER START*/
.banner {
  background: darkorange;
  padding: 10px;
}
.banner__text {
  text-align: center;
}
a {
  color: black;
}
/*BANNER SLUT*/

/*HEADER & NAVIGATION START*/
/*Logo och slogan*/
.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 150px;
  background-color: #FFF9F2;
  padding: 0 1em;
}
.logo h1, .logo h2{
  flex: 50%;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  padding: 0;
}
.logo h1 {
  font-size: 4rem;
  margin-top: 0;
  margin-bottom: 0;
}
.logo h2 {
  font-style: italic;
  padding: 0 0.5rem;
  margin-top: 0;
}
.logoLink{
  text-decoration: none;
 } 
/*navigation*/
.menu {
  display: flex;
  flex: 50%;
  justify-content: flex-end;
  align-items: center;

  text-align: right;
}
.menuItem {
  text-decoration: none;
  text-transform: uppercase;
  /*font-family: Verdana, Geneva, Tahoma, sans-serif;*/
  font-size: 1rem;
  font-weight: bold;
  padding-left: 1rem;
}
.menuItem:hover {
  color: darkorange;
  transition: ease 180ms;
}
@media (max-width: 550px) {
  .header {
    flex-direction: column;
    padding-bottom: 20px;
  }
}

@media (max-width: 550px) {
  .menu {
    flex-direction: column;
  }
}
/*HEADER & NAVIGATION SLUT*/

/*BILDSPEL START*/
.container {
  margin: 0;
  padding: 0;
}
.slider-wrapper {
    position: relative;
    max-width: 1400px; /*Max-width tar upp så mycket plats om det finns. Annars dynamiskt ändrar storleken mindre om det behövs. */
    margin: 0 auto; /*Topp och botten 0 och höger/vänster auto för att centrera sig.*/
  }
.slider {
    display: flex; /*Lägger bilderna i en row*/
    aspect-ratio: 64/27;
    overflow-x: auto; /*Stoppar bilderna från att överflöda horisontellt och får en scrollbar istället.*/
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth; /*En mjukare scroll*/
    /*border-radius: 0.7em 0.7em;*/
}
@media (max-width: 550px) {
  .slider {
    aspect-ratio: 5/4;
  }
}
.slider img {
    flex: 1 0 100%; /*flex-grow, flex-shrink, flex-basis*/
    /* 1 = alla bilder har samma storlek innuti behålaren. 0 = alla bilder behåller sin storlek och 
    inte wrap innehållet. 100% = Alla bilder har ursprungsstorleken 100%. */
    scroll-snap-align: start;
    object-fit: cover;
}
.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.slider-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}
.slider-nav a:hover {
    opacity: 1;
}
/*BILDSPEL SLUT*/

/*INTRODUKTION START*/
.introduktion {
  background-color: #FFF9F2;
  padding: 3rem 1rem;
  padding-top: 0;
  display: flex;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  text-align: center;
  color: #6798C0;
  justify-content: center;
  align-items: center;
}
.introduktion h3 {
  font-size: 4rem;
  padding: 0;
}
.introduktion p {
  font-size: 2rem;
  padding-bottom: 2rem;
}
.introduktion a, .resekort a {
  background-color: #6798C0;
  padding: 1rem;
  border-radius: 50px;
  border: 2px solid #6798C0;
  text-decoration: none;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  }
.introduktion a:hover, .resekort a:hover {
  background-color: #E2EACE;
  color: #6798C0;
  border: 2px solid #6798C0;
  transition: ease 200ms;
  cursor: pointer;
}
@media (max-width: 800px) {
  .introduktion h3 {
    font-size: 2rem;
    padding: 0;
  }
  .introduktion p {
    font-size: 1rem;
    padding-bottom: 2rem;
  }
  .introduktion a {
    font-size: 0.7rem;
  }
}
/*INTRODUKTION SLUT*/

/*REVIEWS START*/
.reviews {
  display: flex;
  flex-direction: row;
  padding: 1rem;
}
.reviews div {
  background-color: #000000;
  opacity: 0.25;
  border-radius: 50px;
  padding: 2rem;
  margin: 1rem;
  justify-content: space-evenly;
  align-content: center;
}
.reviews h4, .reviews p {
  opacity: 1;
  color: #FFF9F2;
  text-align: center;
}
.reviewRubrik {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF9F2;
  text-transform: uppercase;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: bold;
  font-size: 2rem;
}

@media (max-width: 800px) {
  .reviews {
    flex-direction: column;
    padding: 0.7rem;
  }
  .reviews div {
    padding: 1rem;
    margin: 0.7rem;
  }
  .reviews h4, .reviews p {
    font-size: 0.8rem;
  }
}

@media (max-width: 800px) {
  .reviewRubrik {
    font-size: 1.2rem;
  }
}
/*REVIEW SLUT*/

/*FRÅGEKNAPP START*/
.rounded-button {
  position: fixed;
  width: 60px;
  height: 60px;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  text-decoration: none;
  float: right;
  margin: 15px;
  right: 0;
  bottom: 50px;
  box-shadow: 0 0 50px #ccc;
 }
 .rounded-button:hover {
  background: darkorange;
 }
 /*FRÅGEKNAPP SLUT*/
 
/*FOOTER START*/
footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  background-color: #E2EACE;
  /*font-family: Verdana, Geneva, Tahoma, sans-serif;*/
}
footer p {
  font-size: 0.8rem;
}
@media (max-width: 800px) {
  footer {
    flex-direction: column;
    padding: 2rem;
  }
}
/*FOOTER SLUT*/

/*RESEPAKET*/
.resepaket {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  text-align: center;
  background-color: #FFF9F2;
}
.resekort {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0.5rem;
  padding: 2rem;
  max-width: 20rem;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  border: 5px solid #E2EACE;
  background-color: #FFF9F2;
  box-shadow: 2px 2px 10px #6798C0;
}
.resekort h3 {
  text-transform: uppercase;
  color: #6798C0;
}
.resekort p {
  padding: 0 1rem 0 1rem;
}
.resekort img {
  display: flex;
  max-width: 100%;
  height: auto;
}
.resekort li {
  text-align: left;
}
.resekort_knapp {
  display: flex;
  justify-content: center;
  align-content: flex-end;
  margin: 1rem;

}
@media (max-width: 1100px) {
  .resepaket {
    flex-direction: column;
  }
  .resekort {
    max-width: max-content;
  }
}
/*RESEPAKET SLUT*/
/*BOKNINGSSIDA START*/
.book-trip h3 {
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: bold;
  font-size: 2rem;
  color: #FFF9F2;
}

form {
  background-color: #FFF9F2;
  overflow: hidden; /*Fixar problem med bakgrundsfärgen*/
  display: grid;
  grid-gap: 1rem;
  /*grid-template-rows: [top-start] 400px [bottom-start] 250px;*/
  grid-template-columns: 1fr 1fr;
  /*justify-content: center;*/
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /*För responsivitet*/
}

fieldset {
  margin: 2rem;
  border-radius: 10px;
  background-color: #FFF9F2;
  border: 5px solid #E2EACE;
  box-shadow: 2px 2px 10px #6798C0;
}

legend {
  text-align: center;
  font-weight: bold;
}

.travel {
  grid-row: 1;
  grid-column: 1;
}

.contact-info {
  grid-row: 1;
  grid-column: 2;
}

.exclusive-offer {
  grid-row: 2;
  grid-column: 1;
}

.booking {
  grid-row: 2;
  grid-column: 2;
  text-align: center;
}
@media (max-width: 800px) {
  form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  fieldset {
    display: flex;
    flex-direction: column;
  }
}
button {
  background-color: #6798C0;
  padding: 1rem;
  border-radius: 50px;
  border: 2px solid #6798C0;
  text-decoration: none;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  }

  button:hover {
  background-color: #E2EACE;
  color: #6798C0;
  border: 2px solid #6798C0;
  transition: ease 200ms;
  cursor: pointer;
  }

img.boka-resa {
  width: 100%;
  height: auto;
}
/*BOKNINGSSIDA SLUT*/

