/* --- GLOBÁLNÍ RESET HORIZONTÁLNÍHO SCROLLU --- */
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* --- ZÁKLADNÍ HEADER --- */
.header {
  background: rgba(3, 17, 25, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  transition: all 0.3s;
  z-index: 997;
}

/*
  KLÍČOVÝ FIX MOBILNÍHO MENU:
  backdrop-filter na headeru vytváří "containing block" pro position:fixed elementy uvnitř —
  navmenu se proto roztáhne jen na výšku headeru, ne přes celou obrazovku.
  Odstraněním backdrop-filter při otevření menu tento efekt zrušíme.
*/
.mobile-nav-active .header {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(3, 17, 25, 0.95) !important;
}

.logo-img {
  max-height: 70px;
}

/* --- DESKTOP NAVIGACE & DROPDOWN --- */

/* Desktop: navmenu jako normální element */
@media (min-width: 1200px) {
  .navmenu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    background: transparent !important;
    backdrop-filter: none !important;
    display: block !important;
  }

  .mobile-nav-toggle {
    display: none !important;
  }
}

.navmenu ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navmenu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
}

.navmenu a:hover, .navmenu .active {
  color: #ff007f;
}

/* Stylování Dropdownu (podmenu) */
.navmenu .dropdown {
  position: relative;
}

.navmenu .dropdown ul {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  margin: 10px 0 0 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(3, 17, 25, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 127, 0.2);
  border-radius: 12px; /* Kulaté rohy */
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.navmenu .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navmenu .dropdown ul li {
  min-width: 200px;
}

.navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: #fff;
  display: block;
}

.navmenu .dropdown ul a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* ================================================
   MOBILNÍ MENU - kompletní přepis
   Toggle button je nyní MIMO <nav>, takže
   position:fixed na navmenu funguje správně.
   ================================================ */

/* Toggle tlačítko - hamburger */
.mobile-nav-toggle {
  display: none;
}

