@import url('https://fonts.googleapis.com/css2?family=Candal&display=swap');
#locationResults::-webkit-scrollbar {
  width: 6px;
}
#locationResults::-webkit-scrollbar-thumb {
  background: #e5e5e5;
  border-radius: 10px;
}
.map-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}
.gender-btn, .looking-btn {
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: .25s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gender-btn:hover, .looking-btn:hover {
  background: #f9fafb;
}

.gender-selected {
  border-color: #ec4899 !important;
  background: #ffe4f0 !important;
}

.looking-selected {
  border-color: #ec4899 !important;
  background: #ffe4f0 !important;
}

.profile-card {
  min-width: 130px;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform .2s;
}
.profile-card:hover {
  transform: translateY(-4px);
}
.profile-card img {
  width: 130px;
  height: 150px;
  object-fit: cover;
  display: block;
}
.online-dot {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 13px;
  height: 13px;
  background: #22c55e;
  border: 2px solid white;
  border-radius: 50%;
}
.profile-card .info {
  padding: 8px 10px 14px;
}
.profile-card .info h3 {
  font-weight: 700;
  font-size: 1rem;
}
.profile-card .info p {
  font-size: .85rem;
  color: #777;
}

/* === Infinite smooth scroll animation === */
@keyframes scroll-loop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-infinite-scroll {
  display: flex;
  animation: scroll-loop 40s linear infinite;
}
/* Floating bubbles */
.bubble {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
    .logo{
        
  font-weight: 400;
  font-style: normal;
    }
   .logo img{
height: 40px;
    }

footer{ margin-top: 30px; }
.floating-profile {
  width: 180px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  animation: float 5s ease-in-out infinite;
}

.floating-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-profile .fp-name {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 10px;
  background: rgba(0,0,0,0.5);
  color: white;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
}
/* === Signup page sidebar mini profiles === */

.sidebar-card {
  position: relative;
  width: 100%;
  height: 180px;                    /* mooie verhouding */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite;
  background: #fff;
}

.sidebar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* naam badge */
.sidebar-name {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.profile-card-right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite;
}

.profile-card-right img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.profile-card-right span {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.55);
  color: white;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0px); }
}
    @media (max-width: 640px) {
  .bubble {
    top: calc(var(--adjusted-top) + 40px);
  }
        .logo{
            font-size: 1rem !important;
        }
}