.elementor-51 .elementor-element.elementor-element-7d97374{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-dbd064d *//* ============================================================
   LEVANTE OUTDOOR PARADISE — Header Styles
   Layout: Logo sx | Menu centrato | CTA dx
   ============================================================ */

/* --- Header bar --- */
.lop-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  padding: 0;
}

.lop-header.is-scrolled {
  background-color: rgba(24, 31, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* --- Container 3-colonne (supporta sia .lop-header__container che .lop-container) ---
   1fr | auto | 1fr → il menu (colonna centrale auto) resta perfettamente centrato
   anche quando il logo cambia dimensione (scroll), perché le due colonne laterali
   sono sempre identiche tra loro. */
.lop-header__container,
.lop-header > .lop-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--container-wide, 1400px);
  margin: 0 auto;
  padding: 12px var(--sp-m);
  min-height: 52px;
  transition: padding 0.3s ease, min-height 0.3s ease;
}

.lop-header.is-scrolled .lop-header__container,
.lop-header.is-scrolled > .lop-container {
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 44px;
}

/* --- Logo (sinistra, allineato verticalmente al centro) --- */
.lop-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 44px;
  justify-self: start;
  transition: height 0.3s ease;
}

.lop-header__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
  transition: opacity 0.2s ease;
}

.lop-header__logo:hover img {
  opacity: 0.85;
}

.lop-header.is-scrolled .lop-header__logo {
  height: 36px;
}

/* --- Nav (centro della pagina) --- */
.lop-header__nav {
  display: none;
  justify-self: center;
}

.lop-header__menu {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lop-header__menu a {
  color: var(--c-light);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease;
  padding: 4px 0;
  position: relative;
}

.lop-header__menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-solar);
  transition: width 0.25s ease;
}

.lop-header__menu a:hover::after,
.lop-header__menu a.is-active::after {
  width: 100%;
}

.lop-header__menu a:hover {
  color: var(--c-light);
}

.lop-header__menu a.is-active {
  color: var(--c-solar);
}

/* --- CTA button (destra) --- */
.lop-header__cta {
  display: none;
  justify-self: end;
}

a.lop-header__cta-btn,
.lop-header a.lop-header__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 14px 28px;
  background-color: var(--c-solar);
  color: var(--c-slate) !important;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius-btn);
  transition: background-color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.15s var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}

a.lop-header__cta-btn:hover,
.lop-header a.lop-header__cta-btn:hover {
  background-color: color-mix(in srgb, var(--c-solar) 85%, black);
  color: var(--c-ground) !important;
}

.lop-header__cta-btn:active {
  transform: scale(0.97);
}

.lop-header__cta-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--c-coastal) 72%, white);
  outline-offset: 2px;
}

.lop-header__cta-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lop-header__cta-btn:hover svg {
  transform: translateX(3px);
}

/* --- Hamburger Toggle (mobile only) ---
   NB: override esplicito su tutti gli stati perché Hello Elementor applica
   ai <button> un bordo magenta #c36 e appearance "button" che altrimenti
   comparirebbe in :hover / :focus / :active. -webkit-tap-highlight-color
   elimina il flash rosato del tap su iOS/Android. */
.lop-header__toggle,
.lop-header__toggle:hover,
.lop-header__toggle:focus,
.lop-header__toggle:active,
.lop-header__toggle.is-active {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-xs);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  justify-self: end;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  color: var(--c-light);
}

.lop-header__toggle:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--c-coastal) 72%, white);
  outline-offset: 2px;
}

.lop-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--c-light);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lop-header__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.lop-header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.lop-header__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Overlay --- */
.lop-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(24, 31, 28, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.lop-menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* --- Mobile Drawer --- */
.lop-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--c-ground);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 999;
  padding: 100px var(--sp-l) var(--sp-l);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.lop-menu-drawer.is-open {
  transform: translateX(0);
}

.lop-menu-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.lop-menu-drawer li {
  margin-bottom: var(--sp-xs);
}

.lop-menu-drawer a {
  color: var(--c-light);
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  display: block;
  padding: var(--sp-s) 0;
  transition: color 0.2s ease;
}

.lop-menu-drawer a:hover,
.lop-menu-drawer a.is-active {
  color: var(--c-solar);
}

a.lop-menu-drawer__cta,
.lop-menu-drawer a.lop-menu-drawer__cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background-color: var(--c-solar);
  color: var(--c-slate) !important;
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  text-decoration: none;
  border-radius: var(--radius-pill);
  margin-top: var(--sp-m);
  transition: background-color 0.2s ease, color 0.2s ease;
}

a.lop-menu-drawer__cta:hover,
.lop-menu-drawer a.lop-menu-drawer__cta:hover {
  background-color: #d4ca1a;
  color: var(--c-ground) !important;
}

/* --- Desktop: mostra nav + CTA, nascondi hamburger --- */
@media (min-width: 769px) {
  .lop-header__nav {
    display: flex;
    align-items: center;
  }

  .lop-header__cta {
    display: flex;
    align-items: center;
  }

  .lop-header__toggle {
    display: none;
  }
}

/* --- Mobile: logo + hamburger, nascondi nav e CTA --- */
@media (max-width: 768px) {
  .lop-header__container,
  .lop-header > .lop-container {
    grid-template-columns: 1fr auto;
    min-height: 44px;
  }

  .lop-header__logo {
    height: 38px;
  }

  .lop-header.is-scrolled .lop-header__logo {
    height: 32px;
  }

  .lop-header__nav,
  .lop-header__cta {
    display: none !important;
  }
}

/* --- Mobile stretto: drawer più compatto e tipografia scalata --- */
@media (max-width: 480px) {
  .lop-menu-drawer {
    max-width: 100%;
    padding: 84px var(--sp-m) var(--sp-m);
  }
  .lop-menu-drawer a {
    font-size: 1.125rem;
    padding: 10px 0;
  }
  a.lop-menu-drawer__cta,
  .lop-menu-drawer a.lop-menu-drawer__cta {
    padding: 12px 20px;
    font-size: 0.9375rem;
  }
  .lop-header__logo {
    height: 34px;
  }
  .lop-header.is-scrolled .lop-header__logo {
    height: 30px;
  }
}/* End custom CSS */