/* Extracted from index_optimized.html on export */
:root {
  --brand-1: #7c6ff4;
  --brand-2: #26c1ff;
  --brand-3: #111827;
  --muted: #64748b;
  --muted-soft: #8a97a7;
  --card-border: #e9edf3;
  --chip-bg: #f6f8fb;
  --chip-tx: #0f172a;
  --btn-initial: #263ED6;
  --btn-active: #0ea5e9;
  --soft-gray: #eef2f6;
  --soft-gray-2: #e6ebf2;
  --ink: #334155;
}

body {
  background: #f8fafc;
  color: var(--brand-3);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hero {
  background: linear-gradient(100deg, var(--brand-1), var(--brand-2));
  border-radius: 22px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(93, 72, 224, .25);
  position: relative;
  overflow: hidden;
}

.hero .form-control {
  border: 0;
  height: 56px;
  box-shadow: none !important;
}

.hero .btn-primary {
  background: var(--btn-initial);
  border: 0;
  height: 56px;
  padding: 0 24px;
  font-weight: 600;
  cursor: pointer;
}

.subtle {
  color: #e5f2ff;
  font-size: .95rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--chip-bg);
  color: var(--chip-tx);
  font-size: .85rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

.dj-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.dj-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .08);
  border-color: #e4e7ec;
}

.cover {
  background: #eaf6ff var(--cover-image, url("../assets/cover.png")) left / cover no-repeat;
  height: 160px;
  position: relative;
}

.avatar {
  position: absolute;
  left: 20px;
  bottom: -28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(2, 6, 23, .08);
  font-weight: 700;
  color: #334155;
}

.verified {
  color: #22c55e;
  font-size: 1rem;
  vertical-align: -1px;
}

.card-body {
  padding: 20px;
  padding-top: 42px;
}

.meta {
  color: var(--muted);
  font-size: .95rem;
}

.tag {
  padding: .35rem .6rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  font-size: .82rem;
  color: #0f172a;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  border: 1px solid #e8eef6;
  color: #0f172a;
  background: #fff;
}

.distance-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: #0ea5e9;
  color: #fff;
  padding: .3rem .55rem;
  font-size: .8rem;
  border-radius: 8px;
}

.brand-logo {
  width: 400px;
  height: auto;
  display: block
}

/* Minimalist toggle */
.view-toggle {
  display: flex;
  gap: .5rem;
  background: var(--soft-gray);
  padding: .3rem;
  border-radius: 999px;
  border: 1px solid var(--soft-gray-2);
}

.view-toggle .btn-toggle {
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--soft-gray-2);
  padding: .35rem .8rem;
  border-radius: 999px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.view-toggle .btn-toggle:hover {
  background: #f7f9fc;
}

.view-toggle .btn-toggle.is-active {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #fff;
  box-shadow: 0 4px 14px rgba(14, 165, 233, .25);
}

/* Table polish */
.table thead th {
  white-space: nowrap;
  color: #000000;
  font-weight: 600;
  background-color: #e9ecef !important;
}

.table a {
  text-decoration: none;
}

@media (max-width: 576px) {
  .hero {
    padding: 18px;
  }

  .hero .btn-primary {
    height: 52px;
  }

  .cover {
    background: #eaf6ff var(--cover-image, url("../assets/cover.png")) left / cover no-repeat;
    height: 160px;
    position: relative;
  }

  .view-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .view-toggle .btn-toggle {
    flex: 1 1 0;
    justify-content: center;
  }
}

/* Old hero styles and animations removed for cleanup */


/* --- ORIGINAL HERO STYLES --- */
/* --- NEW HERO MESH GRADIENT STYLES --- */
.hero {
  position: relative;
  overflow: hidden;
  /* Base deep blue color */
  background-color: #1a1a40;
  z-index: 1;
}

