/* ═══ HERO ═══ */
.dest-hero {
  position: relative; height: 300px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.dest-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,15,30,.52) 0%, rgba(15,15,30,.80) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1800&q=85') center/cover no-repeat;
}
.dest-hero-inner {
  position: relative; z-index: 2;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 0 24px; max-width: 640px;
}
.dest-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: 50px; color: #fff; line-height: 1.05;
  animation: dest-fadeUp .4s ease .1s both;
}
.dest-hero-title em { font-style: italic; color: #ffc8d0; }
.dest-hero-count {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  padding: 7px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  animation: dest-fadeUp .4s ease .2s both;
}

/* ═══ CONTAINER ═══ */
.dest-container { max-width: 1600px; margin: 0 auto; padding: 0 56px; }

/* ═══ PAGE HEADER ═══ */
.dest-page-header {
  padding: 48px 0 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; gap: 16px; flex-wrap: wrap;
}
.dest-page-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px; color: #1a1a2e; line-height: 1.1; margin-bottom: 6px;
}
.dest-page-header p { font-size: 14px; color: #74748a; }
.dest-page-header-count { font-size: 13px; color: #74748a; white-space: nowrap; }

/* ═══ NAVIGATION A–Z + RECHERCHE ═══ */
.dest-nav-row {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.dest-search-box {
  position: relative; flex: 0 0 auto; width: 280px;
}
.dest-search-box svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: #a0a0b0; pointer-events: none;
}
.dest-search-input {
  width: 100%; height: 44px; border-radius: 10px;
  border: 1.5px solid #eaeaf2; background: #fafafc;
  font-family: 'Inter', sans-serif; font-size: 13.5px; color: #1a1a2e;
  padding: 0 16px 0 42px; transition: border-color .15s, background .15s;
  box-sizing: border-box;
}
.dest-search-input::placeholder { color: #a0a0b0; }
.dest-search-input:focus { outline: none; border-color: #D01F3C; background: #fff; }
.dest-alpha-nav {
  display: flex; flex-wrap: wrap; gap: 5px; flex: 1 1 auto;
}
.dest-alpha-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1.5px solid #eaeaf2; background: #fff;
  font-size: 13px; font-weight: 600; color: #74748a;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .15s; font-family: 'Inter', sans-serif;
}
.dest-alpha-btn:hover { border-color: #D01F3C; color: #D01F3C; }
.dest-alpha-btn.active { background: #D01F3C; border-color: #D01F3C; color: #fff; }
.dest-alpha-btn.empty { opacity: .28; cursor: default; pointer-events: none; }

/* ═══ COUNTRIES ═══ */
.dest-section { padding-bottom: 72px; min-height: 50vh; }
.dest-group { margin-bottom: 48px; }
.dest-group-letter {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: #D01F3C;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff0f2;
  margin-bottom: 4px;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
}
.dest-country-row {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 14px;
  border-bottom: 1px solid #eaeaf2;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: background .13s;
}
.dest-country-row:hover { background: #fff0f2; }
.dest-country-flag {
  width: 24px; height: 18px; flex-shrink: 0;
  border-radius: 2px; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.dest-country-name {
  font-size: 13.5px; font-weight: 500; color: #1a1a2e;
  flex: 1; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dest-country-nb {
  font-size: 12px; color: #74748a;
  font-weight: 400; white-space: nowrap;
}
.dest-no-results {
  display: none; text-align: center; padding: 64px 0; color: #74748a; font-size: 14px;
}

/* ═══ FOOTER ═══ */
.dest-footer { background: #1a1a2e; padding: 56px 48px 32px; }
.dest-footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dest-f-logo { font-family: 'DM Serif Display', serif; font-size: 20px; color: #fff; margin-bottom: 10px; }
.dest-f-logo em { color: #D01F3C; font-style: normal; }
.dest-f-desc { font-size: 12.5px; color: rgba(255,255,255,.35); line-height: 1.75; margin-bottom: 20px; }
.dest-f-contact { font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 2; }
.dest-f-heading { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; }
.dest-f-links { display: flex; flex-direction: column; gap: 9px; }
.dest-f-links a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .18s; }
.dest-f-links a:hover { color: #fff; }
.dest-footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.25); }

/* ═══ ANIMATIONS ═══ */
@keyframes dest-fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

/* ═══ RESPONSIVE ≤1280 ═══ */
@media (max-width: 1280px) {
  .dest-container { padding: 0 32px; }
  .dest-grid { column-gap: 16px; }
}
/* ═══ RESPONSIVE ≤1024 ═══ */
@media (max-width: 1024px) {
  .dest-container { padding: 0 24px; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dest-page-header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .dest-nav-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .dest-search-box { width: 100%; }
  .dest-hero-title { font-size: 44px; }
}
/* ═══ RESPONSIVE ≤900 (tablette portrait) ═══ */
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-hero { height: 260px; }
}
@media (max-width: 768px) {
  .dest-container { padding: 0 16px; }
  .dest-hero { height: 240px; }
  .dest-hero-title { font-size: 32px; }
  .dest-hero-inner { padding: 0 16px; gap: 12px; }
  .dest-page-header { padding: 28px 0 0; }
  .dest-page-header h1 { font-size: 30px; }
  .dest-page-header-count { font-size: 12px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-alpha-nav { gap: 4px; }
  .dest-alpha-btn { width: 31px; height: 31px; font-size: 12px; }
  .dest-footer-top { grid-template-columns: 1fr; gap: 28px; }
  .dest-footer { padding: 40px 16px 28px; }
  .dest-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 560px) {
  .dest-group-letter { font-size: 26px; }
  .dest-country-row { padding: 12px 8px; }
}
@media (max-width: 480px) {
  .dest-hero-title { font-size: 26px; }
  .dest-hero-count { font-size: 12px; padding: 6px 14px; }
  .dest-grid { grid-template-columns: repeat(1, 1fr); }
  .dest-alpha-nav { gap: 4px; }
  .dest-alpha-btn { width: 28px; height: 28px; font-size: 11px; }
  .dest-page-header h1 { font-size: 26px; }
}
