
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter";
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #111;

  background-color: #fff;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

a:hover {
  color: #f97316; 
}


img {
  max-width: 100%;
  display: block;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}


.hero {
  height: 100vh;
  display: flex;
  align-items: center;

  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.35)),
    url('./images/home-mare.avif');

  background-size: cover;
  background-position: center;
  position: relative;

  color: white;
}

/* container interno tipo max-w-7xl */
.hero > div {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* blocco testo tipo max-w-3xl */
.hero > div > div {
  max-width: 70rem; /* ~768px */
}

/* label sopra titolo */
.hero p:first-of-type {
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
}

/* titolo */
.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* paragrafo descrizione */
.hero p:nth-of-type(2) {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 36rem;
  color: rgba(255,255,255,0.85);
}

/* gruppo bottoni */
.hero > div > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 3rem;
}

/* bottone primario */
.hero a,
.hero button {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* CTA principale */
.hero .btnPrimario {
  background: #f97316;
  color: white;
}

.hero .btnPrimario:hover {
  background: #d3670e;
}

/* CTA secondaria */
.hero a[href="#contact"] {
  border: 1px solid white;
  color: white;
}

.hero a[href="#contact"]:hover {
  background: white;
  color: black;
}

.hero button:hover
{
  transform: translateY(-3px);
}


h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}


button {
  font: inherit;
  cursor: pointer;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.25s ease;
}



.testoVariabile
{
  display: block;
  font-family: "Playfair";
  font-size: 90px;
  font-weight: bolder;
  line-height: 1.0;
  margin-bottom: 20px;

  transition: opacity 0.5s ease-in-out, font-size 0.3s ease;
}

.destinazioni {
  min-height: 70vh;

  display: block;
  flex-direction: column;

  align-items: center;
  
  padding-top: 80px;
}

.destinazioni .sliderViewport {
  overflow: hidden;
  width: 70%;
}

/* titolo in alto */
.destinazioni .titolo {
  font-family: "Playfair";
  font-size: 70px;
  font-weight: 900;
  margin-bottom: 60px;
  text-align: center;
}

.destinazioni .slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.destinazioni .cardContainer {
  width: 100%;

  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.nav {
  width: 58px;
  height: 58px;

  border-radius: 50%;
  background: rgba(255,255,255,0.92);

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0,0,0,0.08);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.12);

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* SVG */
.nav svg {
  height: 100%;

  display: block;

  transition:
    transform 0.25s ease;
}

/* usa currentColor */
.nav svg path {
  fill: currentColor;

  transition:
    fill 0.25s ease;
}

/* hover */
.nav:hover {
  transform: scale(1.08);

  background: #f97316;
  color: white;

  box-shadow:
    0 14px 30px rgba(249,115,22,0.30);
}

/* click */
.nav:active {
  transform: scale(0.96);
}

.destinazioni .card {
  position: relative;

  background: black;

  width: 100%;
  height: 320px;

  overflow: hidden;
  border-radius: 35px;

  cursor: pointer;

  transition:
    transform 0.45s cubic-bezier(.22,1,.36,1),
    box-shadow 0.45s ease,
    border-radius 0.4s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.12);
}

.destinazioni .card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 45%;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.9) 30%,
    rgba(0,0,0,0.4) 70%,
    rgba(0,0,0,0) 100%
  );

  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.9) 30%,
    rgba(0,0,0,0.4) 70%,
    rgba(0,0,0,0) 100%
  );

  z-index: 1;
}

.destinazioni .card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;


  transition: opacity 2s ease, transform 0.8s cubic-bezier(.22,1,.36,1), filter 0.5s ease;
}

.destinazioni .card img.img-back {
  z-index: 0;
  opacity: 1;
}

.destinazioni .card img.img-front {
  z-index: 1;
  opacity: 0;
}

.destinazioni .card .overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.35),
      rgba(0,0,0,.08)
    );

  z-index: 2;

  transition:
    opacity 0.45s ease,
    background 0.45s ease;
}