@media (max-width: 1199px) {
  /* Zarovnání doprava */
  .mobile-nav-toggle {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.3s, border-color 0.3s;
    flex-shrink: 0;
  }

  .mobile-nav-toggle:hover {
    background: rgba(255, 0, 127, 0.1);
    border-color: rgba(255, 0, 127, 0.35);
  }

  /* 3 čáry */
  .mobile-nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.35s ease;
    transform-origin: center;
  }

  .mobile-nav-toggle span:nth-child(1) { width: 22px; }
  .mobile-nav-toggle span:nth-child(2) { width: 14px; }
  .mobile-nav-toggle span:nth-child(3) { width: 18px; }

  /* Hover — čáry se srovnají */
  .mobile-nav-toggle:hover span {
    width: 22px;
    background: #ff007f;
  }

  /* Aktivní stav — animace do X */
  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 0, 127, 0.3);
    align-items: center;
  }

  .mobile-nav-active .mobile-nav-toggle span:nth-child(1) {
    width: 22px;
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-active .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-nav-active .mobile-nav-toggle span:nth-child(3) {
    width: 22px;
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Schovat E-SHOP tlačítko na mobilu */
  .container-fluid .btn-neon-booking {
    display: none;
  }

  /* Navmenu = fullscreen overlay, defaultně skrytý */
  .navmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 9998;
    background: rgba(3, 17, 25, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  /* Navmenu aktivní */
  .mobile-nav-active .navmenu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  /* Zavírací X tlačítko */
  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 10001;
    color: rgba(255, 255, 255, 0.7);
  }

  .mobile-nav-active .mobile-nav-toggle:hover {
    color: #ff007f;
  }

  /* Hlavní seznam */
  .navmenu > ul {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    position: static !important;
    inset: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 100%;
    max-width: 100%;
    text-align: center;
    overflow-y: auto;
    max-height: 100dvh;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.35s ease 0.1s, opacity 0.35s ease 0.1s;
  }

  .mobile-nav-active .navmenu > ul {
    transform: translateY(0);
    opacity: 1;
  }

  /* Položky menu */
  .navmenu ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navmenu ul li:last-child {
    border-bottom: none;
  }

  /* Linky */
  .navmenu a,
  .navmenu a:focus {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 20px !important;
    transition: color 0.3s, text-shadow 0.3s;
    text-decoration: none;
    white-space: nowrap;
  }

  .navmenu a:hover {
    color: #ff007f !important;
    text-shadow: 0 0 12px rgba(255, 0, 127, 0.4) !important;
  }

  /* Dropdown šipka — Bootstrap ikona */
  .navmenu .toggle-dropdown {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.35s ease, color 0.25s;
    flex-shrink: 0;
  }

  /* Aktivní — otočení + růžová */
  .navmenu .dropdown.active > a .toggle-dropdown {
    transform: rotate(180deg);
    color: #ff007f;
  }

  /* Dropdown sub-menu — skrytý */
  .navmenu .dropdown ul {
    position: static !important;
    inset: auto !important;
    display: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0 12px !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 0 !important;
  }

  /* Dropdown sub-menu — zobrazený */
  .navmenu .dropdown ul.dropdown-active {
    display: block !important;
  }

  .navmenu .dropdown ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navmenu .dropdown ul li:last-child {
    border-bottom: none;
  }

  .navmenu .dropdown ul a {
    font-size: 12px !important;
    letter-spacing: 2px !important;
    color: rgba(255, 255, 255, 0.45) !important;
    padding: 12px 20px !important;
    display: flex !important;
    justify-content: center !important;
    transition: color 0.25s !important;
  }

  .navmenu .dropdown ul a:hover {
    color: #ff007f !important;
    text-shadow: none !important;
  }

}

/* --- DESKTOP MENU --- */
.navmenu a:hover, 
.navmenu a.active {
  color: white;
  text-shadow: 0 0 3px #ff007f, 0 0 6px #ff007f, 0 0 9px #ff007f, 0 0 12px rgba(255, 0, 127, 0.7), 0 0 15px rgba(255, 0, 127, 0.5);
}

/* --- TLAČÍTKO E-SHOP (Ztlumená záře) --- */
.btn-getstarted-eshop {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 22px;
  border-radius: 10px;
  border: 1px solid #ff007f;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}

.btn-getstarted-eshop:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  /* Tvá specifická růžová záře zredukovaná o cca 30% v intenzitě i rozsahu */
  box-shadow: 
    0 0 3px #ff007f, 
    0 0 6px #ff007f, 
    0 0 9px #ff007f, 
    0 0 12px rgba(255, 0, 127, 0.7), 
    0 0 15px rgba(255, 0, 127, 0.5);
  transform: translateY(-1px); /* Drobný moderní posun nahoru */
}

/* --- DROPDOWN (Podmenu) --- */
.navmenu .dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 10px 0 0 0;
  padding: 10px 0;
  background: rgba(3, 17, 25, 0.92);
  backdrop-filter: blur(10px);
  /* Zjemněný okraj podmenu */
  border: 1px solid rgba(255, 0, 127, 0.15); 
  border-radius: 12px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}



/* Proč si vybrat studio Amazink? - styly níže u FIX VÝŠKY */

/* --- PODTRŽENÍ FIXOU (| otočené o 90°) --- */
.marker-underline {
  display: flex;
  justify-content: center;
  margin-top: -10px;
  opacity: 0.8;
}

.marker-underline span {
  display: inline-block;
  transform: rotate(90deg); /* Otočení o 90 stupňů */
  color: #ff007f;
  font-size: 24px;
  font-weight: 900;
  margin: 0 -2px; /* Překrytí, aby to vypadalo jako jedna linka */
  text-shadow: 0 0 10px #ff007f;
}

/* --- SLIDER - KULATÉ ROHY --- */
.modern-slider-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- TEXT LIST --- */
.custom-list {
  max-width: 90%;
  text-align: justify;
  list-style: none;
  padding: 0;
}

@media (max-width: 992px) {
  .custom-list{
    max-width: 100%;
  }
}

