/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 20 2026 | 13:03:56 */
/* ============================================================
   ASR — Asociácia správcov registratúry
   Modern visual override CSS
   
   Built on top of UnderStrap 0.7.0 (Bootstrap 4.0.0-beta.3)
   Design direction: Premium B2B, burgundy + gold + cream,
   PwC / Deloitte public-sector feel, Plus Jakarta Sans type.
   
   No HTML/template changes required. Insert via Customizer
   "Additional CSS" or enqueue as separate stylesheet loaded
   AFTER theme.min.css.
   
   DEPLOYMENT OPTIONS:
   
   1) Fastest (Customizer):
      WP Admin → Vzhľad → Prispôsobiť → Dodatočné CSS
      → paste contents of this file
   
   2) Cleaner (child theme):
      Put this file as asr-modern.css in a child theme folder
      and enqueue it in functions.php with a priority higher
      than the parent theme stylesheet:
      
      add_action('wp_enqueue_scripts', function() {
          wp_enqueue_style(
              'asr-modern',
              get_stylesheet_directory_uri() . '/asr-modern.css',
              ['understrap-styles'],
              '1.1.0'
          );
      }, 20);
   
   DEPENDENCIES:
   - Plus Jakarta Sans loaded via Google Fonts @import (no extra action)
   - CTA selector relies on menu item ID #menu-item-110 ("Semináre,
     kurzy, prihlášky"). If the menu is recreated the ID will change
     — update the selector in section 6 "PRIMARY CTA IN MENU".
   
   CHANGELOG:
   1.1.0 — eyebrow text updated to "SPOLUPRÁCA S MINISTERSTVOM
           VNÚTRA SR · MEMORANDUM"; CF7 form full-width
           (max-width: none); scroll-padding-top for sticky nav
           anchor offset; admin bar height force removed so
           WP's 32/46px mobile breakpoint works natively.
   1.0.0 — initial release: burgundy/gold design system, hero
           via pseudo-elements, sticky nav, modern footer,
           accordion styling, mobile responsive, admin bar fix.
   ============================================================ */


/* ------------------------------------------------------------
   1. GOOGLE FONTS
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');


/* ------------------------------------------------------------
   2. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
    /* Primary burgundy scale */
    --asr-burgundy-900: #3d0e1d;
    --asr-burgundy-800: #5a1628;
    --asr-burgundy-700: #7a1e2c;   /* primary brand */
    --asr-burgundy-600: #91263a;
    --asr-burgundy-500: #a83748;
    --asr-burgundy-100: #f5e8eb;
    --asr-burgundy-50:  #fdf7f8;

    /* Gold / amber accent scale */
    --asr-gold-800: #6b5424;
    --asr-gold-700: #8b6f2f;
    --asr-gold-600: #a88640;
    --asr-gold-500: #c9a24d;        /* primary accent */
    --asr-gold-400: #d6b668;
    --asr-gold-200: #e8d4a3;
    --asr-gold-100: #f5ebd4;
    --asr-gold-50:  #fbf6ea;

    /* Warm neutrals */
    --asr-cream-50:  #fbf8f3;       /* page background */
    --asr-cream-100: #f5f0e8;       /* section fill */
    --asr-stone-200: #e8e2d5;       /* borders */
    --asr-stone-300: #d4cbb8;
    --asr-stone-400: #b8ac95;
    --asr-stone-600: #7a7366;       /* muted text */
    --asr-charcoal-800: #2b2721;    /* headings */
    --asr-charcoal-900: #1a1815;

    /* Text tokens */
    --asr-text-primary:   #2b2721;
    --asr-text-secondary: #5a544a;
    --asr-text-muted:     #8a8275;
    --asr-text-on-dark:   #fbf8f3;

    /* Surface tokens */
    --asr-bg-page:    #fbf8f3;
    --asr-bg-card:    #ffffff;
    --asr-bg-section: #f5f0e8;

    /* Layered shadows (modern, warm-tinted) */
    --asr-shadow-xs: 0 1px 2px rgba(43, 39, 33, 0.05);
    --asr-shadow-sm: 0 2px 4px rgba(43, 39, 33, 0.04), 0 4px 8px rgba(43, 39, 33, 0.05);
    --asr-shadow-md: 0 4px 6px rgba(43, 39, 33, 0.05), 0 10px 20px rgba(43, 39, 33, 0.07);
    --asr-shadow-lg: 0 10px 20px rgba(43, 39, 33, 0.07), 0 24px 48px rgba(43, 39, 33, 0.10);
    --asr-shadow-xl: 0 20px 40px rgba(43, 39, 33, 0.10), 0 32px 64px rgba(61, 14, 29, 0.15);
    --asr-shadow-nav: 0 1px 0 rgba(43, 39, 33, 0.04), 0 8px 24px rgba(43, 39, 33, 0.06);
    --asr-shadow-focus: 0 0 0 4px rgba(201, 162, 77, 0.28);

    /* Typography */
    --asr-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Radii */
    --asr-radius-sm: 6px;
    --asr-radius-md: 10px;
    --asr-radius-lg: 16px;
    --asr-radius-xl: 24px;

    /* Layout */
    --asr-container-max: 1200px;
    --asr-nav-height: 72px;

    /* Motion */
    --asr-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --asr-duration: 220ms;
}


