
.title-glow {
  text-align: center;
  font-size: 2.5rem;
  margin: 38px 0 28px 0;
  text-shadow: 0 0 14px #00f7ff, 0 0 8px #00e0ff;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.8px;
}


.filter-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-section label {
  font-weight: 600;
  color: var(--text-color, #fff);
  font-size: 1.05rem;
  margin-right: 4px;
}
.filter-section select {
  padding: 8px 18px 8px 8px;
  background: rgba(34,40,53,0.95);
  border: 1.3px solid #00f7ff70;
  border-radius: 9px;
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  transition: border 0.22s;
}
.filter-section select:focus {
  outline: none;
  border: 1.3px solid #00f7ff;
}


.places-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 34px;
  padding: 28px 2vw 48px 2vw;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  box-sizing: border-box;
}


.glass-card {
  background: linear-gradient(120deg,rgba(28,37,47,0.86) 70%,rgba(0,247,255,0.07) 100%);
  border-radius: 18px;
  padding: 28px 24px 24px 24px;
  flex: 1 1 320px;
  max-width: 350px;
  min-width: 220px;
  border: 1.6px solid rgba(0,247,255,0.12);
  box-shadow: 0 8px 36px #00f7ff18, 0 2px 6px #0007;
  text-align: center;
  transition:
    box-shadow 0.29s cubic-bezier(.43,.19,.43,1),
    transform 0.23s cubic-bezier(.43,.19,.43,1);
  margin: 0;
  position: relative;
  color: var(--text-color, #fff);
}
.glass-card:hover {
  transform: translateY(-7px) scale(1.018);
  box-shadow: 0 10px 40px #00f7ff70, 0 6px 32px #00c3fa33;
  border-color: #00e8ff60;
  z-index: 3;
}

/* ---- Bouton Neon ---- */
.neon-button {
  margin-top: 16px;
  padding: 10px 24px;
  background: linear-gradient(90deg,#00f7ff 50%,#00d0ff 100%);
  color: #000;
  border: none;
  border-radius: 22px;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Orbitron',sans-serif;
  font-size: 1.08rem;
  box-shadow: 0 0 12px #00f7ff60;
  cursor: pointer;
  transition:
    background 0.22s, color 0.15s,
    box-shadow 0.18s, transform 0.18s;
  outline: none;
  letter-spacing: 0.5px;
  display: inline-block;
}
.neon-button:hover {
  background: linear-gradient(90deg,#000 0%,#00f7ff 100%);
  color: #00f7ff;
  box-shadow: 0 0 26px #00f7ffcc;
  transform: scale(1.06);
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 1200px) {
  .places-container {
    gap: 22px;
    padding: 18px 2vw 32px 2vw;
    max-width: 98vw;
  }
  .glass-card {
    max-width: 340px;
    min-width: 170px;
    padding: 20px 10px 18px 10px;
    font-size: 0.97rem;
  }
  .title-glow {font-size: 2.0rem;}
}

@media (max-width: 900px) {
  .places-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 6vw 0vw 10vw 0vw;
    max-width: 100vw;
  }
  .glass-card {
    min-width: 0;
    width: 95vw;
    max-width: 99vw;
    margin: 0 auto;
    border-radius: 13px;
    box-shadow: 0 6px 18px #00f7ff11;
    font-size: 1.01rem;
    padding: 7vw 2vw 7vw 2vw;
  }
  .title-glow {font-size: 1.23rem;}
}
@media (max-width: 600px) {
  .glass-card {
    width: 98vw;
    max-width: 99vw;
    padding: 13px 1vw 13px 1vw;
    font-size: 0.96rem;
  }
  .title-glow {margin: 13px 0 6px;}
  .filter-section {margin-bottom: 10px;}
}


.place-img-preview {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain; 
  object-position: center center;
  border-radius: 8px 8px 0 0;
  display: block;
  margin-bottom: 10px;
  background: #222;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.19);
  border: 2px solid #253047;
}











.price-slider-container {
  background: #374055d0;
  margin: 2em auto 2em auto;
  padding: 2em 2em 1em 2em;
  border-radius: 26px;
  box-shadow: 0 0 40px #14fff43a;
  width: 600px;
  max-width: 95vw;
}

.slider-label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 0.5em;
}

.slider-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2em;
  color: #fff;
  font-weight: bold;
}

#slider-values {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2em;
  color: #14fff4;
}

#slider-reset {
  margin-left: -1em;
  background: transparent;
  border: none;
  color: #14fff4;
  font-size: 1.3em;
  cursor: pointer;
  transition: color 0.2s;
}
#slider-reset:hover { color: #fff; }

.slider-bounds {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2em;
}

.slider-track-wrap {
  position: relative;
  flex: 1;
  margin: 0 1em;
  height: 52px;
  display: flex;
  align-items: center;
}

input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 8px;
  background: transparent;
  position: absolute;
  pointer-events: none; 
  z-index: 3;
}
input[type="range"]:focus { outline: none; }
input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 3px solid #14fff4;
  box-shadow: 0 0 0 5px #14fff455, 0 2px 8px #1e445e73;
  background: #fff;
  cursor: grab;
  transition: border-color 0.2s;
}
input[type="range"]:focus::-webkit-slider-thumb { border-color: #fff; }
input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 3px solid #14fff4;
  box-shadow: 0 0 0 5px #14fff455, 0 2px 8px #1e445e73;
  background: #fff;
  cursor: grab;
}
input[type="range"]:focus::-moz-range-thumb { border-color: #fff; }

input[type="range"]::-ms-thumb { 
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 3px solid #14fff4;
  background: #fff;
  cursor: grab;
}

/* Barre de fond (sous les deux sliders) */
#slider-track {
  position: absolute;
  height: 10px;
  width: 100%;
  left: 0; top: 21px;
  background: linear-gradient(to right, #232f38 0%, #14fff4 0%, #14fff4 100%, #232f38 100%);
  border-radius: 8px;
  z-index: 1;
  transition: background 0.3s;
}

/* Tooltips min/max */
.thumb-label {
  position: absolute;
  top: -36px;
  background: #232f38;
  color: #14fff4;
  border-radius: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1em;
  padding: 2px 13px;
  pointer-events: none;
  border: 2px solid #14fff4;
  box-shadow: 0 0 10px #14fff4;
  z-index: 5;
  transition: left 0.12s;
}

/* Inputs */
.slider-inputs {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 0.7em;
}
.slider-inputs label {
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1em;
}
.slider-inputs input[type="number"] {
  width: 4em;
  padding: 0.18em 0.3em;
  margin-left: 0.5em;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid #222;
  background: #202d38;
  color: #14fff4;
  font-family: inherit;
}

/* Résultat */
.slider-result-count {
  color: #14fff4;
  margin: 1.5em 0 0.7em 0;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 1.13em;
  letter-spacing: 1px;
}

/* Bornes */
#min-bound, #max-bound {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1em;
  color: #b9e7ee;
  padding: 0 4px;
}

/* Responsive */

@media (max-width: 600px) {
  .price-slider-container {
    display: none !important;
  }
}


