/* ============================ GLOBAL THEME (FINAL) ============================ */
:root {
  --bg-dark: #0a0b1e;
  --text-color: #e0e8ff;
  --accent1: #eee6ebff;
  --accent2: #00c3ff;
  --gold: #cba135;
  --card-bg: rgba(255,255,255,0.05);
  --card-hover: rgba(255,255,255,0.15);
  --border: rgba(255,255,255,0.08);
  --cyan: #26D0FF;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-color);
}

/* ============================ FLAGS BAR ============================ */
.flags-bar {
  padding: 8px 20px;
  display: flex;
  gap: 10px;
  background: #0e1016;
  border-bottom: 1px solid var(--border);
}

.flags-bar img {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.25s;
}

.flags-bar img:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 0 4px rgba(255,45,189,0.6));
}

/* ============================ HEADER (logo + login) ============================ */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 10px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.logo span {
  color: var(--accent1);
}

/* FLAGS + AUTH v jednom riadku */
.flags-auth-row {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0e1016;
  border-bottom: 1px solid var(--border);
}

.flags-left {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 18px;
}

.flags-bar a,
.flags-left a,
.flags-bar a:hover,
.flags-left a:hover,
.flags-bar a:visited,
.flags-left a:visited {
  text-decoration: none;
  border-bottom: 0;
  line-height: 1;
}

.global-language-menu {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0;
}

.global-language-menu summary {
  min-width: 92px;
  height: 18px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(38, 208, 255, 0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--text-color);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
  user-select: none;
  box-sizing: border-box;
  box-shadow: 0 0 18px rgba(38,208,255,0.08);
}

.global-language-menu summary::-webkit-details-marker {
  display: none;
}

.global-language-menu summary span {
  color: var(--cyan);
}

.global-language-menu summary::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg) translateY(-2px);
}

.global-language-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 100;
  width: 260px;
  padding: 0.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  border: 1px solid rgba(38, 208, 255, 0.25);
  border-radius: 16px;
  background: rgba(7,9,15,0.96);
  box-shadow: 0 18px 36px rgba(0,0,0,0.34), 0 0 22px rgba(38,208,255,0.12);
  line-height: 1;
}

.global-language-options a,
.global-language-options a:visited,
.global-language-options a:hover,
.global-language-options a:focus {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: rgba(224,232,255,0.78);
  font: 800 0.76rem/1 'Inter', 'Poppins', system-ui, sans-serif;
  text-decoration: none !important;
  outline: none;
}

.global-language-options a:hover,
.global-language-options a.active {
  border-color: rgba(38, 208, 255, 0.35);
  background: rgba(38,208,255,0.12);
  color: #fff;
}

.flags-left img {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.25s;
}

.auth-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.auth-right a {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(38, 208, 255, 0.35);
  border-radius: 30px;
  padding: 6px 18px;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.auth-right a:hover {
  border-color: var(--cyan);
  color: #ffffff;
  background: rgba(38, 208, 255, 0.1);
}

/* Minimal flat UI nav buttons container */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

/* HOME button */
.home-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(38, 208, 255, 0.35);
  border-radius: 30px;
  padding: 6px 18px;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.home-btn:hover {
  border-color: var(--cyan);
  color: #ffffff;
  background: rgba(38, 208, 255, 0.1);
}

/* SUPPORT button vpravo pod login/signup */
.support-row {
  width: 95%;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  padding: 6px 20px 14px;
}

.support-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(38, 208, 255, 0.35);
  border-radius: 30px;
  padding: 6px 18px;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.support-btn:hover {
  border-color: var(--cyan);
  color: #ffffff;
  background: rgba(38, 208, 255, 0.1);
}

/* ============================ FILTER BAR ============================ */
.filter-bar {
  width: 92%;
  margin: 25px auto 35px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(255,45,189,0.12), 0 0 30px rgba(0,195,255,0.10);
}

.filter-bar select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border:2px solid #26D0FF; 
  color: var(--text-color);
  transition: 0.25s;
}

.filter-bar select:hover {
 border-color:var(--accent2);
}

.filter-bar select:focus {
  background: rgba(255,45,189,0.15);
  border-color: var(--accent1);
  box-shadow: 0 0 12px rgba(255,45,189,0.25);
}
.apply-btn,
.filter-apply {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(0,195,255,0.35);
}
/* ======================================
   HOTOWO FILTER – CYAN SELECT STYLE
====================================== */

/* HOVER → len mierne zosvetli border */
.filter-bar select:hover {
    border-color: #5fe2ff;
}

/* FOCUS → silnejší glow */
.filter-bar select:focus {
    outline: none;
    border-color: #26D0FF;
    box-shadow: 0 0 6px rgba(38, 208, 255, 0.6);
}

/* ==============================
   OPTIONS (fix pink background)
============================== */
.filter-bar select option {
    background-color: #0f1a2b !important;
    color: #ffffff;
    padding: 10px;
}

/* Selected item */
.filter-bar select option:checked,
.filter-bar select option:selected {
    background-color: #162235 !important;
}

/* Placeholder (first option) */
.filter-bar select option[value=""] {
    color: #c9c9c9;
}