/* ------------------------------------------------------------
   3. BASE + TYPOGRAPHY
   ------------------------------------------------------------ */
html {
    scroll-behavior: smooth;
    /* When clicking anchor links, offset the target below the sticky navbar */
    scroll-padding-top: calc(var(--asr-nav-height) + 16px);
}

/* Extra offset when admin bar is present */
html.admin-bar {
    scroll-padding-top: calc(var(--asr-nav-height) + 32px + 16px);
}

@media screen and (max-width: 782px) {
    html.admin-bar {
        scroll-padding-top: calc(var(--asr-nav-height) + 46px + 16px);
    }
}

body.home,
body.page,
body.single,
body.archive,
body.blog,
body.search,
body.error404 {
    font-family: var(--asr-font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--asr-text-primary);
    background-color: var(--asr-bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.003em;
}

body p {
    color: var(--asr-text-secondary);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

body p strong,
body p b {
    color: var(--asr-text-primary);
    font-weight: 600;
}

/* Heading hierarchy — restores real type scale */
body h1, body .h1,
body h2, body .h2,
body h3, body .h3,
body h4, body .h4,
body h5, body .h5,
body h6, body .h6 {
    font-family: var(--asr-font-sans);
    color: var(--asr-charcoal-800);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: left;
}

body h1, body .h1 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}

body h2, body .h2 {
    font-size: clamp(1.625rem, 2.5vw, 2.125rem);
    font-weight: 700;
    margin-top: 2.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Accent rule under h2 — signature PwC/legal aesthetic */
body .shadow h2::after,
body article h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--asr-gold-500);
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

body h3, body .h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: var(--asr-burgundy-700);
    margin-top: 2rem;
}

body h4, body .h4 {
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--asr-burgundy-700);
    margin-top: 1.5rem;
}

body h5, body .h5 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--asr-charcoal-800);
    margin-top: 1.25rem;
    text-transform: none;
}

body h6, body .h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--asr-gold-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Links */
body a {
    color: var(--asr-burgundy-700);
    text-decoration: none;
    background-color: transparent;
    transition: color var(--asr-duration) var(--asr-ease);
}

body a:hover,
body a:focus {
    color: var(--asr-burgundy-900);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

body article a,
body .shadow a {
    color: var(--asr-burgundy-900);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--asr-gold-400);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

body article a:hover,
body .shadow a:hover {
    color: var(--asr-burgundy-900);
    text-decoration-color: var(--asr-burgundy-700);
}

/* Lists — reset the 2.7em lineheight plague */
body ul,
body ol {
    line-height: 1.75;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

body ul {
    list-style: none;
    padding-left: 0;
}

body article ul li,
body .shadow ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--asr-text-secondary);
    line-height: 1.7;
}

/* Custom gold bullet marker */
body article ul li::before,
body .shadow ul li::before {
    content: "";
    position: absolute;
    left: 0.25rem;
    top: 0.7em;
    width: 7px;
    height: 7px;
    background: var(--asr-gold-500);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--asr-gold-100);
}

body article ul li span,
body .shadow ul li span {
    padding-right: 0;
}

/* Suppress default span bullets from old markup */
body article ul li span:first-child,
body .shadow ul li span:first-child {
    display: none;
}

/* Ordered lists */
body article ol,
body .shadow ol {
    padding-left: 1.5rem;
}

body article ol li,
body .shadow ol li {
    margin-bottom: 0.5rem;
    color: var(--asr-text-secondary);
    padding-left: 0.5rem;
}

body article ol li::marker {
    color: var(--asr-gold-600);
    font-weight: 700;
}

/* Selection */
::selection {
    background: var(--asr-burgundy-700);
    color: #fff;
}


/* ------------------------------------------------------------
   4. LAYOUT — Container card, shadow wrapper, article
   ------------------------------------------------------------ */
body .shadow {
    /* Overwrite legacy blurred double shadow */
    box-shadow: var(--asr-shadow-lg) !important;
    background-color: var(--asr-bg-card) !important;
    border-radius: var(--asr-radius-lg) var(--asr-radius-lg) 0 0 !important;
    border: 1px solid var(--asr-stone-200);
    border-bottom: none !important;
    padding: 2rem 1rem !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    /* overflow MUST stay visible — allows .site-footer to break full-width
       out of the .container.shadow wrapper (the footer is nested inside
       .shadow due to a template quirk in footer.php) */
    overflow: visible;
}

body article {
    padding: 1.5rem 1.5rem !important;
}

body article p:first-child {
    font-size: 1.125rem;
    color: var(--asr-text-primary);
    line-height: 1.7;
}

/* Reset the 992px-and-up negative overlap that pulled content up by -5em */
@media (min-width: 992px) {
    body .shadow {
        top: 0 !important;
        margin-top: 3rem;
        padding: 2.5rem 1.5rem;
    }

    body .navbar-box {
        position: static !important;
        top: 0 !important;
    }

    body article {
        padding: 2rem 2.5rem !important;
    }
}

@media (min-width: 1350px) {
    body .shadow {
        top: 0 !important;
        margin-top: 3.5rem;
    }

    body .navbar-box {
        top: 0 !important;
    }
}


