/* ===== STILI PAGINA DESTINAZIONI PRINCIPALE ===== */

.destinazioni-main-page {
  min-height: 100vh;
  background: #0b0b0c;
  color: #f7f5f0;
  padding-top: 88px;
  overflow-x: hidden;
}

/* ===================================================
   1. HERO BANNER
   =================================================== */

.dest-main-hero {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0e0f14;
  text-align: center;
}

.dest-main-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.55) saturate(1.15);
  transform: scale(1.02);
}

.dest-main-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 12, 0.45) 0%,
    rgba(11, 11, 12, 0.75) 60%,
    #0b0b0c 100%
  );
  pointer-events: none;
}

.dest-main-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 20px 40px;
}

.dest-main-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #E5C378;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dest-main-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 18px 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.dest-main-hero-title .highlight {
  color: #E5C378;
  display: inline;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9), 0 0 24px rgba(229, 195, 120, 0.45);
}

.dest-main-hero-desc {
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  color: #f8fafc;
  max-width: 780px;
  margin: 0 auto 28px;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  font-weight: 400;
}

.dest-main-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-dest-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #C6A35A;
  color: #0b0b0c;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(198, 163, 90, 0.35);
  min-height: 44px;
  box-sizing: border-box;
}

.btn-hero-dest-primary:hover {
  background: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 163, 90, 0.5);
}

.btn-hero-dest-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1.5px solid #25D366;
  color: #25D366;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 11px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-height: 44px;
  box-sizing: border-box;
}

.btn-hero-dest-secondary:hover {
  background: #25D366;
  color: #0b0b0c;
  transform: translateY(-2px);
}

/* ===================================================
   SEZIONI CONTENUTO (CITTÀ, ESCURSIONI, TOUR)
   =================================================== */

.dest-catalog-section {
  padding: 50px 4% 60px;
  max-width: 1340px;
  margin: 0 auto;
}

.dest-catalog-header {
  margin-bottom: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dest-catalog-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  color: #E5C378;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.dest-catalog-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-align: center;
}

.dest-catalog-subtitle {
  font-size: 0.98rem;
  color: #e2e8f0;
  max-width: 720px;
  line-height: 1.55;
  margin: 0 auto;
  text-align: center;
}

/* Griglia Card */
.dest-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 26px;
  gap: 26px;
}

/* Card Destinazione */
.dest-card {
  background: #13151d;
  border: 1.2px solid rgba(198, 163, 90, 0.32);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.dest-card:hover {
  transform: translateY(-6px);
  border-color: #E5C378;
  box-shadow: 0 14px 34px rgba(198, 163, 90, 0.22);
}

.dest-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1b22;
}

.dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-card-img {
  transform: scale(1.06);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 11, 12, 0.85) 100%);
}

.dest-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.dest-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-align: center;
  transition: color 0.25s ease;
}

.dest-card:hover .dest-card-title {
  color: #E5C378;
}

.dest-card-desc {
  font-size: 0.94rem;
  color: #f8fafc;
  line-height: 1.55;
  margin: 0 0 18px 0;
  text-align: center;
  flex-grow: 1;
  font-weight: 400;
}

.dest-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
  color: #E5C378;
  letter-spacing: 0.4px;
}

.dest-card-action span {
  transition: transform 0.25s ease;
}

.dest-card:hover .dest-card-action span:last-child {
  transform: translateX(4px);
}

/* Sezione Callout Fondo Pagina */
.dest-bottom-cta {
  background: #101116;
  border-top: 1px solid rgba(198, 163, 90, 0.2);
  padding: 70px 4% 80px;
  text-align: center;
}

.dest-bottom-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.dest-bottom-cta h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: #E5C378;
  margin: 0 0 12px 0;
  font-weight: 800;
}

.dest-bottom-cta p {
  font-size: 1rem;
  color: #e2e8f0;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.dest-bottom-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================================
   RESPONSIVE: TABLET / IPAD (768px - 1024px)
   =================================================== */

@media (max-width: 1024px) {
  .dest-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .dest-card-body {
    padding: 18px 20px 22px;
  }

  .dest-card-title {
    font-size: 1.15rem;
  }

  .dest-card-desc {
    font-size: 0.90rem;
  }
}

/* ===================================================
   RESPONSIVE: SMARTPHONE (< 768px)
   =================================================== */

@media (max-width: 768px) {
  .destinazioni-main-page {
    padding-top: 75px;
  }

  .dest-main-hero {
    min-height: 290px;
  }

  .dest-main-hero-content {
    padding: 30px 16px 24px;
  }

  .dest-main-hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    gap: 10px;
  }

  .btn-hero-dest-primary,
  .btn-hero-dest-secondary {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .dest-catalog-section {
    padding: 36px 16px 40px;
  }

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

  .dest-card-body {
    padding: 18px 18px 20px;
  }

  .dest-card-title {
    font-size: 1.12rem;
  }

  .dest-card-desc {
    font-size: 0.90rem;
  }

  .dest-bottom-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    gap: 10px;
  }

  .dest-bottom-buttons a {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}

/* ===================================================
   RESPONSIVE: PICCOLI SMARTPHONE (<= 480px)
   =================================================== */

@media (max-width: 480px) {
  .dest-main-hero-content {
    padding: 24px 12px 20px;
  }

  .dest-card-body {
    padding: 16px 14px 18px;
  }

  .dest-card-title {
    font-size: 1.05rem;
  }

  .dest-card-desc {
    font-size: 0.88rem;
  }
}