/* Dynamic mesh gradient background */
.hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%,
      rgba(124, 111, 244, 0.8),
      rgba(38, 62, 214, 0.8),
      rgba(38, 193, 255, 0.6),
      rgba(93, 72, 224, 0.8));
  background-size: 50% 50%;
  filter: blur(60px);
  animation: meshMove 10s ease-in-out infinite alternate;
  z-index: -1;
  opacity: 0.85;
}

/* Secondary moving layer for extra depth */
.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(120deg, transparent, rgba(38, 193, 255, 0.3), transparent);
  animation: sheenMove 8s linear infinite;
  z-index: -1;
  mix-blend-mode: overlay;
}

@keyframes meshMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-10%, -5%) rotate(5deg);
  }

  100% {
    transform: translate(0, -10%) rotate(-5deg);
  }
}

@keyframes sheenMove {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }

  100% {
    transform: translateX(200%) skewX(-15deg);
  }
}

/* -------------------------------------------------------------- */

/* === CHRISTMAS & FROZEN HERO THEME (Disabled) === */
.hero-christmas {
  /* Magical Winter Night Gradient (Deep Blue to Frosty Cyan) */
  background: linear-gradient(125deg, #020617 0%, #172554 40%, #0891b2 100%);
  background-size: 200% 200%;
  animation: xmasGrad 12s ease infinite;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(8, 145, 178, 0.25);
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Snowflake Overlay */
.hero-christmas::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  /* Generating snow via radial gradients */
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.9) 2px, transparent 2.5px),
    radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.7) 1.5px, transparent 2px),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.8) 2px, transparent 2.5px),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.9) 1.5px, transparent 2px),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.6) 2px, transparent 2.5px),
    radial-gradient(circle at 15% 90%, rgba(255, 255, 255, 0.8) 1.5px, transparent 2px);
  background-size: 400px 400px;
  animation: snowFall 25s linear infinite;
  mix-blend-mode: screen;
}

/* Subtle Icicles Top Decoration */
.hero-christmas::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='20' viewBox='0 0 40 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 L8 18 L16 0 L24 14 L32 0 L40 10 L40 0 Z' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 20px;
  pointer-events: none;
  z-index: 1;
}

@keyframes xmasGrad {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes snowFall {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 400px;
  }
}



/* --- Responsive brand spacing & logo scaling --- */
.navbar .navbar-brand {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-logo {
  width: 225px;
  height: auto;
}

.logo-tagline {
  margin-left: 70px;
  font-weight: 600;
  white-space: nowrap;
}

/* Small devices */
@media (max-width: 576px) {
  .brand-logo {
    width: 170px;
  }

  .logo-tagline {
    margin-left: 70px;
    font-size: .95rem;
  }
}

/* Very small devices */
@media (max-width: 420px) {
  .brand-logo {
    width: 150px;
  }

  .logo-tagline {
    margin-left: 70px;
    font-size: .9rem;
  }
}


/* Override spacing utility for header area */
.py-3 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Mobile: ensure logo fits with tagline on one line */
@media (max-width: 576px) {
  .brand-logo {
    width: 195px !important;
  }
}


/* === Promo banner (DJpromo) === */
.promo-banner {
  background: linear-gradient(120deg, #6b21a8, #2563eb);
  background-size: 200% 200%;
  animation: grad 6s ease infinite;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
  border-radius: 1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.promo-banner h3 {
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
}

.promo-banner .btn-promo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.25rem;
  border-radius: .75rem;
  background: #fde047;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  white-space: nowrap;
}

.promo-banner .btn-promo:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}


/* === Brand + tagline stack === */
.brand-stack {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.brand-logo {
  width: 225px;
  height: auto;
  display: block;
}

.logo-tagline {
  display: block;
  font-weight: 600;
  margin-top: -10px;
  margin-left: 70px;
  white-space: nowrap;
  color: #0f172a;
  font-size: .98rem;
}

@media (max-width: 576px) {
  .brand-logo {
    width: 185px !important;
    height: auto;
  }

  .logo-tagline {
    margin-left: 70px;
    font-size: .92rem;
    margin-top: -8px;
  }
}

@media (max-width: 420px) {
  .logo-tagline {
    margin-left: 70px;
    font-size: .90rem;
    margin-top: -7px;
  }
}

.dj-card {
  cursor: pointer;
}

#tipy-na-dotazy .btn {
  white-space: nowrap;
  line-height: 1.2;
}

#tipy-na-dotazy .container {
  max-width: 1040px;
}