.custom-list li {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  font-weight: 400; /* Zrušení tučného písma */
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.custom-list i {
  color: #ff007f;
  font-size: 1.2rem;
  text-shadow: 0 0 5px rgba(255, 0, 127, 0.3);
}

/* --- TLAČÍTKA (podle tvého stylu) --- */
.btn-cta-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: #ff007f;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
  margin-right: 15px;
  margin-bottom: 10px;
}

.btn-cta-modern:hover {
  /* Tvá 70% redukovaná záře */
  box-shadow: 0 0 4px #ff007f, 0 0 8px #ff007f, 0 0 12px rgba(255, 0, 127, 0.6);
  color: black;
  transform: translateY(-2px);
}

.btn-cta-modern.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-modern.secondary:hover {
  /* Tvá 70% redukovaná záře */
  box-shadow: 0 0 4px #ff007f, 0 0 8px #ff007f, 0 0 12px rgba(255, 0, 127, 0.6);
  color: #ff007f;
  transform: translateY(-2px);
}


.swiper-pagination-bullet-active{
    background: #ff007f;
}

/* --- ABOUT SEKCE - VÝŠKA --- */
.about-fullscreen {
  background-color: #031119 !important;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow-x: clip;
}

.about-fullscreen > .container-fluid {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-fullscreen > .container-fluid > .row {
  flex: 1;
}

@media (min-width: 992px) {
  .about-content-right {
    padding-left: 80px !important;
    padding-right: 50px !important;
  }
}

/* --- OBRÁZEK S FIXEM VÝŠKY --- */
.about-fullscreen .col-lg-5 {
  display: flex;
  flex-direction: column;
}

.about-image-full {
  flex: 1;
  height: 100%;
  width: 100%;
}

.about-image-full .swiper,
.about-image-full .swiper-wrapper,
.about-image-full .swiper-slide {
  height: 100%;
}

.slide-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .about-fullscreen {
    align-items: flex-start;
  }

  .about-fullscreen > .container-fluid {
    min-height: unset;
  }

  .slide-img {
    height: 300px;
    border-right: none;
  }

  /* Zvětšení textů pro mobily */
  .main-titles {
    font-size: 1.8rem !important; /* Větší nadpis */
    text-align: center !important;
  }
  
  .marker-underline {
    justify-content: center !important;
  }

  .custom-list li {
    font-size: 1.15rem !important; /* Větší a čitelnější text výhod */
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .custom-list i {
    font-size: 1.4rem; /* Větší ikonky checku */
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .detail-content .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .detail-content .cta-buttons .btn-neon-booking {
    flex-basis: 100%;
    justify-content: center;
    order: 1;
  }

  .detail-content .cta-buttons .btn-insta-icon {
    order: 0;
  }

  .btn-cta-modern {
    width: 100%; /* Tlačítka přes celou šířku na mobilu pro lepší klikatelnost */
    justify-content: center;
    padding: 15px;
    font-size: 1rem;
  }
}

/* --- UPRAVENÝ FLOATING SIDE SCROLLER --- */
.side-scroller {
  position: fixed;
  right: 40px; /* Trochu dál od kraje pro vzdušnější pocit */
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px; /* Větší mezery mezi prvky pro protaženější vzhled */
  background: rgba(3, 17, 25, 0.5); /* Trochu výraznější sklo */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 35px 10px; /* Zvětšený padding pro větší rozměry */
  border-radius: 60px; /* Perfektní protažená pilulka */
  border: 1px solid rgba(255, 0, 127, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
}

/* Šipky nahoru/dolů - zvětšeno */
.scroll-arrow {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem; /* Větší ikony */
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-arrow:hover {
  opacity: 1;
  color: #ff007f;
  transform: scale(1.2);
  text-shadow: 0 0 12px #ff007f;
}

/* Tečky - protaženější rozestup a větší rozměr */
.scroll-dots {
  display: flex;
  flex-direction: column;
  gap: 18px; /* Protažení lišty přes rozestup teček */
}

.dot {
  width: 8px; /* Zvětšeno z 8px */
  height: 8px; /* Zvětšeno z 8px */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
}

.dot:hover, .dot.active {
  background: #ff007f;
  box-shadow: 0 0 12px #ff007f, 0 0 6px #ff007f;
  transform: scale(1.5);
}

/* Efekt při najetí na celou lištu - lehké zvýraznění */
.side-scroller:hover {
  border-color: rgba(255, 0, 127, 0.5);
  background: rgba(3, 17, 25, 0.65);
}

/* Skrytí na menších monitorech a mobilech */
@media (max-width: 1200px) {
  .side-scroller {
    right: 20px;
    padding: 25px 12px;
  }
}

/* =============================================== Tatéři section =========================================== */


.artist-card-modern:hover {
    box-shadow: 
    0 0 4px rgba(255, 0, 127, 0.8),
    0 0 10px rgba(255, 0, 127, 0.5),
    0 0 20px rgba(255, 0, 127, 0.3),
    0 0 30px rgba(255, 0, 127, 0.1);
}

.card-info-short {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  z-index: 2;
}

.card-info-short h2 {
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card-info-short span {
  color: #ff007f;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.detail-content {
  text-align: center;
  max-width: 400px;
  transform: translateY(30px);
  transition: 0.5s 0.2s all ease;
}

.detail-line{
  color: #ff007f;
}

.artist-card-modern.is-active .detail-content {
  transform: translateY(0);
}

.detail-content h2 b { color: #ff007f; }

/* Mini galerie prací */
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.mini-gallery img:hover {
  border-color: #ff007f;
  transform: scale(1.05);
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* =============================================== Tatéři / Kontakt section =========================================== */
.artists-fullscreen {
  background: #031119;
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spodní lišta */
.card-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 68%);
  backdrop-filter: blur(10px);
  padding: 35px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 30px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.artist-name h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Interaktivní část "Booknout si mě" */
.book-me {
  display: flex;
  align-items: center;
  color: #ff007f;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
}

.book-arrow {
  margin-left: 8px;
  width: 30px;
  height: 30px;
  border: 1px solid #ff007f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Efekt při najetí na celou kartu */
.artist-card-modern:hover .book-arrow {
  background: #ff007f;
  color: #fff;
  transform: translateX(5px);
}

.book-text{
    color: white;   
    text-transform: uppercase;
}

/* Overlay musí mít border-radius, aby lícoval s kartou */
.artist-detail-overlay {
  position: absolute;
  inset: 0;
/*   background: rgba(3, 17, 25, 0.98); */
  background: #000;
  backdrop-filter: blur(20px);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  padding: 40px;
  z-index: 10; /* Překryje i vykukující obrázek */
}

.artist-card-modern.is-active .artist-detail-overlay {
  opacity: 1;
  visibility: visible;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

/* --- Instagram Ikona --- */
.btn-insta-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.btn-insta-icon:hover {
  border-color: #ff007f;
  color: #ff007f;
  background: rgba(255, 0, 127, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 127, 0.3);
}

/* --- Hlavní Booking Tlačítko --- */
.btn-neon-booking {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 35px;
  background: #ff007f;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
  border: none;
}

.btn-neon-booking span {
  font-size: 0.9rem;
  z-index: 2;
}

.btn-neon-booking i {
  font-size: 1.1rem;
  z-index: 2;
}

/* Efekt "záblesku" při najetí */
.btn-neon-booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.btn-neon-booking:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 0, 127, 0.7);
  background: #ff1a8c;
  color: #fff;
}

.btn-neon-booking:hover::before {
  left: 100%;
}

/* Animace ikony kalendáře v tlačítku */
.btn-neon-booking:hover i {
  animation: pulse-icon 1s infinite;
}

/* Tlačítko 2 */

/* --- Sekundární Transparentní Tlačítko --- */
.btn-neon-secondary {
  position: relative;
  display: inline-flex; /* aby sedělo vedle prvního */
  align-items: center;
  gap: 12px;
  padding: 12px 30px; /* Sjednoceno s inline stylem prvního */
  background: transparent;
  color: #ff007f; /* Text v barvě neonu */
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #ff007f; /* Linka místo výplně */
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.btn-neon-secondary span, 
.btn-neon-secondary i {
  z-index: 2;
}

/* Efekt "záblesku" zůstává stejný */
.btn-neon-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

/* Hover efekty */
.btn-neon-secondary:hover {
  transform: scale(1.05);
  background: rgba(255, 0, 127, 0.1); /* Jemný nádech barvy v pozadí */
  color: #ff1a8c;
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.5);
  border-color: #ff1a8c;
}

.btn-neon-secondary:hover::before {
  left: 100%;
}

/* Animace ikony při najetí */
.btn-neon-secondary:hover i {
  animation: pulse-icon 1s infinite;
}

@keyframes pulse-icon {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Oprava pro mobilní telefony */
@media (max-width: 991px) {
  .artists-fullscreen {
    height: auto !important;
    min-height: 100vh;
    padding-bottom: 50px;
    align-items: flex-start;
  }

  .artists-fullscreen .row {
    gap: 5px;
  }

  .artist-card-modern {
    height: 450px !important;
  }
}

.artist-card-modern {
  position: relative;
  height: clamp(400px, 60vh, 650px);
  background: rgb(0 0 0 / 44%);
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid rgba(255, 0, 127, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

/* Styl pro obrázek - nyní fixovaný na šířku i výšku karty */
.card-bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;      /* Vždy vyplní šířku karty */
  height: 100%;     /* Vždy vyplní výšku karty */
  object-fit: cover; /* Ořízne obrázek tak, aby vyplnil prostor bez deformace */
  object-position: center bottom; /* Priorita je spodní hrana (nohy/trup) */
  transition: transform 0.6s ease, filter 0.6s ease;
  z-index: 1;
  border-radius: 0px 0px 40px 40px;
}

/* Úprava hoveru - zvětšení (zoom) uvnitř oříznuté karty */
.artist-card-modern:hover .card-bg-img {
  /* scale(1.1) vytvoří zoom efekt, aniž by obrázek utekl z karty */
  transform: scale(1.1); 
  filter: grayscale(0%) brightness(0.9);
}


/* ================================ Portfolio Balanced ================================ */
.portfolio {
  background: #000;
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
  overflow: hidden; 
  display: flex;
  flex-direction: column;
}

.portfolio::before {
  content: "";
  position: absolute;
  bottom: -144px;
  left: -23px;
  width: 500px;
  height: 730px;
  background: url(../img/dog02.png) no-repeat left bottom;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.portfolio-item-modern {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  /* Poměr 1:1.4 je ideální - ani moc velký, ani malý čtverec */
  aspect-ratio: 1 / 1.4; 
  width: 100%;
  z-index: 99;
}

.portfolio-item-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover efekty zůstávají - jsou duší té sekce */
.portfolio-item-modern:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #ff007f;
  box-shadow: 0 15px 30px rgba(255, 0, 127, 0.3);
  z-index: 10;
}

.portfolio-item-modern:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 0, 127, 0.4), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.portfolio-item-modern:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay i {
    color: #fff;
    font-size: 2.5rem;
    transition: 0.4s ease;
}

/* Cik-cak efekt pro desktop */
@media (min-width: 992px) {
  .mt-lg-5 {
    margin-top: 80px !important; /* Mírnější vlnění */
  }
}

/* Mobilní zobrazení: 2 vedle sebe, stále elegantní */
@media (max-width: 991px) {
  .portfolio-item-modern {
    aspect-ratio: 1 / 1.3; 
    border-radius: 15px;
  }
}

/* ================================ Kontakt =================================== */
.contact {
  background: #000;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  margin: 0;
  letter-spacing: 10px;
}

.contact-item-minimal {
  margin-bottom: 40px;
  border-left: 2px solid rgba(255, 0, 127, 0.3);
  padding-left: 25px;
  transition: 0.3s;
}

.contact-item-minimal:hover {
  border-left-color: #ff007f;
}

.contact-item-minimal .label {
  display: block;
  font-size: 1.1rem;
  color: #ff007f;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.contact-item-minimal .value {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0;
  color: #e0e0e0;
}

.map-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-decoration: none;
  transition: 0.3s;
}

.map-link:hover {
  color: #ff007f;
}

/* Sociální sítě */
.social-links-minimal a {
  color: #fff;
  text-decoration: none;
  margin-right: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  transition: 0.3s;
}

.social-links-minimal a:hover {
  color: #ff007f;
}

/* Mapa v rámu */
.map-wrapper-modern {
  height: 650px;
  border-radius: 2px; /* Skoro ostré rohy vypadají moderněji */
  overflow: hidden;
  position: relative;
  filter: grayscale(1) brightness(1) invert(1); /* Brutalistický vzhled mapy */
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.5s ease;
}

.map-wrapper-modern:hover {
  filter: grayscale(0) brightness(1) invert(0);
}

@media (max-width: 991px) {
  .contact { height: auto; padding-bottom: 50px; }
  .map-wrapper-modern { height: 300px; margin-top: 30px; }
  .contact-border { padding: 20px; }
  .contact-border .row.gy-4 { --bs-gutter-y: 0.6rem; }
  .form-group-modern { margin-bottom: 0; }
}

.contact-info{
  align-self: center;
}

.contact-border{
  background: black;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 
    0 0 4px rgba(255, 0, 127, 0.8),
    0 0 10px rgba(255, 0, 127, 0.5),
    0 0 20px rgba(255, 0, 127, 0.3),
    0 0 30px rgba(255, 0, 127, 0.1);
  margin: 15px;
}

/* --- Styl formuláře --- */
.form-group-modern {
  position: relative;
  margin-bottom: 15px;
}

.form-control-modern {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.745);
  border-radius: 8px;
  padding: 15px 20px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-control-modern:focus {
  background: rgba(255, 0, 127, 0.05);
  border-color: #ff007f;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
}

.form-control-modern::placeholder {
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.form-check.form-group.ps-0 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check.form-group.ps-0 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #ff007f;
  cursor: pointer;
}

.form-control-modern::placeholder{
  color: white;
}

/* --- Mapa na celou šířku --- */
.map-full-width {
  width: 100%;
  margin-top: 80px;
  line-height: 0; /* Odstraní malou mezeru pod iframe */
}

.map-full-width .map-wrapper-modern {
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0;
  filter: grayscale(1) brightness(0.6) invert(1); /* Mírně tmavší pro kontakt */
}

.map-full-width .map-wrapper-modern:hover {
  filter: grayscale(0) brightness(1) invert(0);
}

/* --- Responzivita --- */
@media (max-width: 991px) {
  .contact {
    padding-top: 80px;
  }
  .map-full-width {
    margin-top: 50px;
  }
}

/* --- Sociální sítě v sekci Kontakt --- */
.social-links-minimal {
  display: flex;
  gap: 30px;
  flex-wrap: wrap; /* Pro mobily, aby se nezalamovaly škaredě */
}

.social-links-minimal a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px; /* Mezera mezi ikonou a textem */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0.7; /* Decentní v klidu */
}

/* Ikona v odkazu */
.social-links-minimal a i {
  font-size: 1.2rem;
  color: #ff007f; /* Ikona svítí růžově i v základu */
  transition: transform 0.3s ease;
}

/* Hover efekt */
.social-links-minimal a:hover {
  color: #ff007f;
  opacity: 1;
  transform: translateX(5px); /* Jemný posun doprava */
  text-shadow: 0 0 10px rgba(255, 0, 127, 0.5); /* Záře textu */
}

/* Animace ikony při najetí */
.social-links-minimal a:hover i {
  transform: scale(1.2) rotate(-5deg);
}

/* Spodní linka, která se při hoveru vykreslí (volitelné) */
.social-links-minimal a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff007f;
  transition: width 0.3s ease;
}

.social-links-minimal a:hover::after {
  width: 100%;
}

/* Úprava pro mobil */
@media (max-width: 575px) {
  .social-links-minimal {
    flex-direction: column;
    gap: 20px;
  }
}


/* =========================================== Footer =========================================== */
.footer {
  background: #000;
  padding: 50px 0 30px 0;
  padding-bottom: calc(30px + env(safe-area-inset-bottom));
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Horní sekce s ikonami */
.footer-top-minimal {
  padding-bottom: 35px;
}

.footer-logo img {
  height: 70px;
  filter: brightness(0.9);
  transition: 0.3s;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item i {
  color: #ff007f; /* Ikona v růžové */
  font-size: 0.85rem;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s;
}

.footer-contact-item a:hover {
  color: #fff;
}

/* Vertikální oddělovač */
.footer-v-line {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 25px;
}

/* Ikony sociálních sítí v footeru */
.footer-social-simple a {
  color: rgba(255, 255, 255, 0.4);
  margin-left: 15px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.footer-social-simple a:hover {
  color: #ff007f;
  transform: translateY(-2px);
  display: inline-block;
}

/* Spodní linka a copyright */
.footer-divider {
  border: 0;
  border-top: 1px solid white;
  margin: 0;
}

.footer-bottom-minimal {
  padding-top: 25px;
}

.copyright, .credits, .footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.text-pink { color: #ff007f; font-weight: 800; }

.author-link {
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 700;
  transition: 0.3s;
}

.author-link:hover {
  color: #ff007f !important;
}

.footer-legal .sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.05);
}

.footer-legal a:hover {
  color: #fff;
}

/* Mobile fix */
@media (max-width: 991px) {
  .footer-cta-group {
    display: none !important;
  }
  .footer-top-minimal {
    justify-content: center !important;
  }
  .footer-bottom-minimal .row > div {
    margin-bottom: 15px;
  }
}
/* ================================================
   BOOKING FORM — ČERNÉ POZADÍ (viktorie, maky, rozalie)
   ================================================ */
.contact .contact-form-wrapper {
  background-color: #000000 !important;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control,
.contact .contact-form-wrapper .form-group .input-with-icon select.form-control {
  background-color: #1b242a !important;
  color: #e0e0e0;
  border-color: rgba(255, 255, 255, 0.12);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:-webkit-autofill,
.contact .contact-form-wrapper .form-group .input-with-icon .form-control:-webkit-autofill:hover,
.contact .contact-form-wrapper .form-group .input-with-icon .form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #1b242a inset !important;
  box-shadow: 0 0 0px 1000px #1b242a inset !important;
  -webkit-text-fill-color: #e0e0e0 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  caret-color: #e0e0e0;
}

/* ================================================
   COOKIE LIŠTA
   ================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 0 20px 20px;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cookie-bar.cookie-visible {
  transform: translateY(0);
  pointer-events: all;
}

.cookie-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(3, 17, 25, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 0, 127, 0.25);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 0, 127, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 127, 0.08);
}

.cookie-icon {
  font-size: 2rem;
  color: #ff007f;
  flex-shrink: 0;
  text-shadow: 0 0 14px rgba(255, 0, 127, 0.5);
  animation: cookie-wobble 3s ease-in-out infinite;
}

@keyframes cookie-wobble {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg); }
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-text strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.cookie-text a {
  color: #ff007f;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cookie-text a:hover {
  opacity: 0.75;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
  white-space: nowrap;
}

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.7);
}

.cookie-btn-accept {
  background: #ff007f;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  box-shadow: 0 0 16px rgba(255, 0, 127, 0.4);
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  background: #ff1a8c;
  box-shadow: 0 0 28px rgba(255, 0, 127, 0.65);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cookie-bar-inner {
    flex-wrap: wrap;
    gap: 14px;
  }

  .cookie-icon {
    font-size: 1.6rem;
  }

  .cookie-text {
    flex-basis: calc(100% - 60px);
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Oprava poptávkového formuláře na subpage (viktorie, rozalie, maky):
   main.css nastavuje záporné margin-top na mobilech, které formulář schová pod sekci galerie nad ním */
@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: 0 !important;
  }
}

/* Sociální ikony na subpage (viktorie, rozalie, maky) — mobil: ikony v jednom řádku, tlačítko pod nimi */
@media (max-width: 1199px) {
  .artist-profile-section .cta-buttons {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .artist-profile-section .cta-buttons .btn-insta-icon {
    order: 0;
    flex: 1;
  }
  .artist-profile-section .cta-buttons .btn-neon-booking {
    order: 1;
    flex-basis: 100%;
    justify-content: center;
  }
}