/* ------------------------------------------------------------
   5. HEADER / HERO — Slider, logo, gradient, title, CTA
   ------------------------------------------------------------ */

/* Outer slider wrapper becomes the hero canvas */
body .slider.d-none.d-lg-block {
    position: relative;
    overflow: hidden;
    background: var(--asr-burgundy-900);
}

/* Carousel images cover hero area with proper aspect */
body #carousel-big {
    height: 560px;
}

body #carousel-big .carousel-inner,
body #carousel-big .carousel-item {
    height: 100%;
}

body #carousel-big .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.85);
}

/* Gradient overlay for legibility */
body .slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(61, 14, 29, 0.94) 0%,
            rgba(90, 22, 40, 0.80) 38%,
            rgba(122, 30, 44, 0.35) 72%,
            rgba(122, 30, 44, 0.10) 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.35) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Thin gold bar at bottom — the signature accent */
body .slider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(to right,
        var(--asr-gold-600) 0%,
        var(--asr-gold-400) 50%,
        var(--asr-gold-600) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Logo container — becomes the hero content block */
body .slider > .container.d-none.d-lg-flex {
    position: absolute !important;
    inset: 0;
    z-index: 4;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    max-width: var(--asr-container-max);
    margin: 0 auto;
}

/* Eyebrow label (via container::before) */
body .slider > .container::before {
    content: "SPOLUPRÁCA S MINISTERSTVOM VNÚTRA SR · MEMORANDUM";
    display: block;
    color: var(--asr-gold-400);
    font-family: var(--asr-font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
    padding-left: 2.25rem;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body .slider > .container::before {
    background: linear-gradient(to right,
            var(--asr-gold-400) 0, var(--asr-gold-400) 24px,
            transparent 24px, transparent 100%) no-repeat;
    background-size: 24px 2px;
    background-position: 0 50%;
}

/* Logo: strip old absolute + white background */
body .slider .logo {
    position: static !important;
    margin: 0 0 1.5rem 0 !important;
    padding: 0 !important;
    background: none !important;
}

body .slider .logo img {
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Main hero headline (via container::after) */
body .slider > .container::after {
    content: "Odborné vzdelávanie v správe registratúry pre verejný sektor";
    display: block;
    color: #fff;
    font-family: var(--asr-font-sans);
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    max-width: 780px;
    margin-top: 0.5rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

/* Carousel controls — subtle */
body #carousel-big .carousel-control-prev,
body #carousel-big .carousel-control-next {
    z-index: 5;
    width: 6%;
    opacity: 0.5;
    transition: opacity var(--asr-duration) var(--asr-ease);
}

body #carousel-big .carousel-control-prev:hover,
body #carousel-big .carousel-control-next:hover {
    opacity: 1;
}


/* ------------------------------------------------------------
   6. NAVIGATION — Sticky, clean white, burgundy hover, CTA pill
   ------------------------------------------------------------ */

/* Break navbar-box out of container so sticky works full-width */
body .container.navbar-box {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body .wrapper-fluid.wrapper-navbar {
    background: #fff;
    box-shadow: var(--asr-shadow-nav);
    border-bottom: 1px solid var(--asr-stone-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: saturate(1.5) blur(8px);
    -webkit-backdrop-filter: saturate(1.5) blur(8px);
    background-color: rgba(255, 255, 255, 0.96);
}

body .wrapper-fluid.wrapper-navbar .navbar {
    background: transparent !important;
    padding: 0.5rem 1rem !important;
    margin: 0 !important;
    max-width: var(--asr-container-max);
    margin-left: auto !important;
    margin-right: auto !important;
    min-height: var(--asr-nav-height);
}

/* Mobile brand image */
body .navbar-brand.d-lg-none img {
    max-height: 52px;
    width: auto;
}

/* Toggler */
body .navbar-toggler {
    border: 1px solid var(--asr-stone-300) !important;
    border-radius: var(--asr-radius-sm);
    padding: 0.5rem 0.75rem;
    transition: all var(--asr-duration) var(--asr-ease);
}

body .navbar-toggler:hover {
    background: var(--asr-burgundy-50);
    border-color: var(--asr-burgundy-700) !important;
}

body .navbar-toggler:focus {
    box-shadow: var(--asr-shadow-focus) !important;
    outline: none;
}

/* Custom hamburger icon (burgundy) */
body .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%237a1e2c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* Menu list */
body .navbar-nav,
body #main-menu {
    align-items: center;
    gap: 0.125rem;
}

/* Every menu link — reset of legacy black pill */
body .navbar-light .navbar-nav .nav-link,
body #main-menu .nav-link {
    background-color: transparent !important;
    color: var(--asr-charcoal-800) !important;
    font-family: var(--asr-font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.625rem 0.875rem !important;
    margin: 0 !important;
    border-radius: var(--asr-radius-sm) !important;
    border: none !important;
    line-height: 1.4;
    transition: all var(--asr-duration) var(--asr-ease);
    position: relative;
}

body .navbar-light .navbar-nav .nav-link:hover,
body .navbar-light .navbar-nav .nav-link:focus,
body #main-menu .nav-link:hover,
body #main-menu .nav-link:focus {
    background: var(--asr-burgundy-50) !important;
    color: var(--asr-burgundy-700) !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Active / current page */
body .navbar-light .navbar-nav .active > .nav-link,
body .navbar-light .navbar-nav .current-menu-item > .nav-link,
body .navbar-light .navbar-nav .current_page_item > .nav-link,
body #main-menu .current-menu-item > .nav-link,
body #main-menu .current_page_item > .nav-link {
    background: transparent !important;
    color: var(--asr-burgundy-700) !important;
    font-weight: 700;
    box-shadow: none !important;
}

/* Underline on active (subtle gold bar) */
body .navbar-light .navbar-nav .current-menu-item > .nav-link::after,
body .navbar-light .navbar-nav .current_page_item > .nav-link::after,
body #main-menu .current-menu-item > .nav-link::after,
body #main-menu .current_page_item > .nav-link::after {
    content: "";
    position: absolute;
    left: 0.875rem;
    right: 0.875rem;
    bottom: 0.25rem;
    height: 2px;
    background: var(--asr-gold-500);
    border-radius: 2px;
}

/* PRIMARY CTA IN MENU — "Semináre, kurzy, prihlášky" (menu-item-110) */
body #main-menu #menu-item-110 .nav-link,
body #main-menu .menu-item-110 .nav-link {
    background: var(--asr-burgundy-700) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 0.625rem 1.125rem !important;
    margin-left: 0.5rem !important;
    border-radius: var(--asr-radius-sm) !important;
    box-shadow:
        0 1px 2px rgba(61, 14, 29, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transition: all var(--asr-duration) var(--asr-ease);
    position: relative;
    overflow: hidden;
}

body #main-menu #menu-item-110 .nav-link::after,
body #main-menu .menu-item-110 .nav-link::after {
    display: none !important;
}

body #main-menu #menu-item-110 .nav-link:hover,
body #main-menu .menu-item-110 .nav-link:hover,
body #main-menu #menu-item-110 .nav-link:focus,
body #main-menu .menu-item-110 .nav-link:focus {
    background: var(--asr-burgundy-800) !important;
    color: var(--asr-gold-200) !important;
    transform: translateY(-1px);
    box-shadow:
        0 6px 16px rgba(61, 14, 29, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
}

/* Tone down low-priority menu items (Cookies) */
body #main-menu #menu-item-9868 .nav-link,
body #main-menu .menu-item-9868 .nav-link {
    font-size: 0.8125rem;
    color: var(--asr-text-muted) !important;
    opacity: 0.75;
}