#tipy-na-dotazy h2 {
  font-weight: 800;
}

#tipy-na-dotazy p.lead {
  color: var(--bs-secondary-color, #6c757d);
}

/* Kruhový odznak ikon – náhrada za inline width/height (vizuál beze změny) */
.icon-badge {
  width: 56px;
  height: 56px
}

/* Unified Action Buttons: Rychlá poptávka, Zobrazit výsledky, Poptat DJe, Odeslat poptávku */
#btnGeneralRequest,
#submitBtn,
.btn-cta-djk,
/* Modal submit button generic targeting if ID not present */
.modal-footer .btn-primary {
  background-color: #263ED6 !important;
  border-color: #263ED6 !important;
  color: #fff !important;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

#btnGeneralRequest:hover,
#btnGeneralRequest:focus,
#submitBtn:hover,
#submitBtn:focus,
.btn-cta-djk:hover,
.btn-cta-djk:focus,
.modal-footer .btn-primary:hover,
.modal-footer .btn-primary:focus {
  background-color: #1a2bb0 !important;
  /* Darker blue */
  border-color: #1a2bb0 !important;
  color: #fff !important;
  filter: none !important;
  box-shadow: 0 4px 12px rgba(38, 62, 214, 0.25);
}

.modal-elev {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(2, 6, 23, .25)
}

.section-soft {
  background: #f6f7fb;
  border: 1px solid #e8ecf3;
  border-radius: 12px;
  padding: 12px
}

.field {
  position: relative
}

#rqBudget {
  padding-right: 3.2rem
}




/* Safety: ensure readable padding on card body and no overlay clipping */
.dj-card .card-body {
  padding: 20px 20px 20px 20px;
}


/* Prevent DJ name from overlapping avatar */
.dj-card .card-body h3.h6 {
  margin-top: 20px !important;
}

.justify-content-between {
  justify-content: space-evenly;
}

.justify-content-between {
  justify-content: space-between !important;
}


/* TOP badge styling */
.top-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-block;
  padding: .3rem .6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  background: #ffdf5d;
  color: #111827;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .06);
}

.verified-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  display: inline-block;
  padding: .3rem .6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  background: #dcfce7;
  color: #14532d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .06);
}



