:root {
  --header-height-desktop: 157px;
  --header-height-mobile: 117px;
}

/* Sticky header */
.site-header {
  position: sticky !important;
  top: 0;
  width: 100%;
}

/* En dejós de 600px la barra d'admin es pas fixa */
:root {
  --admin-bar-height: 32px;
}
@media screen and (max-width: 782px) {
  :root {
    --admin-bar-height: 46px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --admin-bar-height: 0;
  }
}
body:has(#wpadminbar) .site-header {
  top: var(--admin-bar-height);
}

/* Se header fixed e pas sticky */
/* .site-header + * {
  margin-top: var(--header-height-mobile);
}

@media screen and (min-width: 922px) {
  .site-header + * {
    margin-top: var(--header-height-desktop);
  }
} */

/* slider acuelh plena nautor sus tableta e desktop */
/* @media screen and (min-width: 545px) {
  .home .n2-ss-slide {
    height: calc(
      100vh - var(--header-height-mobile) -
        var(--wp-admin--admin-bar--height, 0px)
    ) !important;
  }
}

@media screen and (min-width: 922px) {
  .home .n2-ss-slide {
    height: calc(
      100vh - var(--header-height-desktop) -
        var(--wp-admin--admin-bar--height, 0px)
    ) !important;
  }
} */

.site-header.is-scrolled .ast-above-header-bar .site-above-header-wrap {
  min-height: 0 !important;
}

.site-header.is-scrolled .ast-above-header-bar .site-branding {
  padding: 0;
  font-size: 0;
}
.site-header.is-scrolled
  .ast-above-header-bar
  .site-branding
  .custom-logo-link
  img {
  width: 0px;
  max-width: 0px;
}

.header-logo-clone {
  display: none;
  opacity: 0;
  padding: 0 !important;
}
.header-logo-clone img {
  width: 0px !important;
  max-width: 0px !important;
}
.site-header.is-scrolled .header-logo-clone {
  display: block;
  opacity: 1;
}
.site-header.is-scrolled .header-logo-clone img {
  width: 35px !important;
  max-width: 35px !important;
}

/* Ombra del menú mobil */
.ast-mobile-header-content {
  
}
/* Afichar tèxt a costat de l'icòna del compte sul menú mobil */
.ast-mobile-header-content .ast-header-account-link::after {
  content: "Mon Compte";
  padding-left: 3px;
  vertical-align: middle;
}

/* Boton per davalar sul slider de l'acuèlh */
.home-slider-wrapper {
  position: relative;
}
.home-down-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 42px;
  display: flex;
  justify-content: center;
}
.home-down-btn::before {
  display: block;
  animation: bounceDown 2.2s ease-in-out infinite;
}

@keyframes bounceDown {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(3px);
  }
  85% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
#acuelh-presentacion {
  scroll-margin-top: 162px;
}
html {
  scroll-behavior: smooth;
}