/* ------------------------------------------------------------
   7. BUTTONS
   ------------------------------------------------------------ */
body .btn,
body input[type="submit"],
body button[type="submit"],
body .wpcf7-submit {
    font-family: var(--asr-font-sans) !important;
    font-weight: 600 !important;
    font-size: 0.9375rem !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--asr-radius-sm) !important;
    border: 1px solid transparent !important;
    transition: all var(--asr-duration) var(--asr-ease) !important;
    cursor: pointer;
    letter-spacing: 0.005em;
    line-height: 1.4;
    text-transform: none !important;
}

body .btn-primary,
body input[type="submit"],
body button[type="submit"],
body .wpcf7-submit {
    background-color: var(--asr-burgundy-700) !important;
    color: #fff !important;
    box-shadow: var(--asr-shadow-sm);
}

body .btn-primary:hover,
body input[type="submit"]:hover,
body button[type="submit"]:hover,
body .wpcf7-submit:hover {
    background-color: var(--asr-burgundy-800) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--asr-shadow-md) !important;
    text-decoration: none !important;
}

body .btn-secondary {
    background-color: transparent !important;
    color: var(--asr-burgundy-700) !important;
    border: 1px solid var(--asr-burgundy-700) !important;
}

body .btn-secondary:hover {
    background-color: var(--asr-burgundy-700) !important;
    color: #fff !important;
}

body .btn:focus,
body input[type="submit"]:focus,
body button[type="submit"]:focus,
body .wpcf7-submit:focus {
    outline: none !important;
    box-shadow: var(--asr-shadow-focus) !important;
}


/* ------------------------------------------------------------
   8. CONTENT SECTIONS
   ------------------------------------------------------------ */

/* Predstavenstvo / member grid — modern card treatment */
body .member {
    margin: 2rem 0;
}

body .member ul {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    list-style: none;
}

body .member ul li,
body .member li {
    display: block !important;
    max-width: 100% !important;
    padding: 1.5rem !important;
    background: var(--asr-bg-card);
    border: 1px solid var(--asr-stone-200);
    border-radius: var(--asr-radius-md);
    text-align: center;
    transition: all var(--asr-duration) var(--asr-ease);
    box-shadow: var(--asr-shadow-xs);
    position: relative;
}

body .member ul li::before,
body .member li::before {
    display: none !important;
}

body .member ul li:hover,
body .member li:hover {
    transform: translateY(-3px);
    box-shadow: var(--asr-shadow-md);
    border-color: var(--asr-gold-400);
}

body .member img {
    width: 100%;
    max-width: 180px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem !important;
    border: 3px solid var(--asr-gold-100);
    box-shadow: var(--asr-shadow-sm);
}

