/* General Reset and Base Styles */
:root {
    --dc-bg: #1a1a1a;
    --dc-surface: #212529;
    --dc-surface-2: #1e2126;
    --dc-red: #dc143c;
    --dc-red-strong: #ff1f4d;
    --dc-red-soft: #f26e6e;
    --dc-red-glow: rgba(220, 20, 60, 0.45);
    --dc-red-glow-soft: rgba(220, 20, 60, 0.18);
    --dc-text: #f5f5f5;
    --dc-text-muted: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dc-bg);
    color: var(--dc-text);
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 15% 0%, rgba(220, 20, 60, 0.10), transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(220, 20, 60, 0.06), transparent 55%);
    background-attachment: fixed;
}

::selection {
    background: var(--dc-red);
    color: #fff;
}


/* Slider Styles */
.carousel.slide {
    padding: 0;
}

@media (max-width: 991px) {
    .carousel.slide {
        padding: 1.5rem 0;
    }
}

/* Home top row: slider + welcome box aligned at top, matching card style */
.home-top-row .carousel-inner {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(220, 20, 60, 0.15);
}

.home-top-row .carousel-item img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Mobil: vyšší slider — podobné vizuální váze jako na desktopu (≈ výška sloupce + extra) */
@media (max-width: 991px) {
    .home-top-row .home-carousel-wrap .carousel,
    .home-top-row .carousel-inner,
    .home-top-row .carousel-item {
        min-height: clamp(20rem, 68vh, 36rem);
    }

    .home-top-row .carousel-item img {
        aspect-ratio: 5 / 8;
        width: 100%;
        height: clamp(20rem, 68vh, 36rem);
        min-height: clamp(20rem, 68vh, 36rem);
        max-height: 72vh;
        object-fit: cover;
    }
}

@media (min-width: 992px) {
    .home-top-row > .col-lg-4,
    .home-top-row > .col-lg-5 {
        display: flex;
    }

    .home-top-row .home-carousel-wrap,
    .home-top-row > .col-lg-5 .text-container {
        width: 100%;
        margin-bottom: 1.4rem;
    }

    .home-top-row .home-carousel-wrap {
        display: flex;
        flex-direction: column;
    }

    .home-top-row .home-carousel-wrap .carousel {
        flex: 1;
        min-height: 0;
    }

    .home-top-row > .col-lg-4 .carousel-inner,
    .home-top-row > .col-lg-4 .carousel-item {
        height: 100%;
    }

    .home-top-row > .col-lg-4 .carousel-item img {
        height: 100%;
        aspect-ratio: unset;
        object-fit: cover;
    }
}

/* O nás Styles */
.about-section {
    background: linear-gradient(180deg, #161616 0%, #1a1a1a 60%, #161616 100%);
    color: var(--dc-text);
    padding: 4rem 1.5rem;
    position: relative;
}

.about-section::before,
.about-section::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dc-red), transparent);
    box-shadow: 0 0 12px var(--dc-red-glow);
}

.about-section::before { top: 0; }
.about-section::after { bottom: 0; }

  .about-container {
    max-width: 800px;        /* text nebude přes celou šířku */
    margin: 0 auto;
  }

  .about-container {
    text-align: center;
  }

  .about-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #fff 0%, var(--dc-red-soft) 60%, var(--dc-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .about-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dc-red), transparent);
    box-shadow: 0 0 10px var(--dc-red-glow);
  }

  .about-subtitle,
  .about-list {
    text-align: left;
  }

  .about-intro,
  .about-outro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;      /* úvod/závěr klidně centrovaný */
  }

/* Místnosti (BDSM / milenecký / kabinky / sex shop): mezera pod řádek welcome + actuality (~my-5 na ostatních stránkách) */
.rooms-subpage {
    padding-top: 3rem;
}

@media (max-width: 991.98px) {
    .rooms-subpage {
        padding-top: 2rem;
    }
}

/* Homepage — sekce „O nás“: levé zarovnání (stejně jako místnosti) */
.home-about-section .about-container {
    text-align: left;
}

.home-about-section .about-intro,
.home-about-section .about-outro {
    text-align: left;
}

/* Místnosti — levé zarovnání */
.rooms-subpage .about-container {
    text-align: left;
}

.rooms-subpage .about-intro,
.rooms-subpage .about-outro {
    text-align: left;
}

.rooms-subpage .home-section-title {
    text-align: left;
}

.rooms-subpage .home-section-title::after {
    left: 0;
    transform: none;
}

  .about-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dc-red-soft);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .about-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }

  .about-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--dc-red);
    box-shadow: 0 0 8px var(--dc-red-glow);
    transform: rotate(45deg);
  }

  .about-list li strong {
    color: var(--dc-red-soft);
  }

/* Custom dark background (shared with text-container, cookies, etc.) */
.custom-bg-dark {
    background-color: var(--dc-surface);
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(220, 20, 60, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    overflow: hidden;
}

.custom-bg-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--dc-red) 30%, var(--dc-red-strong) 50%, var(--dc-red) 70%, transparent 100%);
    opacity: 0.85;
}

