@import url('https://fonts.cdnfonts.com/css/pp-neue-montreal');


body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

form {
  display: flex;
  flex-direction: column;
  align-items: left;
}

form label {
  margin-bottom: 8px;
  color: #fdf8ee;
}

.mailerlite-form-title {
  display: none !important;
}

.mailerlite-subscribe-button-container {
  display: flex;
  align-items: left !important;
  justify-content: left;
}

.mailerlite-subscribe-submit {
  padding: 12px 30px !important;
  border-radius: 50px !important;
  margin-top: 20px;
  transition: ease 0.5s;
}

.mailerlite-subscribe-submit:hover {
  transform: scale(0.92);
}

.mailerlite-form-field label {
  color: #000;
}

details {
  border-bottom: 1px solid #390003;
  padding-bottom: 0.8em;
  padding: 1em;
  color: #310B06;
  font-family: roboto, sans-serif;
  font-size: 20px;
}

summary {
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #fff;
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::marker {
  display: none;
}

.accordion .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Snurra pilen om öppet */
details.accordion[open] .arrow {
  transform: rotate(180deg);
  /* Snurra pilen om öppet */
  transition: transform 0.3s ease;
}

/* Ny wrapper för animering */
.details-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  font-weight: 500 !important;
}

details[open] {
  background-color: #ffffff80;
  border-radius: 5px;
}

details[open] .details-content {
  max-height: 500px;
  /* eller ett värde som passar innehållet */
  opacity: 1;
}


/* Stil på innehållet */
.details-content p {
  margin-top: 1em;
  letter-spacing: 1.5px;
  font-size: 1em;
  font-weight: 300;
}

.accordion .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
  float: right;
}


.color-section {
  filter: grayscale(100%);
  transform: scale(1);
  transition: filter 0.3s ease, transform 0.8s ease;
}

.color-section.active-section {
  filter: grayscale(0%);
  transform: scale(1);
}

.mini-section {
  filter: grayscale(100%);
  transform: scale(1);
  transition: filter 0.3s ease, transform 0.8s ease;
}

.active-mini {
  filter: grayscale(0%);
  transform: scale(1);
}


/*HUVUDMENY*/
#startNav .menu,
#startNav .menu a {
  color: #fff !important;
}


.largeNav {
  position: relative;
  right: 0;
  margin: 50px 100px 0 0;
}

.largeNav ul {
  margin-right: 20px;
  list-style-type: none;
  display: flex;
  justify-content: right;
}

.largeNav li {
  z-index: 200;
  position: relative;
  margin: 0 0.5rem;
}

.largeNav a {
  color: #000;
  padding: 0.5rem 1rem;
  font-family: "neue montreal", sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  text-decoration: none;
  transition: all .4s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.largeNav a:hover {
  color: #000;
  text-decoration: underline;
}


/* Sub-menyns grundinställningar */
.largeNav .sub-menu {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  animation: submenuAnimation 0.4s ease-out forwards;
  transform-origin: top;
  /* Animation växer från toppen */
  z-index: 9999;
  text-align: right;
}

#menu-item-325,
#menu-item-326 {
  text-align: left;
  transform: translateX(0px);
}

@keyframes submenuAnimation {
  from {
    opacity: 0;
    transform: scaleY(0) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }
}

.largeNav .sub-menu li {
  margin: 1rem 0rem;
  width: 100%;
  transform: translateX(-17px);

}


/* Föräldraelementet som håller sub-menyn */
.largeNav .menu-item-has-children {
  position: relative;
}

/* Sub-menyn döljs från början */
.largeNav .menu-item-has-children>.sub-menu {
  display: none;
  position: absolute;
  top: 50%;
  /* Placera sub-menyn direkt under föräldern */
  left: 0;
  width: fit-content;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Gör sub-menyn synlig vid hover på föräldern */
.largeNav .menu-item-has-children:hover>.sub-menu,
.largeNav .menu-item-has-children:focus-within>.sub-menu {
  display: block;
  visibility: visible;
  opacity: 1;
}


/* Sub-menyn vid hover på länk */
.largeNav .menu-item-has-children a:hover {
  text-decoration: underline;
}


/*MOBILMENY*/
#mobile-menu-toggle {
  display: block;
  position: fixed;
  border: 1px solid #000;
  background-color: #fdf8eeed !important;
  border-radius: 60px !important;
  padding: 10px;
  background-color: transparent;
  color: #000;
  right: 10px;
  top: 40px;
  transition: ease 0.4s;
  font-size: 14px;
  z-index: 9999;
}

#mobile-menu-toggle:hover {
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
  transform: scale(0.9);
}

.mobile-menu {
  display: none;
  position: fixed !important;
  top: 0;
  /* Justera beroende på din knapp */
  right: 0;
  height: 100vh;
  width: 100vw;
  background-color: #fdf8eeed;
  padding: 20% 0px 0px 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 9777;
  font-size: 30px;
  line-height: 1em;

}

.mobile-menu ul {
  list-style-type: none;
  text-transform: uppercase;
  min-width: 240px;
  width: 100%;
}

.mobile-menu li {
  margin: 0.7em 0;
}

.mobile-menu a {
  color: #000;
}

.mobile-menu a:hover {
  color: #a65750;
}

.mobile-menu .menu-item-has-children {
  margin-top: 30px;
  border: 1px solid;
  padding: 20px;
  font-weight: 300;
}

.mobile-menu {
  font-weight: 300;
}

.mobile-menu .sub-menu {
  transform: translateX(-41px);
}

.mobile-menu.active {
  display: block !important;
  z-index: 9998;
}

/* FOOTERMENY */
.footerNav h5 {
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1.2px;
  color: #fff;
  margin-left: 47px;
}

.footerNav ul {
  list-style-type: none;
  margin: 0;
  font-family: "neue montreal";
  letter-spacing: 1.1px;
  font-size: 0.9em;
}

.footerNav li {
  margin-bottom: 0.6em;
}

.footerNav li a {
  color: #fff;
  font-weight: 300;
  padding: 0.6em;
}

.footerNav li a:hover {
  text-decoration: underline;
}

.wpcf7-submit {
  border-radius: 50px !important;
}

.wpcf7-response-output {
  color: #fff;
}


@media screen and (max-width: 767px) {
  .footerNav {
    margin: 0 auto;
  }

  .footerNav ul {
    transform: translateX(-20px);
    margin-top: 10px;
    font-weight: 500;
  }

  .footerNav ul li {
    text-align: center;
  }

  .footerNav h5 {
    margin: 0 auto;
    text-align: center;
  }

  .spotlight-instagram-feed {
    width: 100% important !;
    display: block important !;
    margin: 0 auto;
  }
}


/*DÖLJ ELEMENTOR DOLDA ELEMENT*/
.elementor-editor-active .elementor-hidden-desktop

/*.elementor-editor-active .elementor-hidden-tablet,
.elementor-editor-active .elementor-hidden-mobile */
  {
  display: none !important;
}