body .member p {
    color: var(--asr-text-primary) !important;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

body .member p + p {
    font-weight: 400;
    color: var(--asr-text-muted) !important;
    font-size: 0.9375rem;
}

/* Aktuality article image */
body .obr {
    width: 100%;
    height: auto;
    border-radius: var(--asr-radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--asr-shadow-sm);
}

/* Blockquote styling */
body blockquote,
body .blockquote {
    background: var(--asr-cream-100);
    border-left: 4px solid var(--asr-gold-500);
    border-radius: 0 var(--asr-radius-md) var(--asr-radius-md) 0;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    font-style: italic;
    color: var(--asr-text-primary);
    font-size: 1.0625rem;
}

/* Tables */
body table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.75rem 0;
    background: var(--asr-bg-card);
    border-radius: var(--asr-radius-md);
    overflow: hidden;
    box-shadow: var(--asr-shadow-sm);
    border: 1px solid var(--asr-stone-200);
    font-size: 0.9375rem;
}

body table th {
    background: var(--asr-burgundy-700);
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

body table td {
    padding: 0.875rem 1rem;
    border-top: 1px solid var(--asr-stone-200);
    color: var(--asr-text-secondary);
    vertical-align: top;
}

body table tr:hover td {
    background: var(--asr-cream-50);
}

/* Legacy zoznam class */
body .zoznam {
    text-indent: 0;
    margin-left: 0;
    padding-left: 0;
}


/* ------------------------------------------------------------
   8b. SEMINARS LIST — .prihlasenie buttons + date rows + accordion
   ------------------------------------------------------------ */

/* "Prihlásiť sa" call-to-action inline button */
body a.prihlasenie,
body .prihlasenie {
    display: inline-block;
    background: var(--asr-burgundy-700) !important;
    color: #fff !important;
    font-family: var(--asr-font-sans);
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 0.5rem 0.875rem !important;
    margin-right: 0.75rem !important;
    border-radius: var(--asr-radius-sm) !important;
    border: none !important;
    box-shadow: 0 1px 2px rgba(61, 14, 29, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all var(--asr-duration) var(--asr-ease);
    vertical-align: middle;
    line-height: 1.2;
    white-space: nowrap;
}

body a.prihlasenie:hover,
body a.prihlasenie:focus,
body .prihlasenie:hover,
body .prihlasenie:focus {
    background: var(--asr-gold-600) !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(168, 134, 64, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Seminar date rows — each line in the list becomes a subtle card */
body .entry-content p:has(a.prihlasenie) {
    padding: 0.875rem 1rem !important;
    margin: 0 0 0.5rem 0 !important;
    background: var(--asr-cream-50);
    border: 1px solid var(--asr-stone-200);
    border-left: 3px solid var(--asr-gold-500);
    border-radius: var(--asr-radius-sm);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--asr-text-primary);
    transition: all var(--asr-duration) var(--asr-ease);
}

body .entry-content p:has(a.prihlasenie):hover {
    background: #fff;
    border-color: var(--asr-gold-400);
    box-shadow: var(--asr-shadow-sm);
    transform: translateX(2px);
}

/* Registration form anchor block on detail pages */
body #prihlaska {
    margin-top: 3rem !important;
    padding: 2rem;
    background: var(--asr-cream-100);
    border-radius: var(--asr-radius-lg);
    border: 1px solid var(--asr-stone-200);
}

body #prihlaska h3 {
    text-align: center !important;
    margin-bottom: 1.5rem;
    color: var(--asr-charcoal-800);
    font-size: 1.5rem;
}

/* ---- Accordion on /seminare/ page ---------------------------
   Makes the whole card header clickable, gives it brand styling
   and fixes the default Bootstrap card gap.
   ---------------------------------------------------------- */

/* Card wrapper spacing */
body #accordion-kurzy .card,
body #accordion-seminare .card,
body #accordion .card {
    margin-bottom: 0.625rem;
    border: 1px solid var(--asr-stone-200);
    border-radius: var(--asr-radius-md) !important;
    overflow: hidden;
    background: var(--asr-bg-card);
    box-shadow: var(--asr-shadow-xs);
    transition: box-shadow var(--asr-duration) var(--asr-ease);
}

body #accordion-kurzy .card:hover,
body #accordion-seminare .card:hover,
body #accordion .card:hover {
    box-shadow: var(--asr-shadow-sm);
}

/* Card header — full-width clickable row, reset padding */
body #accordion-kurzy .card-header,
body #accordion-seminare .card-header,
body #accordion .card-header {
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    background: var(--asr-cream-50);
    border-bottom: 1px solid transparent;
    transition: background var(--asr-duration) var(--asr-ease);
}

/* Inner heading wrappers — strip Bootstrap defaults */
body #accordion-kurzy .card-header h5,
body #accordion-seminare .card-header h5,
body #accordion .card-header h5,
body #accordion-kurzy .seminare-nadpis,
body #accordion-seminare .seminare-nadpis,
body #accordion .seminare-nadpis,
body #accordion-kurzy .card-header .mb-0,
body #accordion-seminare .card-header .mb-0,
body #accordion .card-header .mb-0 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: inherit;
    line-height: inherit;
}