/* === TOP banner styling === */
.top-banner {
  background: linear-gradient(135deg, #FFF5B5 0%, #FFE85C 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #111827;
}

.top-banner h2 {
  color: #111827;
}

.top-banner .btn-primary {
  background-color: #2563EB;
  border: none;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.top-banner .btn-primary:hover {
  background-color: #1E40AF;
}

.top-banner .price-box {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* === /TOP banner styling === */


/* === TOP banner fullwidth/mobile tweaks === */
.top-banner {
  width: 100%;
  border-radius: 16px;
  /* keep gentle rounding to match cards */
  margin-left: 0;
  margin-right: 0;
}

.top-banner .container {
  max-width: 100%;
}

@media (max-width: 576px) {
  .top-banner .container {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .top-banner h2 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .top-banner .lead {
    font-size: 1rem;
  }

  .top-banner .btn.btn-lg {
    font-size: 1rem;
    padding: .6rem 1.25rem;
  }

  .top-banner .price-box .fs-4 {
    font-size: 1.1rem;
  }
}


/* === TOP banner final tweaks === */
.top-banner {
  width: 100%;
  margin: 0 auto;
  /* background-color: #ffffff !important; REVERTED to show gradient */
}

.top-banner .container {
  max-width: 1000px;
  /* centered fixed width within white bg */
  margin: 0 auto;
}

@media (max-width: 768px) {
  .top-banner .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


/* Custom footer heart icon */
.heart-footer {
  font-size: 1rem !important;
  vertical-align: middle;
}


/* Reduce top padding for white banner container */
.p-4.rounded-4.bg-white {
  padding-top: 0.5rem !important;
}


/* Zarovnání textu "Je zaměřený na komplexní přehled DJů v ČR..." */
#podpora-projektu p.text-secondary.mb-3 {
  text-align: center;
}


/* === Responsive text centering for mobile devices === */
@media (max-width: 576px) {

  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a,
  li,
  span,
  div,
  footer,
  section {
    text-align: center !important;
  }
}


/* === Center 'Podpořit projekt' button on mobile === */
@media (max-width: 576px) {
  #supportStripeBtn {
    display: block;
    margin: 1rem auto !important;
  }
}


/* === Adjust vertical gutter spacing on mobile === */
@media (max-width: 576px) {

  .g-3,
  .gy-3 {
    --bs-gutter-y: 2rem;
  }
}


/* === Exceptions: keep left alignment for DJ cards and request modal === */
@media (max-width: 576px) {

  #requestModal,
  #requestModal *,
  .dj-card,
  .dj-card * {
    text-align: left !important;
  }
}


/* === Align container width for Tips and TOP banner to match steps section === */
@media (min-width: 992px) {

  #tipy-na-dotazy .container,
  .top-banner .container {
    max-width: 1320px;
  }
}


/* === Adjust spacing between support text and button === */
#podpora-projektu .d-flex.flex-column.flex-md-row.align-items-start.align-items-md-center.justify-content-between.gap-2 {
  gap: 0.5rem !important;
}


/* === Desktop fix: bring support button closer to text === */
@media (min-width: 992px) {
  #podpora-projektu .d-flex.flex-column.flex-md-row.align-items-start.align-items-md-center.justify-content-between.gap-2 {
    justify-content: flex-start !important;
    gap: 0.75rem !important;
  }
}


/* === Center entire support section (icon, text, and button) on desktop === */
@media (min-width: 992px) {
  #podpora-projektu .d-flex.flex-column.flex-md-row.align-items-start.align-items-md-center.justify-content-between.gap-2 {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.75rem !important;
  }
}


/* Dynamická výška dokumentového modalu podle obsahu iframe */
#docModal .modal-dialog {
  max-height: 70vh;
}


#docModal .modal-dialog {
  max-height: 70vh;
}

#docModal iframe#docFrame {
  width: 100%;
  height: auto;
  max-height: 60vh;
  border: 0;
}

/* Login Page Styles */
.login-shell {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.login-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
  border: 1px solid #e5e7eb;
  max-width: 400px;
  width: 100%;
  padding: 2rem 1.75rem 1.75rem;
}

.login-card h1 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.login-card p.sub {
  margin: 0 0 1.5rem;
  color: #6b7280;
  font-size: .9rem;
}

.login-error {
  display: none;
}

/* === Modal Header Cover Image === */
#requestModal .modal-header.has-cover {
  background-size: cover;
  background-position: center;
  height: 140px;
  align-items: flex-end;
  position: relative;
}

#requestModal .modal-header.has-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  z-index: 0;
}

#requestModal .modal-header.has-cover .modal-title {
  color: #fff;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#requestModal .modal-header.has-cover .btn-close {
  filter: invert(1);
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

/* Index Page Styles */
@media (max-width: 767.98px) {
  #jak-to-funguje {
    padding-top: 0 !important;
  }

  section {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-5,
  .my-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .mb-5 {
    margin-bottom: 0 !important;
  }
}