/* ============================ ESCORT GRID ============================ */
.escort-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  padding: 0 20px;
  max-width: 1700px;
  margin: 0 auto 60px;
}



/* ============================ ESCORT CARD OVERLAY STYLES ============================ */
.escort-card.overlay-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
  height: 320px;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  /*border: 1px solid var(--border);*/
}

.escort-card.overlay-card:hover {
  transform: translateY(-6px);
  background: var(--card-hover);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  border-color: rgba(203, 161, 53, 0.6);
}

.escort-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.escort-info-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
  text-align: right;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.escort-name {
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  margin-bottom: 5px;
}

.escort-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  margin-bottom: 8px;
}

.escort-flags {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-bottom: 8px;
}

.flag-country {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.flag-lang {
  font-size: 15px;
}

.escort-age {
  font-size: 16px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}




/* ============================ PLACEHOLDER STYLES ============================ */
/*.filter-bar select:invalid {
  color: rgba(224, 232, 255, 0.6);
}

.filter-bar select:valid {
  color: var(--text-color);
}

/* DROPDOWN STYLES */
.filter-bar select {
  background: 
    linear-gradient(45deg, transparent 50%, var(--accent2) 50%),
    rgba(255,255,255,0.08);
  background-size: 12px 12px, 100% 100%;
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center, 0 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 35px;
}

.filter-bar select option {
  background: var(--bg-dark);
  color: var(--text-color);
  padding: 10px;
}

.filter-bar select option:checked {
  background: var(--accent1);
  color: white;
}

/* ============================ RESPONSIVE LAYOUT ============================ */
@media (max-width: 1200px) {
  .escort-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .filter-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .escort-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .escort-card.overlay-card {
    height: 280px;
  }
}

@media (max-width: 420px) {
  .filter-bar {
    grid-template-columns: 2fr;
  }
  .escort-grid {
    grid-template-columns: 2fr;
  }
} 

/* ============================ MOBILE HEADER ============================ */
@media (max-width: 768px) {
  .flags-auth-row {
    flex-direction: column;
    width: 100%;
    padding: 10px;
    align-items: flex-start;
  }
  .flags-left {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
  }
  .auth-right {
    width: 100%;
    margin-top: 10px;
    justify-content: space-between;
  }
  .auth-right a {
    flex: 1;
    text-align: center;
    margin: 0 4px;
    padding: 10px 0;
  }
  .support-row {
    width: 100%;
    padding: 10px;
    justify-content: center;
  }
  .support-btn {
    width: 100%;
    text-align: center;
  }
  .top-header {
    text-align: center;
    width: 100%;
    padding: 20px 0;
  }
}

/* ============================ MOBILE FILTER TOGGLE ============================ */
.filter-toggle {
  display: none;
}

#toggleFilterBtn {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,195,255,0.3);
}

@media (max-width: 1024px) {
  .filter-toggle {
    display: block;
    text-align: center;
    padding: 15px;
  }
  .filter-bar {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .filter-bar.active {
    display: grid;
    opacity: 1;
    max-height: 1000px;
  }
}

/*@media (min-width: 1025px) {
  .filter-toggle {
    display: none;
  }
}*/

/* ============================ PLACEHOLDER COLORS BY DEVICE ============================ */
/*@media (max-width: 1024px) {
  .filter-bar select:invalid {
    color: rgba(224, 232, 255, 0.7);
  }
}

@media (min-width: 1025px) {
  .filter-bar select:invalid {
    color: rgba(224, 232, 255, 0.5);
  }
}*/

.logo-support-row {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Uprav podľa potreby */
}

.logo-left {
    flex: 1;
}

.support-right {
    flex-shrink: 0;
}

/* Pôvodné štýly pre logo pravdepodobne ostávajú */
.logo {
    font-size: 24px;
    font-weight: bold;
}
.logo span {
    color: #e0e8ff; /* Alebo iná farba podľa vášho dizajnu */
}
.select-card {
    background: rgba(255,255,255,0.02);
    border:1px solid rgba(217,181,109,0.3);
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.select-card:hover {
    background: rgba(217,181,109,0.1);
    border-color: rgba(217,181,109,0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(217,181,109,0.2);
}
/* CLEAN VERIFIED OVERLAY (no card, no border) */
.verified-overlay {
    position: absolute;

    /* POSUN – viac hore a viac doľava */
    top: 4px;        /* bolo 10px */
    left: 6px;       /* bolo 10px */

    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.8px;

    color: #26D0FF;

    /* ostrejší glow + viditeľnosť aj na svetlejších fotkách */
    text-shadow:
        0 0 4px rgba(38,208,255,0.9),
        0 0 10px rgba(38,208,255,0.6);

    z-index: 20;
    pointer-events: none;
}
/* =========================================================
   ABSOLÚTNY FIX – MOBIL MÁ VŽDY 2 KARTY (NEDÁ SA PREBIŤ)
   ========================================================= */
@media only screen and (max-width: 768px) {
    .escort-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }
}
@media only screen and (max-width: 420px) {
    .escort-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
