          @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');



/* =========================
   HERO – MIX (riutilizzabile per più destinazioni)
   ========================= */

/* HERO WRAPPER */
.mix-hero{
  position: relative;
  min-height: 78vh;
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* Background */
/* Background – movimento cinematografico */
.mix-hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  transform: scale(1.06);
  transition: transform 6s cubic-bezier(.22,.61,.36,1); /* MOLTO smooth */
  will-change: transform;
}

/* Micro boost on hover */
@media (hover:hover){
  .mix-hero:hover .mix-hero__bg{
    transform: scale(1.10);
  }
}


/* Overlay */
.mix-hero__overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 35%, rgba(255, 255, 255, .10), transparent 55%), linear-gradient(180deg, rgb(0 0 0 / 44%) 0%, rgba(0, 0, 0, .35) 38%, rgb(0 0 0 / 0%) 100%);
}

/* Logo top-right */
.mix-hero__brand{
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 12px;
  border-radius: 16px;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  text-decoration: none;
}

.mix-hero__brandImg{
  display: block;
  height: 34px;     /* regola qui la dimensione */
  width: auto;
}

/* Container centrato */
.mix-hero__container{
  position: relative;
  z-index: 2;
}

/* Content */
.mix-hero__content{
  padding: 72px 0;
}

/* Glass */
.mix-hero__glass{
  position: relative;
  display: inline-block;
  max-width: 920px;
  padding: 34px 36px 30px;
  border-radius: 28px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  overflow: hidden;
}

/* Shine */
.mix-hero__glass::before{
  content:"";
  position:absolute;
  inset:-60% -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: rotate(12deg) translateX(-25%);
  opacity: .55;
  pointer-events:none;
}

/* Kicker */
.mix-hero__kicker{
  display: inline-block;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
}

/* Titolo */
.mix-hero__title{
  font-size: 4.1rem;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: .4px;
  text-shadow:
    0 10px 35px rgba(0,0,0,.55),
    0 2px 10px rgba(0,0,0,.40);
}

/* Sottotitolo */
.mix-hero__subtitle{
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  max-width: 720px;
  margin: 0 auto;
}

/* Accent opzionale */
.mix-hero__accent{
  margin: 22px auto 0;
  height: 10px;
  width: 190px;
  border-radius: 999px;
  background:
    radial-gradient(140px 36px at 20% 50%, rgba(197,163,90,.70), transparent 70%),
    radial-gradient(160px 36px at 90% 50%, rgba(0,103,176,.40), transparent 70%),
    rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}



/* =========================
   BUTTON – GLASS WHITE → OUTLINE (base)
   ========================= */
   .btn-glass-outline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    padding: 14px 30px;
    border-radius: 999px;
  
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  
    color: #0f2f4f;
    text-decoration: none;
  
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
    border: 1px solid rgba(255,255,255,0.90);
  
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  
    box-shadow:
      0 10px 28px rgba(0,0,0,0.12),
      inset 0 1px 0 rgba(255,255,255,0.65);
  
    transition:
      background 0.35s ease,
      color 0.3s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      transform 0.25s cubic-bezier(.22,.61,.36,1);
  }
  
  /* Hover / Focus: SOLO stroke blu (su sfondi chiari) */
  .btn-glass-outline:hover,
  .btn-glass-outline:focus{
    background: transparent;
    color: white;
    border-color: rgba(30, 110, 170, 0.85);
  
    box-shadow:
      0 12px 34px rgba(30, 110, 170, 0.20),
      inset 0 1px 0 rgba(255,255,255,0.25);
  
    transform: translateY(-2px);
    text-decoration: none;
  }
  
  /* Active */
  .btn-glass-outline:active{
    transform: translateY(0);
    box-shadow:
      0 8px 22px rgba(30, 110, 170, 0.18),
      inset 0 1px 0 rgba(255,255,255,0.20);
  }
  
  /* Mobile */
  @media (max-width: 767.98px){
    .btn-glass-outline{
      padding: 12px 24px;
      font-size: 0.9rem;
    }
  }
  
  /* =========================
     VARIANTE PER SFONDI SCURI (HERO)
     ========================= */
  .btn-glass-outline--dark{
    color: rgba(255,255,255,0.95);
    border-color: rgba(255,255,255,0.85);
  }
  
  /* Hover SOLO stroke BIANCO (così non sparisce sull’hero) */
  .btn-glass-outline--dark:hover,
  .btn-glass-outline--dark:focus{
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.95);
  
    box-shadow:
      0 12px 34px rgba(0,0,0,0.30),
      inset 0 1px 0 rgba(255,255,255,0.20);
  }
  