/* === Compact DJ Register modal === */
#djRegisterModal .modal-dialog {
  margin: 0.5rem auto;
}

#djRegisterModal .modal-content {
  border: 0;
}

#djRegisterModal .modal-header {
  padding: 10px 12px;
}

#djRegisterModal .modal-body {
  padding: 0;
}

#djRegisterModal iframe#djRegisterFrame {
  display: block;
  width: 100%;
  border: 0;
  height: calc(100vh - 160px);
  max-height: 80vh;
  min-height: 420px;
}

/* === DJ Register modal: minimal margins and inner spacing === */
#djRegisterModal .modal-dialog {
  margin: 0.75rem auto;
  /* small outer margin */
}

#djRegisterModal .modal-content {
  border-radius: 6px;
  /* subtle rounding */
  padding: 4px;
  /* minimal inner spacing */
}

#djRegisterModal .modal-body {
  padding: 0;
  /* no padding inside body */
}

#djRegisterModal iframe#djRegisterFrame {
  display: block;
  width: 100%;
  border: 0;
  height: calc(100vh - 180px);
  /* balanced height under header */
  max-height: 85vh;
  min-height: 420px;
}

@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 780px;
  }
}

/* TOPování varianty – UI */
#top-variants .variant-item {
  background: #fff;
  color: #111;
  border: 1px solid #dcdcdc;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

#top-variants .variant-item:hover {
  border-color: #999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

#top-variants .variant-item.selected {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .08) inset;
}

#top-variants .variant-item .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid #444;
}

#kraj-picker {
  background: #fafafa;
  border: 1px dashed #ddd;
  border-radius: 10px;
  padding: .75rem;
}

#kraj-picker label.badge {
  background: #fff;
  color: #111;
  border: 1px solid #ccc;
  cursor: pointer;
}

#kraj-picker label.badge input {
  vertical-align: middle;
}

#top-summary {
  font-weight: 600;
  color: #111;
}

/* Pouze pro .card-body v rámci banneru .top-banner */
.top-banner .card-body {
  background-color: #ffe85c73 !important;
}

.text-dark.fw-semibold {
  text-align: left !important;
}

.gap-2 {
  gap: 0.3rem !important;
}

/* === Mobilní zobrazení (≤576px) === */
@media (max-width: 576px) {
  .gap-3 {
    gap: 0.5rem !important;
  }

  .p-3 {
    padding: 0.5rem !important;
  }

  /* Zmenšení textu v rámci variant */
  #top-variants .fw-semibold {
    font-size: 0.95rem !important;
  }

  #top-variants .text-secondary {
    font-size: 0.85rem !important;
  }

  /* Zmenšení nadpisu a krajů */
  #kraj-picker .small.mb-2 {
    font-size: 0.8rem !important;
  }

  #kraj-picker label.badge {
    font-size: 0.75rem !important;
    padding: 0.25rem 0.5rem !important;
  }
}

/* Cursor pointer pro varianty v banneru */
#top-variants .variant-item:hover {
  cursor: pointer;
}

#requestModal .modal-body {
  padding: 1rem;
}

#requestModal .form-label,
#generalRequestModal .form-label,
#editModal .form-label {
  font-weight: 700;
}



/* Animace pro stats karty v uvítacím bloku */
.stats-card {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, filter 0.2s ease-out;
  transform-origin: center;
}

.stats-card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
  filter: brightness(1.03);
}

.stats-card-main {
  animation: statsFadeIn 0.5s ease-out 0s both;
}

.stats-card-top {
  animation: statsFadeIn 0.5s ease-out 0.07s both;
}

.stats-card-verified {
  animation: statsFadeIn 0.5s ease-out 0.14s both;
}