.destinazioni .card .content {
  position: absolute;
  bottom: 0;
  padding: 40px;
  z-index: 3;
  color: white;

  transform: translateY(12px);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.destinazioni .card .content h3 {
  font-family: "Playfair";
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;

  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.destinazioni .card .content p {
  color: #d1d5db;
  line-height: 1.5;


  opacity: 0.85;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.destinazioni .card .content .dateCard {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 10px;

  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;

  opacity: 0.9;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.destinazioni .card .content .dateCard svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #f97316;
}

.destinazioni .card:hover .content .dateCard {
  opacity: 1;
  transform: translateY(-2px);
}

.destinazioni .card:hover {
  transform:
    translateY(-12px)
    scale(1.03);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.28);
}

/* zoom immagine */
.destinazioni .card:hover img {
  transform: scale(1.12);
  filter: brightness(1.08);
}

/* overlay più cinematic */
.destinazioni .card:hover .overlay {
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.55),
      rgba(0,0,0,.12)
    );
}

/* contenuto sale */
.destinazioni .card:hover .content {
  transform: translateY(-8px);
}

/* titolo highlight */
.destinazioni .card:hover .content h3 {
  color: #f97316;
  transform: translateY(-2px);
}

/* testo reveal */
.destinazioni .card:hover .content p {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .destinazioni .cardContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .destinazioni .cardContainer {
    grid-template-columns: 1fr;
  }

  .destinazioni .card {
    height: 260px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  section {
    padding: 70px 0;
  }
}

/* VIAGGI */

.titolo {
  font-family: "Playfair";

  position: relative;
  z-index: 10;

  /* lo porti sopra il carosello */
  margin-bottom: -80px;

  /* centratura visiva sopra layout */
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;

  text-align: left;

  /* effetto più “hero” */
  font-size: 64px;
  color: #111;
}

.layoutViaggio {
  width: 100%;

  margin: 60px auto;
  padding: 0 clamp(16px, 4vw, 80px);
  display: flex;
  gap: 80px;

  align-items: flex-start;
}

.sinistra {
  flex: 1;
}

.destra {
  flex: 0.8;
  position: static;
  top: 120px;

  display: flex;
  flex-direction: column;

  height: calc(100vh - 140px); /* occupa quasi tutta la viewport */
}

.info-scroll {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
}

/* scrollbar più pulita */
.info-scroll::-webkit-scrollbar {
  width: 6px;
}

.info-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 999px;
}


.descrizione {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #1a1a1a;

  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  
  text-align: justify;
  text-justify: inter-word;
}

.descrizione b,
.descrizione strong {
  font-weight: 1000;
  color: #000;
}