/* The clickable link itself */
body #accordion-kurzy .card-header .btn-link,
body #accordion-seminare .card-header .btn-link,
body #accordion .card-header .btn-link {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    padding: 0.875rem 1.25rem !important;
    font-family: var(--asr-font-sans) !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: var(--asr-charcoal-800) !important;
    text-decoration: none !important;
    white-space: normal !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: all var(--asr-duration) var(--asr-ease) !important;
    position: relative;
}

/* Chevron indicator on the right */
body #accordion-kurzy .card-header .btn-link::after,
body #accordion-seminare .card-header .btn-link::after,
body #accordion .card-header .btn-link::after {
    content: "";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--asr-gold-600);
    border-bottom: 2px solid var(--asr-gold-600);
    transform: translateY(-75%) rotate(45deg);
    transition: transform var(--asr-duration) var(--asr-ease);
}

/* Collapsed state: chevron points down (default above).
   Expanded (not .collapsed): chevron points up. */
body #accordion-kurzy .card-header .btn-link:not(.collapsed)::after,
body #accordion-seminare .card-header .btn-link:not(.collapsed)::after,
body #accordion .card-header .btn-link:not(.collapsed)::after {
    transform: translateY(-25%) rotate(-135deg);
    border-color: var(--asr-burgundy-700);
}

/* Hover */
body #accordion-kurzy .card-header:hover,
body #accordion-seminare .card-header:hover,
body #accordion .card-header:hover {
    background: var(--asr-burgundy-50);
}

body #accordion-kurzy .card-header .btn-link:hover,
body #accordion-seminare .card-header .btn-link:hover,
body #accordion .card-header .btn-link:hover,
body #accordion-kurzy .card-header .btn-link:focus,
body #accordion-seminare .card-header .btn-link:focus,
body #accordion .card-header .btn-link:focus {
    color: var(--asr-burgundy-700) !important;
    text-decoration: none !important;
    outline: none !important;
}

/* Expanded card header gets a gold accent */
body #accordion-kurzy .card-header:has(.btn-link:not(.collapsed)),
body #accordion-seminare .card-header:has(.btn-link:not(.collapsed)),
body #accordion .card-header:has(.btn-link:not(.collapsed)) {
    background: var(--asr-burgundy-50);
    border-bottom: 1px solid var(--asr-stone-200);
}

body #accordion-kurzy .card-header .btn-link:not(.collapsed),
body #accordion-seminare .card-header .btn-link:not(.collapsed),
body #accordion .card-header .btn-link:not(.collapsed) {
    color: var(--asr-burgundy-700) !important;
}

/* Card body spacing */
body #accordion-kurzy .card-body,
body #accordion-seminare .card-body,
body #accordion .card-body {
    padding: 1.25rem 1.5rem;
    background: var(--asr-bg-card);
}


/* ------------------------------------------------------------
   9. FORMS — Contact Form 7
   ------------------------------------------------------------ */
body #wpcf7-f191-p115-o1,
body .wpcf7 form {
    max-width: none;
    width: 100%;
    margin: 2rem auto !important;
    padding: 2rem;
    background: var(--asr-bg-card);
    border: 1px solid var(--asr-stone-200);
    border-radius: var(--asr-radius-lg);
    box-shadow: var(--asr-shadow-sm);
}

body .wpcf7 label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--asr-text-primary);
    margin-bottom: 0.375rem;
    margin-top: 1rem;
}

body .wpcf7 input[type="text"],
body .wpcf7 input[type="email"],
body .wpcf7 input[type="tel"],
body .wpcf7 input[type="url"],
body .wpcf7 input[type="number"],
body .wpcf7 input[type="date"],
body .wpcf7 textarea,
body .wpcf7 select,
body input[type="text"],
body input[type="email"],
body input[type="tel"],
body textarea,
body select {
    width: 100%;
    padding: 0.75rem 0.875rem !important;
    font-family: var(--asr-font-sans) !important;
    font-size: 1rem !important;
    color: var(--asr-text-primary) !important;
    background: var(--asr-cream-50) !important;
    border: 1px solid var(--asr-stone-300) !important;
    border-radius: var(--asr-radius-sm) !important;
    transition: all var(--asr-duration) var(--asr-ease) !important;
    box-shadow: none !important;
    line-height: 1.5;
}

body .wpcf7 input:focus,
body .wpcf7 textarea:focus,
body .wpcf7 select:focus,
body input:focus,
body textarea:focus,
body select:focus {
    outline: none !important;
    border-color: var(--asr-burgundy-700) !important;
    background: #fff !important;
    box-shadow: var(--asr-shadow-focus) !important;
}

body .wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

body .wpcf7-response-output {
    border-radius: var(--asr-radius-sm) !important;
    padding: 0.875rem 1rem !important;
    font-size: 0.9375rem;
    border: 1px solid var(--asr-stone-300) !important;
}

body .wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--asr-gold-500) !important;
    background: var(--asr-gold-50);
    color: var(--asr-gold-800);
}


/* ------------------------------------------------------------
   10. FOOTER — Full-width breakout out of the .container.shadow
   ------------------------------------------------------------ */