@keyframes statsFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Inline styles extracted */
.step-img {
  border: none;
  outline: 0;
  box-shadow: none;
  background: transparent;
  max-width: 366px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.welcome-box {
  background: linear-gradient(135deg, #ffffff, #f9fafb);
}

.welcome-title {
  margin-bottom: 2.5rem;
}

.ls-08 {
  letter-spacing: .08em;
}

.bg-gold-soft {
  background: #facc6b;
}

.bg-green-soft {
  background: #4ade80;
  color: #052e16;
}

/* === Modal Header Cover Image === */
#requestModal .modal-header.has-cover {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  border-bottom: 0;
  min-height: 120px;
  align-items: flex-end;
  /* Align title to bottom */
  z-index: 1;
}

@media (min-width: 992px) {
  #requestModal .modal-header.has-cover {
    height: 200px;
  }
}

#requestModal .modal-header.has-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  z-index: -1;
  border-radius: 18px 18px 0 0;
  /* Match modal rounded corners */
}

#requestModal .modal-header.has-cover .modal-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

#requestModal .modal-header.has-cover .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

#requestModal .modal-header.has-cover .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* === Header Action Group (Desktop Only) === */
@media (min-width: 992px) {
  .nav-action-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 4px 4px 4px 20px;
    border: 1px solid #263ED6;
    border-radius: 50rem;
    background-color: #fff;
  }
}

/* === Public Requests Link === */
#linkPublicRequests {
  text-decoration: underline;
}

#linkPublicRequests:hover {
  text-decoration: none;
}

/* Global: remove underline on hover for all links */
a:hover {
  text-decoration: none;
}

/* Darker shade on hover for the search button (magnifying glass) */
#btnGrqSearch:hover {
  background-color: #0b5ed7 !important;
  border-color: #0a58ca !important;
}

/* Mobile shift for DJ hero image */
@media (max-width: 576px) {
  .hero-dj-mobile-shift {
    margin-left: 160px;
    margin-top: -40px !important;
  }

  /* White shadow for General Request button on mobile */
  #btnGeneralRequest {
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.8) !important;
  }
}

/* Dynamic Top Shadow for Hero Section */
@keyframes neonTopGlow {
  0% {
    box-shadow: 0 -20px 40px rgba(13, 110, 253, 0.5);
  }

  25% {
    box-shadow: 0 -20px 40px rgba(111, 66, 193, 0.5);
  }

  50% {
    box-shadow: 0 -20px 40px rgba(214, 51, 132, 0.5);
  }

  75% {
    box-shadow: 0 -20px 40px rgba(13, 202, 240, 0.5);
  }

  100% {
    box-shadow: 0 -20px 40px rgba(13, 110, 253, 0.5);
  }
}


.hero {
  animation: neonTopGlow 3s infinite linear;
}

/* Slideshow navigation */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  backdrop-filter: blur(2px);
}

.slide-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.slide-nav.prev {
  left: 10px;
}

.slide-nav.next {
  right: 10px;
}


.slide-nav i {
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .slide-nav {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(0, 0, 0, 0.6);
    width: 36px;
    height: 36px;
  }

  .slide-nav i {
    text-align: center !important;
    display: block !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
  }
}