/* Parallax on hover */
@media (hover:hover){
  .mix-hero:hover .mix-hero__bg{
    transform: scale(1.12);
    transition: transform 1.2s ease;
  }
}

/* Responsive */
@media (max-width: 991.98px){
  .mix-hero{ min-height: 62vh; }
  .mix-hero__glass{ padding: 28px 24px 24px; border-radius: 24px; }
  .mix-hero__title{ font-size: 3.2rem; }
  .mix-hero__brandImg{ height: 30px; }
}

@media (max-width: 576px){
  .mix-hero{ min-height: 56vh; }
  .mix-hero__content{ padding: 56px 0; }
  .mix-hero__title{ font-size: 2.55rem; }
  .mix-hero__subtitle{ font-size: 1.02rem; }

  .mix-hero__brand{
    top: 14px;
    right: 14px;
    padding: 8px 10px;
    border-radius: 14px;
  }
  .mix-hero__brandImg{ height: 28px; }
}

  


  /* =========================
   SECTION – CTA BOXED (testo + immagine)
   ========================= */
.mix-custom-cta-section{
  background: transparent;
}

.mix-custom-cta-box{
  border-radius: 28px;
  overflow: hidden;

  background: #fff;
  border: 1px solid rgba(15,47,79,.10);

  box-shadow: 0 18px 45px rgba(15, 50, 90, 0.14);
}

/* Colonna testo */
.mix-custom-cta-box__content{
  height: 100%;
  padding: 42px 38px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Pill */
.mix-custom-cta-box__pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;

  padding: 9px 22px;
  border-radius: 999px;

  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;

  color: #0f2f4f;
  background: rgba(15,47,79,.06);
  border: 1px solid rgba(15,47,79,.12);

  margin-bottom: 14px;
}

/* Testo */
.mix-custom-cta-box__text{
  margin: 0 0 22px;
  max-width: 520px;

  font-size: 1.05rem;
  line-height: 1.85;
  color: #0f2f4f;
  opacity: .95;
}

/* CTA */
.mix-custom-cta-box__cta{
  margin-top: 4px;
}

/* Media */
.mix-custom-cta-box__media{
  position: relative;
  width: 100%;
  height: 100%;

  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.mix-custom-cta-box__mediaOverlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 380px at 30% 30%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.35));
}

/* Mobile */
@media (max-width: 767.98px){
  .mix-custom-cta-box{
    border-radius: 22px;
  }

  .mix-custom-cta-box__content{
    padding: 30px 22px;
    text-align: center;
  }

  .mix-custom-cta-box__pill{
    align-self: center;
  }

  .mix-custom-cta-box__text{
    margin-left: auto;
    margin-right: auto;
    font-size: .98rem;
  }

  .mix-custom-cta-box__media{
    min-height: 240px;
  }
}

/* =========================
   PATCH BUTTON: evita "sparizione" su hover in box chiaro
   Usa class: .btn-glass-outline.-onlight
   ========================= */
.btn-glass-outline.-onlight{
  color: #0f2f4f;
  border-color: rgba(15,47,79,.14);
}

/* Hover: SOLO stroke blu, ma con testo sempre ben visibile */
.btn-glass-outline.-onlight:hover,
.btn-glass-outline.-onlight:focus{
  background: transparent;
  color: #1e6faa; /* testo blu visibile */
  border-color: rgba(30, 110, 170, 0.85);

  box-shadow:
    0 12px 34px rgba(30, 110, 170, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.25);

  text-decoration: none;
}