body .site-footer {
    /* Full-bleed breakout — escapes the ~1200px .container.shadow wrap */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 3rem !important;
    margin-bottom: 0 !important;

    height: auto !important;
    background-color: var(--asr-charcoal-900) !important;
    color: var(--asr-text-on-dark);
    padding: 2.5rem 1.5rem !important;
    position: relative;
    text-align: center !important;
    border-top: 3px solid var(--asr-gold-500);

    /* Remove any Bootstrap .col padding contribution */
    box-sizing: border-box;
}

/* Centered inner content block inside the full-width footer bar */
body .site-footer .site-info {
    max-width: var(--asr-container-max);
    margin: 0 auto !important;
    padding: 0 1rem;
}

body .site-footer p {
    color: var(--asr-cream-100) !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.875rem !important;
    height: auto !important;
    line-height: 1.6 !important;
    letter-spacing: 0.01em;
}

body .site-footer a {
    color: var(--asr-gold-400) !important;
    text-decoration: none;
    font-weight: 500;
}

body .site-footer a:hover {
    color: var(--asr-gold-200) !important;
    text-decoration: underline;
}

/* The .row > .col-md-12 that wraps the footer should not constrain it */
body .row > .col-md-12:has(> footer.site-footer),
body .col-md-12:has(> footer.site-footer) {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* ------------------------------------------------------------
   11. SIDEBAR / ASIDE
   ------------------------------------------------------------ */
body aside,
body .sidebar {
    padding: 1.5rem 0 1.5rem 2rem;
}

body aside .widget,
body .widget {
    background: var(--asr-cream-50);
    border: 1px solid var(--asr-stone-200);
    border-radius: var(--asr-radius-md);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

body aside .widget-title,
body .widget-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--asr-gold-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.875rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--asr-stone-200);
}

body aside ul,
body .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body aside ul li,
body .widget ul li {
    padding: 0.375rem 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid var(--asr-stone-200);
}

body aside ul li::before,
body .widget ul li::before {
    display: none !important;
}

body aside ul li:last-child,
body .widget ul li:last-child {
    border-bottom: none;
}


/* ------------------------------------------------------------
   12. RESPONSIVE — Mobile & tablet adjustments
   ------------------------------------------------------------ */

/* Below 992px (mobile + tablet): force all .container full width
   so the 540px/720px Bootstrap clamp doesn't shrink the layout */
@media (max-width: 991.98px) {
    body .container,
    body .container.shadow,
    body .container.navbar-box,
    body .container.d-none.d-lg-flex {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    body {
        font-size: 16px;
    }

    /* ---- Navbar ---- */
    body .wrapper-fluid.wrapper-navbar .navbar {
        padding: 0.5rem 1rem !important;
        max-width: 100% !important;
    }

    body .navbar-brand.d-lg-none {
        max-width: calc(100% - 4rem);
    }

    body .navbar-brand.d-lg-none img {
        max-height: 48px;
        width: auto;
    }

    body .navbar-collapse {
        border-top: 1px solid var(--asr-stone-200);
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

    body #main-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0;
    }

    body .navbar-light .navbar-nav .nav-link,
    body #main-menu .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: var(--asr-radius-sm) !important;
        width: 100%;
    }

    body #main-menu .current-menu-item > .nav-link::after,
    body #main-menu .current_page_item > .nav-link::after {
        left: 1rem;
        right: auto;
        width: 32px;
        bottom: 0.5rem;
    }

    body #main-menu #menu-item-110 .nav-link,
    body #main-menu .menu-item-110 .nav-link {
        margin: 0.5rem 0 !important;
        text-align: center;
    }

    /* ---- Mobile hero: original slider is hidden on mobile (d-none d-lg-block),
       so we build a compact hero from the #carousel-small instead ---- */
    body #carousel-small {
        position: relative;
        margin: 0 -1rem;
        overflow: hidden;
    }

    body #carousel-small .carousel-item img {
        height: 240px;
        object-fit: cover;
        filter: saturate(0.85) brightness(0.75);
    }

    body #carousel-small::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,
            rgba(61, 14, 29, 0.88) 0%,
            rgba(90, 22, 40, 0.55) 60%,
            rgba(122, 30, 44, 0.25) 100%);
        z-index: 2;
        pointer-events: none;
    }

    body #carousel-small::after {
        content: "ODBORNÉ KURZY A SEMINÁRE · SPRÁVA REGISTRATÚRY";
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        z-index: 3;
        color: #fff;
        font-size: 1.125rem;
        font-weight: 800;
        letter-spacing: -0.01em;
        line-height: 1.25;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        pointer-events: none;
    }

    /* ---- Content card ---- */
    body .shadow {
        margin: 1rem 0 0 0 !important;
        padding: 1.5rem 1rem !important;
        padding-bottom: 0 !important;
        border-radius: var(--asr-radius-md) var(--asr-radius-md) 0 0 !important;
    }

    body article {
        padding: 0.5rem !important;
    }

    body h1 {
        font-size: 1.625rem;
    }

    body h2 {
        margin-top: 1.5rem;
        font-size: 1.375rem;
    }

    body h3 {
        font-size: 1.125rem;
        margin-top: 1.25rem;
    }

    body .member ul {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }

    body .member img {
        max-width: 120px;
    }

    body .wpcf7 form {
        padding: 1.25rem;
    }

    /* Seminar list rows: stack the "Prihlásiť sa" button above the text */
    body .entry-content p:has(a.prihlasenie) {
        padding: 0.75rem 0.875rem !important;
    }

    body a.prihlasenie,
    body .prihlasenie {
        display: block;
        margin: 0 0 0.5rem 0 !important;
        text-align: center;
    }
}