.headerViaggio {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 10%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* override del titolo (toglie margini strani) */
.headerViaggio .titolo {
  margin: 0;
  padding: 0;
  flex: 1;
}

/* sottotitolo date viaggio */
.dateViaggio {
  width: 90%;
  max-width: 1400px;
  margin: 18px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.badgeData {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;

  background: #fff7f0;
  border: 1px solid rgba(249,115,22,.20);
  border-radius: 999px;

  box-shadow: 0 4px 12px rgba(249,115,22,.08);

  transition: transform .25s ease, box-shadow .25s ease;
}

.badgeData:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(249,115,22,.15);
}

.badgeData svg {
  width: 18px;
  height: 18px;
  color: #f97316;
  flex-shrink: 0;
}

.labelData {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.valoreData {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

/* bottone indietro più pulito */
.btnIndietro {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 200px;
  height: 52px;
  border-radius: 10px;

  background: white;
  border: 1px solid rgba(0,0,0,0.1);

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.btnIndietro:hover {
  transform: translateY(-2px) scale(1.05);
}

.btnIndietro svg
{
  width: 50px;
  height: 50px;
}

.contenitoreCarosello {
  position: relative;

  width: 700px; /* larghezza fissa */
  max-width: 90%;

  margin: 60px auto;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
}

.carosello {
  width: 100%;
  overflow: hidden;

  display: flex;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carosello::-webkit-scrollbar {
  display: none; /* Chrome */
}

.carosello img {
  width: 100%;
  height: 420px;

  object-fit: cover;

  flex: 0 0 100%;

  border-radius: 24px;

  scroll-snap-align: center;
  cursor: zoom-in;
}

.prezzi {
    margin-top: 40px;
    padding: 30px;

    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,.06);

    box-shadow:
        0 8px 20px rgba(0,0,0,.06),
        0 20px 50px rgba(0,0,0,.10);

    transition: transform .3s ease, box-shadow .3s ease;
}
/* Trattamento e Trasferimento */
.prezzi > .descrizione {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 16px;
    line-height: 1.5;

    padding-bottom: 12px;

}

.prezzi > .descrizione strong {
    color: #f97316;
    font-weight: 700;
}

/* Card prezzo */
.prezzo-blocco {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 20px;

    background: #fafafa;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    margin-top: 10px;

    transition: all .25s ease;
}

.prezzo-blocco:hover {
    background: #fff7f0;
    border-color: rgba(249,115,22,.25);

    transform: translateY(-2px);

    box-shadow:
        0 12px 24px rgba(249,115,22,.15);
}

.prezzo-blocco .label {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.prezzo-blocco .valore {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

/* =========================
   SERVIZI
========================= */

.servizi {
  width: 90%;
  max-width: 1400px;
  margin: 100px auto;
}

.servizi-titolo {
  font-family: "Playfair";
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 50px;
  color: #111;
}

.categoria-servizi {
  margin-bottom: 40px;
}

.categoria-servizi h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111;
  position: relative;
  padding-left: 18px;
}

.categoria-servizi h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;

  width: 5px;
  height: calc(100% - 8px);

  border-radius: 999px;
  background: #f97316;
}

.lista-servizi {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.servizio {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 18px;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;

  font-size: 15px;
  font-weight: 500;

  box-shadow: 0 4px 12px rgba(0,0,0,0.04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.servizio::before {
  content: "✓";
  color: #f97316;
  font-weight: 700;
}

.servizio:hover {
  transform: translateY(-2px);
  background: #fff7f0;
  box-shadow: 0 10px 24px rgba(249,115,22,0.15);
}

.lightbox {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.95);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease;

    z-index: 99999;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;

    object-fit: contain;

    border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 0px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  background: transparent;
  border: none;

  cursor: pointer;
  transition: 0.25s;
}

.lightbox-close svg
{
  width: 80px;
  height: 80px;
}

.lightbox-close:hover
{
  transform: scale(1.08);

  color: red;
}

.lightbox-nav {
    position: absolute;
    top: 50%;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: white;

    color: black;
    font-size: 40px;

    border: none;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(10px);

    transition: 0.25s;
}

.lightbox-nav svg path, .lightbox-close svg path {
    fill: currentColor;
}

.lightbox-nav:hover {
  transform: scale(1.08);

  background: #f97316;
  color: white;

  box-shadow:
    0 14px 30px rgba(249,115,22,0.30);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.noleggio {
    padding: 100px 8%;
    background: #f7f5f2;
    text-align: center;
}

.noleggio .titolo {
    text-align: center;
    margin-bottom: 20px;
    color: #b08d57; /* oppure #1f1f1f */
    font-size: 3rem;
}

.descrizioneNoleggio {
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #5f5f5f;
    line-height: 1.6;
}

.noleggioContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.noleggioCard {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.noleggioCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.noleggioCard img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.noleggioContent {
    padding: 25px;
}

.noleggioContent h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #b08d57;
}

.noleggioContent p {
    color: #6b6b6b;
    line-height: 1.6;
}

.heroContatti::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(249,115,22,.25),
            transparent 40%
        );

    pointer-events: none;
}

.heroContatti h1 {
    font-family: "Playfair";
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;

    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 5px 25px rgba(0,0,0,.45);
}

.heroContatti p {
    max-width: 750px;

    margin: 0 auto;

    text-align: center;

    font-size: 1.2rem;
    line-height: 1.8;

    color: rgba(255,255,255,.95);
}

.heroContatti {
    position: relative;

    padding: 220px 20px 120px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("./images/hero-contatti.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    color: white;
}


.heroContent {
    position: relative;
    z-index: 2;
}
.contatti {
    background: white;
    padding: 80px 8%;
}

.contattiGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.formContainer,
.mappaContainer {
    background: #f7f5f2;

    padding: 35px;

    border-radius: 24px;

    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.formContainer h2,
.mappaContainer h2 {
    margin-bottom: 25px;
}

.mappaContainerContatti iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 16px;
}

.formContainer form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.formContainer input,
.formContainer select,
.formContainer textarea {
    width: 100%;

    padding: 16px;

    border: 1px solid #ddd;
    border-radius: 14px;

    font-size: 16px;

    transition: all .25s ease;
}

.formContainer input:focus,
.formContainer select:focus,
.formContainer textarea:focus {
    outline: none;

    border-color: #b08d57;

    box-shadow:
        0 0 0 4px rgba(176,141,87,.15);
}

.formContainer select {
    width: 100%;

    padding: 16px 50px 16px 16px;

    border: 1px solid #ddd;
    border-radius: 14px;

    background-color: white;

    font-size: 16px;
    color: #333;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    transition: all .25s ease;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23666' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 16px center;
}


.formContainer select:focus {
    outline: none;

    border-color: #b08d57;

    box-shadow:
        0 0 0 4px rgba(176,141,87,.15);
}
.formContainer textarea {
    resize: none;
    height: 180px;
}
.btnInvia {
  background: linear-gradient(135deg, #f97316, #ea580c);

  color: white;
  border: none;

  padding: 18px 32px;
  border-radius: 14px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: all .3s ease;

  box-shadow: 0 10px 25px rgba(249,115,22,.25);
}

.btnInvia:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 15px 35px rgba(249,115,22,.35);
}

.footer {
    background: #111;
    color: white;
}

.footerContainer {
    max-width: 1400px;
    margin: 0 auto;

    padding: 60px 40px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footerBrand h2 {
    font-family: "Playfair";
    font-size: 42px;
    margin-bottom: 15px;
}

.footerBrand p {
    color: rgba(255,255,255,0.7);
}

.footerInfo {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footerItem {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footerItem svg {
    width: 22px;
    height: 22px;

    fill: #b08d57;
    flex-shrink: 0;
}

.footerItem span {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

.footerSocial {
    display: flex;
    gap: 20px;
}

.footerSocial a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);
    color: white;

    transition: all .3s ease;
}

.footerSocial a svg {
    width: 26px;
    height: 26px;
}

.footerSocial a:hover {
    background: #f97316;
    transform: translateY(-3px);
}

.footerBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    text-align: left;

    padding: 20px;

    border-top: 1px solid rgba(255,255,255,0.1);

    color: rgba(255,255,255,0.5);
}

.footerCredit {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.footerCredit img {
    height: 48px;
    width: auto;
}

.footerBottom a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.footerBottom a:hover {
    color: #f97316;
}

.footerNumeri {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pageHero {
    padding: 180px 20px 80px;
    text-align: center;
    background: #f7f5f2;
}

.pageHero h1 {
    font-family: "Playfair";
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 20px;
}

.pageHero p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.pageContent {
    padding: 80px 8%;
    background: white;
}

.pageContent .container {
    max-width: 1000px;
    margin: 0 auto;
}

.pageContent h2 {
    margin-top: 50px;
    margin-bottom: 20px;
}

.pageContent p,
.pageContent li {
    line-height: 1.8;
    color: #444;
}

.pageContent ul {
    padding-left: 25px;
}

.about {
    padding: 100px 8%;
    background: #ffffff;
}

.aboutHeader {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px auto;
}

.aboutTitolo {
    font-family: "Playfair";
    font-size: 70px;
    font-weight: 700;
    color: #111;

    margin-bottom: 25px;

    padding: 0;
    position: static;
}

.aboutIntro {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

.aboutContainer {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.aboutCard {
    background: #f7f5f2;
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    text-align: justify;
    will-change: transform;
}

.aboutCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.aboutCard h3 {
    margin-bottom: 15px;
    color: #b08d57;
    font-size: 1.4rem;
    text-align: center;
}

.aboutCard p {
    color: #555;
    line-height: 1.7;
}

.aboutFooter {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.cardTitle {
    display: flex;
    align-items: center; /* centra verticalmente */
    justify-content: center; /* centra tutto orizzontalmente */
    gap: 8px; /* spazio tra icona e testo */
    text-align: center;
}

.btnInfo{
    width: 64px;
    height: 64px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1976d2;
    border-radius: 50%;

    border: none;
    outline: none;
    cursor: pointer;

    text-decoration: none;

    box-shadow: 0 4px 12px rgba(25,118,210,.35);

    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;

    animation: pulse 1.6s infinite;
}

.btnInfo:hover{
    background: #2196f3;
    transform: scale(1.08);

    box-shadow:
        0 8px 20px rgba(25,118,210,.5),
        0 0 15px rgba(33,150,243,.5);
}

.btnInfo:active{
    transform: scale(0.92);

    box-shadow: 0 2px 8px rgba(25,118,210,.3);
}

.btnInfo svg{
    width: 30px;
    height: 30px;
    fill: white;

    transition: transform .25s ease;
}

.btnInfo:hover svg{
    transform: rotate(10deg);
}

.btnFixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transition: opacity .3s ease, transform .3s ease;
}

.btnFixed.is-hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.campoErrore {
    border: 2px solid #e74c3c !important;
    background-color: #fdecea !important;
}

.whatsapp-button{
    width:64px;
    height:64px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    box-shadow: 0 4px 12px rgba(37,211,102,.35);

    transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-button svg{
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-button:hover{
    transform:scale(1.1);
    box-shadow:0 15px 40px rgba(37,211,102,.45);
}

.whatsapp-button.is-hidden{
    opacity:0;
    transform:scale(.5);
    pointer-events:none;
}

@keyframes pulse{
    0%{
        box-shadow:
            0 4px 12px rgba(25,118,210,.35),
            0 0 0 0 rgba(25,118,210,.65);
    }

    70%{
        box-shadow:
            0 4px 12px rgba(25,118,210,.35),
            0 0 0 24px rgba(25,118,210,0);
    }

    100%{
        box-shadow:
            0 4px 12px rgba(25,118,210,.35),
            0 0 0 0 rgba(25,118,210,0);
    }
}
@media (max-width: 1000px) {
  .layoutViaggio {
    flex-direction: column;
    gap: 50px;
  }

  .destra {
    position: static;
  }

  .titolo {
    font-size: 48px;
  }

  .carosello img {
    height: 380px;
  }
  .contattiGrid {
	grid-template-columns: 1fr;
    }

    .heroContatti h1 {
        font-size: 50px;
    }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

      .titolo {
    font-size: 38px;
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
  }

  /* DESTINAZIONI */
  .destinazioni .titolo {
    font-size: 42px;
    margin-bottom: 35px;
  }

  /* NOLEGGIO */
  .noleggio .titolo {
    font-size: 42px;
    margin-bottom: 20px;
  }

  /* ABOUT */
  .aboutTitolo {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
  }

  /* SERVIZI */
  .servizi-titolo {
    font-size: 34px !important;
    text-align: center;
    margin-bottom: 30px;
  }

  /* HEADER PAGINA VIAGGIO */
  .headerViaggio .titolo {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
  }

  .dateViaggio {
    margin-top: 12px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .badgeData {
    padding: 8px 14px;
  }

  .badgeData svg {
    width: 15px;
    height: 15px;
  }

  .labelData {
    font-size: 11px;
  }

  .valoreData {
    font-size: 14px;
  }

  /* HERO CONTATTI */
  .heroContatti h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  /* PAGE HERO GENERICI */
  .pageHero h1 {
    font-size: 40px;
    line-height: 1.1;
  }
  
  .hero {
    min-height: 80svh;
    height: auto;
    padding-top: 100px;
    align-items: center;
  }

  .hero > div {
    padding: 0 20px;
  }

  .testoVariabile {
    font-size: clamp(42px, 11vw, 90px);
    line-height: 1.25;
    height: 20svh;
    justify-content: center;
  }

  .hero p:first-of-type {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero p:nth-of-type(2) {
    font-size: 16px;
    max-width: 100%;
  }

  .hero > div > div > div {
    flex-direction: column;
    gap: 14px;
  }

  .hero button {
    width: 100%;
  }
  
  /* LAYOUT VIAGGIO */
  .layoutViaggio {
    flex-direction: column;
    gap: 40px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .sinistra,
  .destra {
    flex: unset;
    width: 100%;
  }

  .destra {
    height: auto;
    position: static;
  }

  /* RIMUOVE SCROLL INTERNO */
  .info-scroll {
    overflow-y: visible;
    flex: unset;
    padding-right: 0;
  }

  .info-scroll::-webkit-scrollbar {
    display: none;
  }

  /* CAROSELLO */
  .contenitoreCarosello {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    gap: 10px;
  }

  .carosello img {
    height: 260px;
    border-radius: 18px;
  }

  /* TESTI */
  .descrizione {
    font-size: 17px;
    line-height: 1.7;
  }

  /* PREZZI */
  .prezzi {
    margin-top: 30px;
    position: static;
    padding-top: 20px;
    background: transparent;
  }

  .prezzo-blocco {
    padding: 16px;
    border-radius: 12px;
  }

  .prezzo-blocco .label {
    font-size: 13px;
  }

  .prezzo-blocco .valore {
    font-size: 17px;
  }

  /* HEADER */
  .headerViaggio {
    width: 100%;
    padding: 100px 20px 0;
    text-align: center;
  }

  .headerViaggio .titolo {
    font-size: 34px;
    text-align: center;
  }

  /* BOTTONI FISSI */
  .btnFixed {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 20px;

    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  /* TORNA INDIETRO CENTRATO */
  .btnIndietro {
    width: 180px;
    justify-content: center;
  }

  .btnIndietro svg {
    width: 26px;
    height: 26px;
  }

  /* PULSANTE INFO */
  .btnInfo {
    width: 58px;
    height: 58px;
  }

  .whatsapp-button {
    width: 58px;
    height: 58px;
  }

  .whatsapp-button svg {
    width: 28px;
    height: 28px;
  }

  .btnInfo svg {
    width: 26px;
    height: 26px;
  }

  /* SERVIZI */
  .servizi {
    width: 100%;
    padding: 0 20px;
    margin-top: 10px;
    margin-bottom: 80px;
  }

  .servizi-titolo {
    font-size: 32px !important;
    text-align: center;
  }

  .categoria-servizi h3 {
    font-size: 20px;
  }

  .servizio {
    font-size: 14px;
    padding: 10px 14px;
  }

    .about {
    padding: 70px 20px;
  }

  .aboutTitolo {
    font-size: 42px;
    margin-bottom: 18px;
  }

  .aboutIntro {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
  }

  .aboutContainer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .aboutCard {
    padding: 24px;
    border-radius: 18px;
  }

  .aboutCard h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .aboutCard p {
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
  }

  .cardTitle {
    justify-content: center;
    text-align: center;
    gap: 12px;
    align-items: center;
  }

  .cardTitle svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .aboutFooter {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.8;
    padding: 0 10px;
  }

  .footerContainer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
  }

  .footerBrand h2 {
    font-size: 32px;
  }

  .footerBrand p {
    font-size: 14px;
    max-width: 280px;
    margin: 0 auto;
  }

  /* centra tutto */
  .footerInfo {
    align-items: center;
  }

  .footerItem {
    justify-content: center;
  }

  /* numeri più leggibili */
  .footerNumeri span {
    font-size: 14px;
  }

  .footerSocial {
    justify-content: center;
    gap: 14px;
  }

  .footerSocial a {
    width: 46px;
    height: 46px;
  }

  .footerBottom {
    font-size: 12px;
    line-height: 1.6;
    padding: 18px 15px;

    flex-direction: column;
    text-align: center;
  }

    .lightbox-nav {
    width: 56px;
    height: 56px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav svg,
  .lightbox-close svg {
    width: 28px;
    height: 28px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  button:active,
  a:active,
  .nav:active,
  .lightbox-nav:active,
  .lightbox-close:active,
  .btnIndietro:active,
  .btnInfo:active,
  .servizio:active,
  .prezzo-blocco:active {
    transform: scale(0.92);
    transition: transform 0.08s ease;
  }
}