/* =========================
   INFO BANNER – NOTE QUOTE
   ========================= */
   .mix-note-section{
    background: transparent;
  }
  
  .mix-note-banner{
    display: block;
    padding: 16px 24px;
    border-radius: 20px;
  
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.65)
    );
  
    border: 1px solid rgba(15,47,79,0.12);
  
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  
    box-shadow:
      0 10px 26px rgba(15, 50, 90, 0.12),
      inset 0 1px 0 rgba(255,255,255,0.6);
  }
  
  .mix-note-text{
    font-size: 0.85rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #0f2f4f; /* blu elegante */
    opacity: 0.9;
  }
  
  /* Mobile */
  @media (max-width: 767.98px){
    .mix-note-banner{
      padding: 14px 18px;
      border-radius: 18px;
    }
  
    .mix-note-text{
      font-size: 0.8rem;
    }
  }
  






























































 /* --- CAROUSEL WRAPPER --- */
.resort-showcase{
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 43, 70, .14);
}

.resort-slide{
  min-height: 520px;
  background: #fff;
}

/* --- VISUAL (SINISTRA) --- */
.resort-visual{
  position: relative;
  flex: 1 1 50%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.resort-visual__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 420px at 20% 25%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(110deg, rgba(0,0,0,.30), rgba(0,0,0,.08) 55%, rgba(0,0,0,.24));
}

/* Tag sopra immagine (glass) */
.resort-visual__tag{
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
  background: rgba(28,28,28,.35);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- PANEL (DESTRA, FULL) --- */
.resort-panel{
  flex: 1 1 50%;
  background: #fff;               /* richiesto: bianco */
  position: relative;
}

/* micro texture premium (molto leggera) */
.resort-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 380px at 10% 20%, rgba(197,163,90,.12), transparent 60%),
    radial-gradient(900px 380px at 90% 85%, rgba(0,103,176,.08), transparent 60%);
  pointer-events:none;
}

/* per stare sopra al ::before */
.resort-panel > *{
  position: relative;
  z-index: 1;
}

/* shine leggero al passaggio (non “card”) */
.resort-panel::after{
  content:"";
  position:absolute;
  inset:-60% -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.22) 50%, transparent 65%);
  transform: rotate(12deg) translateX(-25%);
  opacity: 0;
  transition: opacity .35s ease, transform .55s ease;
  pointer-events:none;
}

.carousel-item:hover .resort-panel::after{
  opacity: 1;
  transform: rotate(12deg) translateX(10%);
}

/* --- TYPOGRAPHY & CONTENT --- */
.resort-panel__counter{
  letter-spacing: .8px;
}

.resort-panel__brand{
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: .95rem;
  opacity: .85;
}

.resort-panel__destination{
  font-size: 2.25rem;
  line-height: 1.05;
  font-weight: 800;
  margin-top: .35rem;
}

.resort-panel__headline{
  font-size: 1.05rem;
  letter-spacing: .2px;
}

.resort-panel__description{
  font-size: .98rem;
  line-height: 1.75;
  color: #444;
  max-width: 620px; /* evita righe troppo lunghe */
}

.resort-panel__label{
  font-weight: 700;
  margin-bottom: .25rem;
}

/* Lista “elegante” */
.resort-panel__list{
  list-style: none;
  margin: 0;
  max-width: 640px;
}

.resort-panel__list li{
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  line-height: 1.65;
  color: #444;
}

.resort-panel__list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c5a35a; /* oro */
  box-shadow: 0 0 0 4px rgba(197,163,90,.16);
}

/* Link secondario */
.resort-panel__link{
  color: #0067b0;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.resort-panel__link:hover{
  opacity: .85;
  transform: translateX(2px);
  text-decoration: none;
}