/* Extra-small phones */
@media (max-width: 575.98px) {
    body .container,
    body .container.shadow {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    body .shadow {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
        margin-top: 0.5rem !important;
    }

    body .member ul {
        grid-template-columns: 1fr 1fr;
    }

    body #carousel-big {
        height: 0;
    }

    body #carousel-small .carousel-item img {
        height: 200px;
    }

    body #carousel-small::after {
        font-size: 1rem;
        bottom: 0.75rem;
    }

    body h1 {
        font-size: 1.375rem;
    }

    body h2 {
        font-size: 1.25rem;
    }
}


/* ------------------------------------------------------------
   13. UTILITIES & POLISH
   ------------------------------------------------------------ */

/* Smooth entry animations (reduced-motion respected)
   NOTE: .shadow uses opacity-only fade — transforms on it create
   a containing block that breaks position: fixed for any descendant
   elements (e.g. WP admin bar when the template wraps it inside). */
@media (prefers-reduced-motion: no-preference) {
    body .shadow {
        animation: asr-fade-in 0.5s var(--asr-ease) both;
    }

    body .member ul li {
        animation: asr-fade-up 0.5s var(--asr-ease) both;
    }

    @keyframes asr-fade-in {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    @keyframes asr-fade-up {
        from { opacity: 0; transform: translateY(12px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}

/* Focus ring consistency */
body a:focus-visible,
body button:focus-visible,
body .nav-link:focus-visible {
    outline: none;
    box-shadow: var(--asr-shadow-focus);
    border-radius: var(--asr-radius-sm);
}

/* Scrollbar (WebKit) */
@media (min-width: 992px) {
    body::-webkit-scrollbar {
        width: 12px;
    }
    body::-webkit-scrollbar-track {
        background: var(--asr-cream-100);
    }
    body::-webkit-scrollbar-thumb {
        background: var(--asr-stone-300);
        border-radius: 6px;
        border: 3px solid var(--asr-cream-100);
    }
    body::-webkit-scrollbar-thumb:hover {
        background: var(--asr-burgundy-700);
    }
}

/* Print */
@media print {
    body .wrapper-fluid.wrapper-navbar,
    body .slider,
    body .site-footer {
        display: none !important;
    }
    body .shadow {
        box-shadow: none !important;
        border: none !important;
    }
}


/* ------------------------------------------------------------
   13b. TEMPLATE DOM BUG COMPENSATION
   footer.php has wp_footer() BEFORE the closing </div> of
   .container.shadow, which means WP-generated elements (cookie
   consent button, scripts, admin bar) get DOM-nested inside
   .container.shadow and take up vertical space after the footer,
   creating a white gap below the visual footer bar.
   Solution: remove those elements from flow.
   ------------------------------------------------------------ */

/* Complianz GDPR "Spravovať súhlas" button — pin to viewport */
body .container.shadow > #cmplz-manage-consent,
#cmplz-manage-consent {
    position: fixed !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
    right: auto !important;
    top: auto !important;
    z-index: 9998 !important;
    height: auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Other stray nodes after the footer should not take layout space */
body .container.shadow > script,
body .container.shadow > style,
body .container.shadow > template {
    display: none !important;
}


/* ------------------------------------------------------------
   14. WORDPRESS ADMIN BAR COMPATIBILITY
   Keep the admin bar pinned to the top for logged-in users and
   make the sticky navbar sit BELOW it, not under it.
   Uses maximum specificity so it wins over any other rule.
   ------------------------------------------------------------ */

/* Force admin bar to the top regardless of any other style.
   Do NOT force height/width here — let WP's own CSS manage that
   (32px desktop, 46px at <=782px) so mobile breakpoint works. */
html body #wpadminbar,
html.admin-bar body #wpadminbar,
#wpadminbar {
    position: fixed !important;
    top: 0 !important;
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    z-index: 99999 !important;
    transform: none !important;
    margin: 0 !important;
}

/* Mobile: WP default switches to position: absolute under 600px */
@media screen and (max-width: 600px) {
    html body #wpadminbar,
    html.admin-bar body #wpadminbar,
    #wpadminbar {
        position: absolute !important;
        top: 0 !important;
    }
}

/* Make sure html keeps its admin-bar spacer so content doesn't hide behind */
html.admin-bar {
    margin-top: 32px !important;
}

@media screen and (max-width: 782px) {
    html.admin-bar {
        margin-top: 46px !important;
    }
}

/* Push sticky navbar down so admin bar stays visible above it */
html.admin-bar body .wrapper-fluid.wrapper-navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    html.admin-bar body .wrapper-fluid.wrapper-navbar {
        top: 46px;
    }
}

.to-go-seminar {
	color:#fff!important
}