/** Shopify CDN: Minification failed

Line 140:7 Expected ":"

**/
/* Se till att html och body inte har några default-marginaler och har svart bakgrund */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000; /* Ändra om du önskar en annan färg */
}

/* Dölj meny-elementen */
.leftSection,
.rightMenu,
.breadcrumbs,
.siteBasket {
  display: none !important;
}

/* Gör att appContainer och page fyller hela viewporten */
.appContainer,
.page {
  width: 100vw !important;
  height: 100vh !important;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Tvinga rightSection (där welcome ligger) att fylla hela skärmen */
.rightSection.u-pull-right {
  float: none !important;
  width: 100% !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Se till att övergripande container för bild och welcome fyller hela ytan */
#pictureWall,
#zoomElement,
#welcome,
#backgroundSelection {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

/* #welcome: bakgrundsbilden ska täcka hela området */
#welcome,
#backgroundSelection {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* startPanel ska täcka hela #welcome och centrera innehållet */
#welcome .startPanel,
#backgroundSelection .startPanel {
  background: rgba(0, 0, 0, 0.69);
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centrera vertikalt */
  align-items: center;     /* centrera horisontellt */
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Rubrik och text-stilar */
#welcome .topHeading,
#backgroundSelection .topHeading {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 100;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

#welcome .heading,
#backgroundSelection .heading {
  font-family: "Fanwood+Text", serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 100;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

#welcome .text,
#backgroundSelection .text {
  font-size: 15px;
  max-width: 76%;
  margin: 0 auto;
}


.startButton:hover {
  transition: transform 0.5s ease;
  transform: scale(1.10); /* Liten förstoring vid hover */
}


#welcome .startButton,
#backgroundSelection .startPanel .startButton {
  margin-top: 27px;
  font-size: 14px;
  padding: 12px 33px;
  font-weight: bold;
}

/* Responsiva anpassningar */
@media screen and (max-width: 844px) {
  #welcome .topHeading,
#backgroundSelection .topHeading {
    font-size: 18px;
    margin-bottom: 4px;
  }
  #welcome .heading,
#backgroundSelection .heading {
    font-size: 20px;
    margin-bottom: 14px;
  }
  #welcome .text,
#backgroundSelection .text {
    font-size: 13px;
  }
  #welcome .startButton,
#backgroundSelection .startButton {
    font-size: 12px;
    padding: 10px 30px;
  hover
  }
}

/* Extra anpassning för mycket korta skärmar */
@media (max-width: 844px) and (max-height: 250px) {
  #welcome .topHeading,
#backgroundSelection .topHeading {
    margin-bottom: 0;
    margin-top: 10px;
  }
  #welcome .heading,
#backgroundSelection .heading {
    margin-bottom: 7px;
  }
  #welcome .startButton,
#backgroundSelection .startButton {
    margin-top: 10px;
  }
}

/* För skärmar med höjd 550px eller mindre: */
@media screen and (max-height: 550px) {
  /* Justera de övergripande containrarna för att undvika extra svart yta */
  .appContainer,
  .page,
  .rightSection.u-pull-right,
  #pictureWall,
  #zoomElement,
  #welcome,
  #backgroundSelection {
    height: 100%;        /* Låt höjden anpassa sig till innehållet */
    min-height: 100%;   /* Men tvinga ändå att minst fylla hela viewporten */
  }
}