/* --- INDICATORS / CONTROLS --- */
.resort-showcase__dots li{
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.resort-showcase__control{
  width: 7%;
}

/* --- RESPONSIVE --- */
@media (max-width: 991.98px){
  .resort-slide{ min-height: auto; }
  .resort-panel__destination{ font-size: 1.9rem; }
}


/* =========================
   MIX ACCORDION — SIMPLE, CLEAN, STABLE
   ========================= */

/* Desktop height fissa decisa da te con --mixH (es. 420px) */
.mix-accordion{
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 45px rgba(15,43,70,.14);
}

/* pannelli */
.mix-panel{
  position: relative;
  flex: 1;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: flex .75s cubic-bezier(.22,.61,.36,1);
}

/* solo desktop: altezza fissa */
@media (min-width: 768px){
  .mix-accordion{ height: var(--mixH, 420px); }
  .mix-panel{ height: 100%; }
  .mix-inner{ height: 100%; }
}

/* overlay */
.mix-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.88));
}

/* contenuto */
.mix-inner{
  position: relative;
  z-index: 1;
  padding: 22px 22px 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* header top */
.mix-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px; /* più stacco dal titolo */
}

.mix-pill{
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.85);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

.mix-index{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* corpo */
.mix-body{
  /* in desktop lo teniamo in basso ma senza vuoti inutili */
  /* margin-top: auto; */
  max-width: 760px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}

/* title */
.mix-title{
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
}

/* blocchi */
.mix-block{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 14px 14px;
  margin-bottom: 12px;
  backdrop-filter: blur(12px);
}

.mix-meta{
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 6px;
}

.mix-hotel{
  font-weight: 900;
  margin-bottom: 6px;
}

.mix-stars{ opacity: .9; font-weight: 800; }

.mix-text{
  line-height: 1.6;
  opacity: .92;
}

.mix-price{
  margin-top: 8px;
  padding: 6px 10px;
  display: inline-block;
  border-radius: 12px;
  background: rgb(255 255 255 / 18%);
  border: 1px solid rgba(197,163,90,.22);
}

.mix-link{
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.mix-link:hover{ text-decoration: none; opacity: .9; transform: translateX(2px); }

/* volo */
.mix-flight{
  margin-top: 6px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px 14px;
}

.mix-flight__label{
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 6px;
  opacity: .95;
}

.mix-flight__text{
  opacity: .9;
  line-height: 1.6;
}

/* + scopri: centrato perfetto */
.mix-hint{
  position: absolute;
  font-size: 1.2rem;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: .92;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transition: opacity .25s ease, transform .5s cubic-bezier(.22,.61,.36,1);
}

/* attivo */
.mix-panel.is-active{ flex: 4; }
.mix-panel.is-active .mix-body{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .10s;
}
.mix-panel.is-active .mix-hint{
  opacity: 0;
  transform: rotate(-90deg) translateY(-6px);
}


/* =========================
   DESKTOP – NASCONDI TAG + NUMERO SU TAB CHIUSE
   ========================= */
   @media (min-width: 768px){

/* Tab chiuse: niente pill + index */
.mix-panel:not(.is-active) .mix-top{
  opacity: 0;
  pointer-events: none;
}

/* Tab attiva: visibili */
.mix-panel.is-active .mix-top{
  opacity: 1;
  pointer-events: auto;
}
}


/* =========================
   MOBILE FIX — forza layout verticale + tab chiuse più piccole
   INCOLLARE ALLA FINE DEL CSS
   ========================= */
   @media (max-width: 767.98px){

/* 1) forza l’accordion in verticale */
.mix-accordion{
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
}

/* 2) ogni panel deve occupare tutta la larghezza */
.mix-panel{
  flex: none !important;
  width: 100% !important;
  min-height: 110px !important; /* default */
}

/* 3) pannelli chiusi più piccoli */
.mix-panel:not(.is-active){
  min-height: 188px !important; /* qui regoli la compattezza */
}

/* 4) pannello attivo: cresce con il contenuto */
.mix-panel.is-active{
  min-height: auto !important;
}

/* 5) padding più compatto quando chiuso */
.mix-panel:not(.is-active) .mix-inner{
  padding: 98px 16px 12px !important;
}

/* 6) corpo: chiuso -> nascosto, aperto -> visibile */
.mix-body{
  margin-top: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transition: max-height .6s cubic-bezier(.22,.61,.36,1), opacity .25s ease !important;
}

.mix-panel.is-active .mix-body{
  max-height: 2400px !important; /* abbondante per testi lunghi */
  opacity: 1 !important;
}

/* 7) “+ Scopri” su mobile: orizzontale in basso */
.mix-hint{
  inset: auto !important;
  left: 50% !important;
  bottom: 12px !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  transform: translateX(-50%) !important;
}

.mix-panel.is-active .mix-hint{
  opacity: 0 !important;
  transform: translateX(-50%) translateY(6px) !important;
}


  /* Tab chiusa: nasconde pill + index */
  .mix-panel:not(.is-active) .mix-top{
    display: none;
  }

  /* Tab aperta: li mostriamo normalmente */
  .mix-panel.is-active .mix-top{
    display: flex;
  }
}


/* =========================
   LABEL / PILL – MIX (ripristino)
   ========================= */
   .mix-label-pill{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    padding: 10px 34px;
    border-radius: 999px;
  
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  
    color: #0f2f4f !important;
    text-align: center;
  
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.88),
      rgba(255,255,255,0.66)
    ) !important;
  
    border: 1px solid rgba(255,255,255,0.92) !important;
  
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  
    box-shadow:
      0 10px 26px rgba(15, 50, 90, 0.18),
      inset 0 1px 0 rgba(255,255,255,0.65);
  
    margin: 0 auto 22px;
  }
  
  /* Variante su sfondo chiaro (più “pulita”) */
  .mix-label-pill--light{
    background: rgba(255,255,255,0.96) !important;
    border-color: rgba(15,47,79,0.12) !important;
  }
  
  /* Variante su sfondo scuro/foto (testo bianco) */
  .mix-label-pill--dark{
    color: rgba(255,255,255,0.96) !important;
    background: rgba(255,255,255,0.10) !important;
    border-color: rgba(255,255,255,0.22) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
  }
  
  /* Mobile: un filo più compatta */
  @media (max-width: 767.98px){
    .mix-label-pill{
      padding: 9px 26px;
      font-size: 0.72rem;
      margin-bottom: 18px;
    }
  }
  


























































          .travel-ideas {
              background-color: #f8f5ef;
              font-family: 'Poppins', sans-serif;
              color: #333;
          }

          .section-title {
              font-size: 1.9rem;
              font-weight: 600;
              color: #1d1d1d;
          }

          .section-title-bold {
              font-weight: 900;
              color: #1d1d1d;
          }

          /* .section-title span {
                            font-weight: 400;
                            font-size: 1.1rem;
                            color: #a28f67;
                        } */

          .travel-card {
              border: none;
              border-radius: 18px;
              background: white;
              overflow: hidden;
              transition: all 0.3s ease;
          }

          .travel-card:hover {
              transform: translateY(-5px);
              box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          }

          .card-img-top {
              height: 200px;
              object-fit: cover;
              transition: transform 0.4s ease;
          }

          .travel-card:hover .card-img-top {
              transform: scale(1.05);
          }

          .card-body {
              padding: 1.8rem;
          }

          .card-title {
              font-size: 1.2rem;
              font-weight: 600;
              color: #1d1d1d;
              margin-bottom: 0.75rem;
          }

          .card-title .nights {
              font-weight: 400;
              font-size: 0.95rem;
              /* color: #a28f67; */
          }

          .card-text {
              font-size: 0.95rem;
              color: #555;
              line-height: 1.7;
          }



          @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
          @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

          :root {
              --sand: #f6f4ef;
              --gold: #c5a35a;
              --dark: #1c1c1c;
              --muted: #555;
          }

          .editorial-section {
              background-color: var(--sand);
              font-family: 'Poppins', sans-serif;
              color: var(--dark);
          }

          .headline {
              font-size: 1.9rem;
              font-weight: 600;
              letter-spacing: 0.3px;
              margin-bottom: 0.5rem;
          }

          .intro {
              font-size: 1rem;
              color: var(--muted);
              max-width: 600px;
              margin: 0 auto;
          }

          /* Card layout */
          .info-card {
              background: #fff;
              border-radius: 18px;
              overflow: hidden;
              transition: all 0.4s ease;
              box-shadow: 0 10px 25px #0f2b4621;
              display: flex;
              flex-direction: column;
              text-align: left;
          }

          .info-card:hover {
              transform: translateY(-4px);
              box-shadow: 0 10px 25px #0f2b4621;
          }

          .info-img {
              background-size: cover;
              background-position: center;
              height: 180px;
          }

          .info-body {
              padding: 1.6rem;
          }

          .info-body h3 {
              font-size: 1.1rem;
              font-weight: 600;
              color: #0067b0;
              margin-bottom: 0.6rem;
          }

          .info-body h3 i {
              margin-right: 8px;
              color: var(--gold);
          }

          .info-body p {
              font-size: 0.95rem;
              color: var(--muted);
              line-height: 1.6;
          }

          /* CTA & Preventivo */
          .preventivo-section {
              background: #fff;
              font-family: 'Poppins', sans-serif;
          }

          .divider {
              width: 60px;
              height: 3px;
              background: var(--gold);
          }

          .cta-title {
              font-size: 1.5rem;
              font-weight: 600;
              color: var(--dark);
          }

          .btn-luxury {
              background: var(--gold);
              color: #fff;
              border-radius: 40px;
              padding: 12px 35px;
              font-weight: 500;
              border: none;
              transition: all 0.3s ease;
          }

          .btn-luxury:hover {
              background: #b29449;
              transform: translateY(-2px);
          }

          /* Responsive */
          @media (max-width: 992px) {
              .headline {
                  font-size: 1.6rem;
              }

              .info-img {
                  height: 160px;
              }
          }

          @media (max-width: 576px) {
              .headline {
                  font-size: 1.4rem;
              }

              .info-body {
                  padding: 1.2rem;
              }
          }

          @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

          :root {
              --sand: #f6f4ef;
              --white: #fff;
              --gold: #c5a35a;
              --dark: #1c1c1c;
              --muted: #555;
          }

          .faq-section {
              background: var(--sand);
              font-family: 'Poppins', sans-serif;
              color: var(--dark);
          }

          .headline {
              font-size: 1.9rem;
              font-weight: 600;
              margin-bottom: 0.5rem;
          }

          .intro {
              color: var(--muted);
              font-size: 1rem;
              max-width: 600px;
              margin: 0 auto;
          }

          /* Accordion */
          .accordion .card {
              border: none;
              border-radius: 12px;
              margin-bottom: 1rem;
              box-shadow: 0 10px 25px #0f2b4618;
              background: var(--white);
              transition: all 0.3s ease;
          }

          .accordion .card:hover {
              transform: translateY(-3px);
              box-shadow: 0 10px 25px #0f2b4621;
          }

          .accordion .card-header {
              background: transparent;
              border: none;
              padding: 0;
          }

          .accordion .btn-link {
              width: 100%;
              text-align: left;
              color: var(--dark);
              font-weight: 500;
              font-size: 1.05rem;
              padding: 1.2rem 1.5rem;
              text-decoration: none;
              border-radius: 12px;
              transition: all 0.3s ease;
              position: relative;
          }

          .accordion .btn-link:focus {
              box-shadow: none;
          }

          .accordion .btn-link:hover {
              color: #0067b0;
          }

          .accordion .btn-link::after {
              content: "\f107";
              font-family: "Font Awesome 5 Free";
              font-weight: 900;
              position: absolute;
              right: 20px;
              top: 50%;
              transform: translateY(-50%);
              transition: transform 0.3s ease;
          }

          .accordion .btn-link[aria-expanded="true"]::after {
              transform: translateY(-50%) rotate(180deg);
              color: var(--gold);
          }

          .accordion .card-body {
              padding: 1rem 1.5rem 1.5rem;
              color: var(--muted);
              font-size: 0.95rem;
              line-height: 1.7;
          }





















          /* ----- RESPONSIVE ----- */
          @media (max-width: 992px) {
              .section-title {
                  font-size: 1.7rem;
              }

              .img-wrapper {
                  margin-bottom: 1.5rem;
              }

              .holiday-list {
                  font-size: 0.95rem;
              }
          }

          @media (max-width: 576px) {
              .section-title {
                  font-size: 1.5rem;
              }
          }


          /* Responsiveness */
          @media (max-width: 992px) {
              .card-img-top {
                  height: 180px;
              }
          }








          /* =========================
   SEARCH BAR – visibile + coerente
   ========================= */