/* Generic dark "card" wrapper used across pages */
.text-container.bg-dark,
.text-container.custom-bg-dark {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.text-container.bg-dark {
    border: 1px solid rgba(220, 20, 60, 0.12);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.text-container.bg-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dc-red), transparent);
    opacity: 0.7;
}

a:hover > .text-container.bg-dark,
.text-container.bg-dark:hover {
    transform: translateY(-3px);
    border-color: rgba(220, 20, 60, 0.45);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.18), 0 0 0 1px rgba(220, 20, 60, 0.3) inset;
}

/* Akce detail + Novinky + Rezervace — no lift / glow while reading / filling forms */
.akce-detail-main.text-container.bg-dark:hover,
.aktuality-public-main.text-container.bg-dark:hover,
.ankety-empty-main.text-container.bg-dark:hover,
.rezervace-public-main.text-container.bg-dark:hover {
    transform: none;
    border-color: rgba(220, 20, 60, 0.12);
    box-shadow: none;
}

/* Rezervační formulář: tmavší pole pro vyšší kontrast čitelnosti */
.rezervace-public-main form {
    color-scheme: dark;
}

.rezervace-public-main .form-control,
.rezervace-public-main .form-select {
    background-color: #0f1114 !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    color: #fafafa !important;
}

.rezervace-public-main .form-control:focus,
.rezervace-public-main .form-select:focus {
    background-color: #0c0e11 !important;
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: 0 0 0 0.22rem rgba(220, 20, 60, 0.18);
    color: #fff !important;
}

.rezervace-public-main .form-control::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.rezervace-public-main .form-select option {
    background-color: #0f1114;
    color: #fafafa;
}

/* Q&A Sidebar Styles - dark theme */
.qna-sidebar {
    border-radius: 10px;
    height: fit-content;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #1e2126 !important;
    background: #1e2126 !important;
    color: #f5f5f5;
}

/* Force dark theme - override Bootstrap accordion defaults */
.qna-sidebar .accordion,
.qna-sidebar .accordion-item,
.qna-sidebar .accordion-header,
.qna-sidebar .accordion-collapse {
    background: #1e2126 !important;
    background-color: #1e2126 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

.qna-sidebar .accordion-button,
.qna-sidebar .accordion-body {
    background: #1e2126 !important;
    background-color: #1e2126 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

.qna-sidebar .accordion-flush .accordion-item {
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.qna-sidebar .accordion-button {
    background: #1e2126 !important;
    background-color: #1e2126 !important;
    color: #f5f5f5 !important;
    border: none !important;
}

.qna-sidebar .accordion-button:hover {
    background: rgba(255, 255, 255, 0.06) !important;
}

.qna-sidebar .accordion-button:not(.collapsed) {
    background: rgba(220, 20, 60, 0.2) !important;
    background-color: rgba(220, 20, 60, 0.2) !important;
    color: #fff !important;
}

.qna-sidebar .accordion-button::after {
    filter: brightness(0) invert(1);
}

.qna-sidebar .accordion-button:focus {
    box-shadow: none !important;
}

.qna-sidebar .accordion-body {
    background: #1e2126 !important;
    background-color: #1e2126 !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Override Bootstrap CSS variables for accordions inside sidebar */
.qna-sidebar .accordion,
.qna-sidebar .qna-accordion,
.qna-sidebar .qna-category-accordion {
    --bs-accordion-bg: #1e2126;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.08);
    --bs-accordion-btn-bg: #1e2126;
    --bs-accordion-active-bg: rgba(220, 20, 60, 0.12);
    --bs-accordion-btn-focus-box-shadow: none;
}

.qna-sidebar .qna-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    position: relative;
    padding-bottom: 0.5rem;
}

.qna-sidebar .qna-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--dc-red), transparent);
}

.qna-sidebar .qna-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
}

.qna-sidebar .qna-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(242, 110, 110, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.25rem;
}

.qna-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.08);
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-bg: rgba(220, 20, 60, 0.15);
    --bs-accordion-btn-focus-box-shadow: none;
}

.qna-accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.qna-accordion-item:last-child {
    border-bottom: none;
}

.qna-category-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.qna-category-item:last-child {
    border-bottom: none;
}

.qna-category-button {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(242, 110, 110, 0.95);
    padding: 0.75rem 0;
}

.qna-category-button:not(.collapsed) {
    color: #f26e6e;
}

.qna-button {
    font-size: 0.9rem;
    font-weight: 500;
    color: #f5f5f5;
    background: #1e2126 !important;
    padding: 0.65rem 0;
}

.qna-button:not(.collapsed) {
    color: #fff;
}

.qna-category-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.qna-category-item:last-child {
    border-bottom: none;
}

.qna-category-button {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(242, 110, 110, 0.95);
    background: #1e2126 !important;
    padding: 0.75rem 0;
}

.qna-category-button:not(.collapsed) {
    color: #f26e6e;
}

.qna-category-button::after {
    filter: brightness(0) invert(1);
}

.qna-button::after {
    filter: brightness(0) invert(1);
}

.qna-body {
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    padding: 0 0 0.75rem 0;
    padding-left: 0;
}