/* Shimmer Effect + Shake for Badge */
.shimmer-effect {
  background: linear-gradient(90deg, #dc3545 0%, #ff8795 50%, #dc3545 100%);
  background-size: 200% 100%;
  animation: shimmerBadge 2s infinite linear, gentleShake 3s infinite ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

@keyframes shimmerBadge {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

@keyframes gentleShake {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  5% {
    transform: rotate(2deg) scale(1.05);
  }

  10% {
    transform: rotate(-2deg) scale(1.05);
  }

  15% {
    transform: rotate(2deg) scale(1.05);
  }

  20% {
    transform: rotate(0deg) scale(1);
  }
}

/* === DARK MODE STYLES === */
[data-bs-theme="dark"] {
  --brand-3: #f8fafc;
  --muted: #94a3b8;
  --muted-soft: #64748b;
  --card-border: #334155;
  --chip-bg: #1e293b;
  --chip-tx: #e2e8f0;
  --soft-gray: #1e293b;
  --soft-gray-2: #334155;
  --ink: #cbd5e1;
  --bs-body-bg: #0f172a;
  --bs-body-color: #f8fafc;
}

[data-bs-theme="dark"] body {
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}

[data-bs-theme="dark"] .bg-white {
  background-color: #1e293b !important;
  color: #f8fafc;
}

[data-bs-theme="dark"] .bg-light {
  background-color: #0f172a !important;
  color: #f8fafc;
}

[data-bs-theme="dark"] .text-dark {
  color: #f8fafc !important;
}

[data-bs-theme="dark"] .text-muted {
  color: #94a3b8 !important;
}

[data-bs-theme="dark"] .bg-gold-soft .text-muted,
[data-bs-theme="dark"] .bg-gold-soft .text-dark {
  color: #000000 !important;
}

[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .dj-card {
  background-color: #1e293b;
  border-color: #334155;
}

[data-bs-theme="dark"] .dj-card:hover {
  border-color: #475569;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

[data-bs-theme="dark"] .section-soft {
  background: #1e293b;
  border-color: #334155;
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
  background-color: #0f172a;
  border-color: #334155;
  color: #f8fafc;
}

[data-bs-theme="dark"] .form-control::placeholder {
  color: #64748b;
}

[data-bs-theme="dark"] .input-group-text {
  background-color: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}

[data-bs-theme="dark"] .modal-content {
  background-color: #1e293b;
  border-color: #334155;
}

[data-bs-theme="dark"] .modal-header,
[data-bs-theme="dark"] .modal-footer {
  border-color: #334155;
}

[data-bs-theme="dark"] .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

[data-bs-theme="dark"] .table {
  color: #f8fafc;
  --bs-table-color: #f8fafc;
  --bs-table-bg: #1e293b;
  --bs-table-border-color: #334155;
}

[data-bs-theme="dark"] .table-light {
  --bs-table-bg: #0f172a;
  --bs-table-color: #f8fafc;
}

[data-bs-theme="dark"] .table thead th {
  background-color: #0f172a !important;
  color: #f8fafc;
}

[data-bs-theme="dark"] .view-toggle {
  background: #0f172a;
  border-color: #334155;
}

[data-bs-theme="dark"] .view-toggle .btn-toggle {
  background: #1e293b;
  color: #cbd5e1;
  border-color: #334155;
}

[data-bs-theme="dark"] .view-toggle .btn-toggle.is-active {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
}

[data-bs-theme="dark"] .view-toggle .btn-toggle:not(.is-active):hover {
  background: #334155;
}

/* Specific component overrides */
[data-bs-theme="dark"] .promo-banner h3 span {
  color: #fff !important;
}

[data-bs-theme="dark"] .top-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
}

[data-bs-theme="dark"] .top-banner .price-box {
  background-color: #1e293b;
  border-color: #334155;
}

[data-bs-theme="dark"] .top-banner .price-box span.text-dark {
  color: #f8fafc !important;
}

[data-bs-theme="dark"] .top-banner label.variant-item {
  background-color: #1e293b;
  border-color: #334155 !important;
}

[data-bs-theme="dark"] .top-banner label.variant-item:hover {
  background-color: #334155;
}

[data-bs-theme="dark"] .top-banner h2 {
  color: #f8fafc !important;
}

[data-bs-theme="dark"] .welcome-box {
  background-color: #1e293b !important;
}

[data-bs-theme="dark"] .tag {
  background-color: #334155;
  border-color: #475569;
  color: #e2e8f0;
}

[data-bs-theme="dark"] .link-pill {
  background-color: #1e293b;
  border-color: #334155;
  color: #cbd5e1;
}

/* Footer Links */
[data-bs-theme="dark"] footer a {
  color: #94a3b8;
}

[data-bs-theme="dark"] footer a:hover {
  color: #e2e8f0;
}

/* === DARK MODE FIXES & COMPONENTS === */
/* Logo Tagline */
[data-bs-theme="dark"] .logo-tagline {
  color: #f8fafc !important;
}

[data-bs-theme="dark"] #linkPublicRequests {
  color: #ffffff !important;
}

/* Welcome Box - Force dark background and white text */
[data-bs-theme="dark"] .welcome-box {
  background: #1e293b !important;
  color: #f8fafc !important;
}

[data-bs-theme="dark"] .welcome-box h2.welcome-title {
  color: #f8fafc !important;
}

[data-bs-theme="dark"] .welcome-box p.text-secondary {
  color: #cbd5e1 !important;
  /* Lighter grey for readability on dark */
  opacity: 1;
  /* Reset potential opacity */
}

[data-bs-theme="dark"] .welcome-box strong {
  color: #fff !important;
}

/* Top Banner - Pricing Variants & Cards */
[data-bs-theme="dark"] .top-banner label.variant-item {
  background-color: #1e293b !important;
  /* Dark blue-grey background */
  border-color: #334155 !important;
  color: #f8fafc;
}

[data-bs-theme="dark"] .top-banner .card,
[data-bs-theme="dark"] .top-banner .card-header {
  background-color: #1e293b !important;
  color: #f8fafc;
  border-color: #334155 !important;
}

[data-bs-theme="dark"] .top-banner label.variant-item:hover {
  background-color: #334155 !important;
  /* Slightly lighter on hover */
}

/* Ensure text inside Top Banner is readable */
[data-bs-theme="dark"] .top-banner .text-dark {
  color: #f8fafc !important;
}

[data-bs-theme="dark"] .top-banner .text-muted {
  color: #94a3b8 !important;
}

/* === LOGIN PAGE DARK MODE === */
[data-bs-theme="dark"] .login-card {
  background-color: #1e293b;
  border-color: #334155;
  color: #f8fafc;
}

[data-bs-theme="dark"] .login-card h1 {
  color: #f8fafc;
}

[data-bs-theme="dark"] .login-card p.sub {
  color: #94a3b8;
}

[data-bs-theme="dark"] .login-card label.form-label {
  color: #e2e8f0;
}

[data-bs-theme="dark"] .login-card .form-check-label {
  color: #cbd5e1;
}

/* === ADMIN DARK MODE OVERRIDES === */
[data-bs-theme="dark"] .admin-header {
  background: #1e293b !important;
  border-bottom-color: #334155 !important;
  color: #f8fafc !important;
}

[data-bs-theme="dark"] .admin-header small {
  color: #cbd5e1 !important;
}

[data-bs-theme="dark"] .table-wrapper {
  background: #1e293b !important;
  border-color: #334155 !important;
}

[data-bs-theme="dark"] .table-wrapper h1 {
  color: #f8fafc !important;
}

[data-bs-theme="dark"] .table-wrapper .text-muted {
  color: #94a3b8 !important;
}

[data-bs-theme="dark"] .row-sent td {
  background-color: rgba(22, 163, 74, 0.2) !important;
  /* Green 600 with opacity */
  color: #e2e8f0;
}

[data-bs-theme="dark"] .row-confirmed td,
[data-bs-theme="dark"] .row-verified td {
  background-color: rgba(34, 197, 94, 0.2) !important;
  color: #e2e8f0;
}

[data-bs-theme="dark"] .row-deleted td {
  background-color: rgba(220, 38, 38, 0.2) !important;
  /* Red 600 with opacity */
  color: #e2e8f0;
}

[data-bs-theme="dark"] .row-consent-b td {
  background-color: rgba(234, 88, 12, 0.2) !important;
  /* Orange 600 with opacity */
  color: #e2e8f0;
}

[data-bs-theme="dark"] .actions-cell,
[data-bs-theme="dark"] .actions-header {
  background: #1e293b !important;
  /* Match table wrapper bg */
}