#search{
    position: relative;
    z-index: 20;              /* sempre sopra */
  }
  
  #SearchBox{
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid rgba(15,47,79,.18);
    box-shadow: 0 6px 18px rgba(15,47,79,.12);
    outline: none;
    background: #fff;
  }
  
  #SearchBox:focus{
    border-color: #0067b0;
    box-shadow: 0 8px 22px rgba(0,103,176,.22);
  }
  
  #results{
    color: #0f2f4f;
    opacity: .75;
    font-size: .9rem;
  }
  
  /* =========================
     MIX CARDS – 3 per riga (Bootstrap gestisce la griglia)
     ========================= */
  .mix-card{
    position: relative;
    height: 420px;
    border-radius: 26px;
    overflow: hidden;
  
    background-size: cover;
    background-position: center;
  
    display: flex;
    align-items: flex-end;
  
    box-shadow: 0 18px 45px rgba(15,43,70,.18);
    transition: transform .4s cubic-bezier(.22,.61,.36,1),
                box-shadow .4s ease;
  }
  
  .mix-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 28px 65px rgba(15,43,70,.28);
  }
  
  /* Overlay scuro premium */
  .mix-card__overlay{
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(0,0,0,.10) 0%,
        rgba(0,0,0,.55) 55%,
        rgba(0,0,0,.85) 100%);
  }
  
  /* Logo top-right glass */
  .mix-card__brand{
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
  
    padding: 8px 10px;
    border-radius: 14px;
  
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
  }
  
  .mix-card__brand img{
    height: 26px;
    width: auto;
    display: block;
  }
  
  /* Contenuto */
  .mix-card__content{
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 26px 24px;
    color: #fff;
  }
  
  .mix-card__title{
    font-size: 1.85rem;
    font-weight: 900;
    margin-bottom: 14px;
    text-shadow: 0 10px 35px rgba(0,0,0,.55);
    color: white;
  }
  
  .mix-card__list{
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mix-card__list li{
    font-size: .95rem;
    line-height: 1.7;
    opacity: .95;
    color: white
  }

  /* =========================
   MIX CARD – CTA BUTTON
   ========================= */
.mix-card__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    margin-top: 18px;
    padding: 12px 26px;
    border-radius: 999px;
  
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  
    color: #0f2f4f;
    text-decoration: none;
  
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.95);
  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  
    box-shadow:
      0 8px 22px rgba(0,0,0,0.28),
      inset 0 1px 0 rgba(255,255,255,0.65);
  
    transition:
      background .35s ease,
      color .30s ease,
      border-color .35s ease,
      box-shadow .35s ease,
      transform .25s cubic-bezier(.22,.61,.36,1);
  }
  
  /* Hover: SOLO stroke + testo bianco */
  .mix-card__cta:hover{
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.95);
  
    box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      inset 0 1px 0 rgba(255,255,255,0.25);
  
    transform: translateY(-2px);
    text-decoration: none;
  }
  
  /* Active */
  .mix-card__cta:active{
    transform: translateY(0);
    box-shadow:
      0 6px 18px rgba(0,0,0,0.30),
      inset 0 1px 0 rgba(255,255,255,0.20);
  }
  
  
  /* responsive */
  @media (max-width: 991.98px){
    .mix-card{ height: 380px; }
  }
  
  @media (max-width: 767.98px){
    .mix-card{ height: 340px; }
    .mix-card__title{ font-size: 1.55rem; 
      text-align: left;
    }
  }