.qna-body ul {
    padding-left: 1.15rem;
}

.qna-body li {
    margin-bottom: 0.35rem;
}

.qna-body p + p {
    margin-top: 0.5rem;
}

.qna-link {
    color: rgba(242, 110, 110, 0.95);
    text-decoration: none;
}

.qna-link:hover {
    color: #f26e6e;
    text-decoration: underline;
}

.qna-standalone {
    padding-top: 0.5rem !important;
}

.qna-standalone-block {
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    padding: 0.5rem 0 0 0;
}

.qna-standalone-block .opacity-75 {
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing (ceník) */
.pricing-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
}

.pricing-card {
    border-radius: 10px;
}

.pricing-card.text-container.bg-dark:hover,
.pricing-footer.text-container.bg-dark:hover {
    transform: none;
    border-color: rgba(220, 20, 60, 0.12);
    box-shadow: none;
}

.pricing-section-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dc-red-soft);
    position: relative;
    padding-bottom: 0.6rem;
    letter-spacing: 0.03em;
}

.pricing-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--dc-red), transparent);
}

.pricing-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row-header {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 0.5rem;
}

.pricing-item {
    flex: 1;
    min-width: 0;
    line-height: 1.4;
}

.pricing-price {
    flex-shrink: 0;
    font-weight: 600;
    white-space: nowrap;
    color: #f5f5f5;
}

.pricing-free {
    color: #9af5a5;
}

.pricing-notes {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-notes-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-notes-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-notes-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.35rem;
}

.pricing-notes-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(242, 110, 110, 0.85);
}

.pricing-limit {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
}

.pricing-footer {
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 575px) {
    .pricing-row-header {
        display: none;
    }

    .pricing-row {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.85rem 0;
    }

    .pricing-price {
        align-self: flex-start;
        color: rgba(242, 110, 110, 0.95);
    }

    .pricing-free {
        color: #9af5a5;
    }
}

/* Contact (kontakt) */
.contact-card {
    border-radius: 10px;
}

.contact-card.text-container.bg-dark:hover {
    transform: none;
    border-color: rgba(220, 20, 60, 0.12);
    box-shadow: none;
}

.contact-brand {
    font-size: 1.5rem;
    color: rgba(242, 110, 110, 0.95);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    line-height: 1.5;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.contact-link {
    color: #f5f5f5;
    text-decoration: none;
}

.contact-link:hover {
    color: rgba(242, 110, 110, 0.95);
    text-decoration: underline;
}

.contact-social-link {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.contact-social-link:hover {
    background-color: rgba(242, 110, 110, 0.15);
    border-color: rgba(242, 110, 110, 0.5);
    color: #fff;
}

.contact-whatsapp {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.contact-map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #212529;
}

.contact-map {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

.contact-map-link {
    font-size: 0.9rem;
}

@media (min-width: 992px) {
    .contact-map {
        height: 100%;
        min-height: 420px;
    }
}

/* Legal / cookies content */
.legal-content.text-container.bg-dark:hover,
section.text-container.bg-dark:has(.legal-card-title):hover {
    transform: none;
    border-color: rgba(220, 20, 60, 0.12);
    box-shadow: none;
}

/* Veřejná stránka Novinky /novinky (odrážkový výpis z adminu) */
.aktuality-public-date {
    color: rgba(242, 110, 110, 0.95);
}

.aktuality-public-list li {
    line-height: 1.55;
}

.legal-card-title {
    font-size: 1.1rem;
    color: rgba(242, 110, 110, 0.95);
    margin-bottom: 0.75rem;
}

.legal-main-title {
    font-size: 1.5rem;
    color: rgba(242, 110, 110, 0.95);
}

.legal-content {
    line-height: 1.7;
}

.legal-section {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:first-of-type {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.legal-section-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #f5f5f5;
}

.legal-subsection {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(242, 110, 110, 0.4);
}

.legal-subsection-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content p + p {
    margin-top: 0.75rem;
}


/* Gallery lightbox grid */
.gallery-item {
    display: block;
    cursor: zoom-in;
}

.gallery-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-item:hover .gallery-card {
    transform: translateY(-4px);
    border-color: rgba(220, 20, 60, 0.45);
    box-shadow: 0 12px 28px rgba(220, 20, 60, 0.18);
}

.gallery-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-thumb {
    transform: scale(1.05);
}

.fancybox__container {
    --fancybox-bg: rgba(10, 10, 10, 0.92);
    --fancybox-accent-color: var(--dc-red);
}

.fancybox__toolbar {
    --f-button-color: #fff;
    --f-button-hover-color: var(--dc-red-strong);
}

.fancybox__caption {
    font-family: inherit;
    text-align: center;
}

/* 
Mobile Styles
0px to 767px
 */
@media (max-width: 767px) {
    
}

/* 
Tablet Styles
768px to 991px
*/
@media (min-width: 768px) and (max-width: 991px) {

}

/* 
Desktop Styles
992px to 1199px
 */
 @media (min-width: 992px) and (max-width: 1199px) {

}

/* 
Large Desktop Styles
1200px and above
 */
@media (min-width: 1200px) {

}
