/* Globální */
body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #121212;
    color: #f0f0f0;
    font-family: 'Nunito Sans', sans-serif;
}

*:hover {
	cursor: url('/themes/ultrodius-v2/assets/img/logo-cursor.webp') 0 0, auto !important;
	}

a {
    color: #eeaa11;
    text-decoration: none;
}

a:hover {
    color: #eeaa11;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.btn,
.section-title,
p,
a,
ul,
li,
input,
textarea {
    font-family: 'Nunito Sans', sans-serif;
}

.row > article {
  background-color: #181818;
  padding: 2.5rem; /* větší vnitřní okraj než 20px */
  margin: 2rem;
  border: 1px solid #444;
  border-radius: 25px;
  color: #f0f0f0;
  line-height: 1.7;
  margin-bottom: 2rem; /* oddělení od okolí */
}

/* zrušení velkých vnějších okrajů uvnitř článku */
article h1,
article h2,
article h3,
article h4,
article h5,
article h6,
article p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* volitelně – pro hezký odstup od okrajů při delším textu */
article p:last-child {
  margin-bottom: 0;
}

/* NADPISY */
.hp-h2-div {
    max-width: 100%;
}

.hp-h2-num {
    display: block;
    font-weight: bold;
    font-size: 1rem;
    color: #eeaa11;
}

.hp-h1,
.hp-h2 {
    position: absolute;
    z-index: 2;
    left: 1.75rem;
    font-size: 5rem;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    margin: 0;
    display: inline;

    background: linear-gradient(to right, #eeaa11, #be880d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hp-h1-span,
.hp-h1-span2,
.hp-h2-span {
    font-size: 9rem;
    line-height: 9.5rem;
    font-weight: 900;
    font-style: italic;
    padding: 0 7px 0 0;
    color: #181818;
    z-index: 1;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    text-shadow:
        1px 1px rgba(255, 255, 255, 0.15),
        -1px -1px rgba(255, 255, 255, 0.15),
        1px -1px rgba(255, 255, 255, 0.15),
        -1px 1px rgba(255, 255, 255, 0.15);
}

.hp-h1-span {
    color: #121212 !important;
}

.hp-h1-span2 {
    color: #121212 !important;
    font-size: 7rem !important;
}

.bigtitle {
    position: relative;
    display: flex;
    align-items: center;
}

/* Fullscreen overlay s loadingem*/
.preloader {
    position: fixed;
    inset: 0;
    background: #0f0f0f;
    display: grid;
    place-items: center;
    z-index: 9999;
    transition: opacity .4s ease;
}

/* vnitřek */
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* CSS spinner */
.spinner {
    width: 64px;
    height: 64px;
    border: 4px solid rgba(238, 170, 17, .2);
    border-top-color: #eeaa11;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.preloader-logo {
    height: 128px;
    opacity: .9;
}

/* stav skrývání */
.preloader.hide {
    opacity: 0;
    pointer-events: none;
}

/* respektuj „snížit animace“ */
@media (prefers-reduced-motion: reduce) {

    .preloader,
    .preloader * {
        animation: none !important;
        transition: none !important;
    }
}

/* TOPBOX styl */
.topbox {
    transition: background-color 0.75s ease, box-shadow 0.5s ease;
    background-color: rgba(20, 20, 20, 0);
    z-index: 1030;
}

.topbox.scrolled {
    border-bottom: 1px solid rgba(238, 170, 17, 0.5);
    background-color: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 20px rgba(238, 170, 17, 0.5);
}

/* Logo */
.logo {
    height: 40px;
}

/* Menu položky */
.menu-item {
    position: relative;
    color: #aaa;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.menu-item:hover,
.menu-item:focus {
    color: #fff;
}

.menu-item::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background-color: #eeaa11;
    transition: width 0.3s ease;
    margin-top: 4px;
}

.menu-item:hover::after {
    width: 100%;
}

/* Aktivní položka */
.menu-item.active {
    color: #fff;
}

.menu-item.active::after {
    width: 100%;
}

/* Submenu */
.has-submenu+.submenu {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.has-submenu:hover+.submenu {
    display: block;
}

.submenu a {
    display: block;
    padding: 0.25rem 0;
    color: #ccc;
    text-decoration: none;
}

.submenu a:hover {
    color: #fff;
}

/* Zarovnání burger loga */
.navbar .logo {
    height: 40px;
}

/* Menu Items */
.nav-link {
    position: relative;
    font-size: 20px;
    color: #ccc !important;
    transition: color 0.2s ease;
    margin: 0 20px;
    text-decoration: none;
}

/* Hover bar */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #eeaa11;

    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s ease;
}

/* Hover animace */
.nav-link:hover::after,
.nav-link:focus::after {
    transform: scaleX(1);
}

/* Aktivní položka – stále podtržená */
.nav-link.active::after {
    transform: scaleX(1);
}

/* Barvy textu */
.nav-link:hover,
.nav-link:focus {
    color: #fff !important;
}

.nav-link.active {
    color: #fff !important;
}

/* Dropdown menu - tmavé */
.dropdown-menu {
    background-color: #1f1f1f;
    border: none;
}

.dropdown-item {
    color: #ccc;
}

.dropdown-item:hover {
    background-color: #2a2a2a;
    color: #fff;
}

@media (max-width: 768px) {
    .navbar-expand-md .navbar-nav {
        flex-direction: column;
        flex-wrap: center;
    }
    
    .topbox {
    border-bottom: 1px solid rgba(238, 170, 17, 0.5);
    background-color: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 20px rgba(238, 170, 17, 0.5);
    }

    .hp-h1,
    .hp-h2 {
        font-size: 4rem;
        left: 0.5rem;
    }

    .hp-h1-span,
    .hp-h2-span {
        font-size: 5rem;
    }
}

/* HERO sekce */
.hero {
    height: 100vh;
    background-image: url('../img/herobg.webp');
    border-bottom: 1px solid #eeaa11;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    z-index: 2;
    position: relative;
}

/* posunutí obsahu výš */
.hero .row {
    min-height: calc(100vh - 80px);
}

.hero .col-lg-6 {
    margin-top: -20vh;
}

/* Nadpis */
.hero h1 {
    font-size: 7.5rem;
    letter-spacing: 15px;
    color: #ddd !important;
    transition: text-shadow 1s ease, color 1s ease;
}

.hero h1:hover {
	text-shadow:	
      0 0 2.5px rgba(238, 170, 17, 0.8),
      0 0 5px rgba(238, 170, 17, 0.6),
      0 0 8px rgba(238, 170, 17, 0.4);
      color: #181818 !important;
	}

/* Hláška */
.hero p.lead {
    font-size: 2.0rem;
    font-style: italic;
    letter-spacing: 5px;
    color: #ddd !important;
}

/* Tlačítko */
.hero .btn-lg {
    font-size: 2.25rem;
    padding: 1.25rem 2.5rem;
    border-width: 2px;
}

/* Vynoření prvků na HP */
.hero h1 {
    opacity: 0;
    transform: translateY(-150px);
    /* spadne shora */
    animation: heroDrop 1.5s ease-out forwards;
}

.hero p {
    opacity: 0;
    transform: translateX(-150px);
    /* přijede zleva */
    animation: heroSlideLeft 1.2s ease-out forwards;
    animation-delay: 0.4s;
    /* o trochu později než nadpis */
}

.hero a.btn {
    opacity: 0;
    transform: translateX(50px);
    /* přijede zprava */
    animation: heroSlideRight 1.2s ease-out forwards;
    animation-delay: 1s;
    /* nejpozději */
}

@keyframes heroDrop {
    0% {
        opacity: 0;
        transform: translateY(-150px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 768px) {
    .hero .row {
        min-height: 80vh;
    }

    /* Nadpis */
    .hero h1 {
        font-size: 4.5rem;
        /* větší než defaultní display-4 */
        letter-spacing: 5px;
    }

    /* Hláška */
    .hero p.lead {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }
}

/* Tlačítka v hero sekci */
.hero-btn {
  font-size: 1.2rem;
  padding: 0.9rem 2rem;
  border-width: 2px;
  transition: all 0.5s ease;
  border-radius: 10px;
}

/* Hover efekt */
.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(238, 170, 17, 0.4);
}

/* Menší obrazovky — zarovnání na střed a mezery pod sebou */
@media (max-width: 768px) {
  .hero-btn {
    display: block;
    width: 100%;
  }
}

/* SERVICES sekce */
.services {
    background-color: #181818;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.service-box {
    background-color: #1f1f1f;
    border: 1px solid #333;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-box:hover {
    background-color: #2a2a2a;
    border-color: #eeaa11;
    box-shadow: 0 0 10px rgba(238, 170, 17, 0.3);
    transform: translateY(-5px);
}

.service-box h3 {
    color: #fff;
}

.service-box p {
    color: #ccc;
}

/* COUNTERS sekce */
.counters {
    background-color: linear-gradient(135deg, #111 0%, #000 100%);
    border-top: 2px dotted #eeaa11;
    border-bottom: 2px dotted #eeaa11;
}

.counter-box {
  padding: 1.5rem 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
}

.counter-number {
    font-size: 3rem;
}

.counter-label {
    font-size: 1.1rem;
    color: #ccc;
}

.counter-icon {
  font-size: 2.5rem;
  color: #eeaa11;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.counter-box:hover .counter-icon {
  transform: scale(1.15);
}
/* ARTICLES sekce */
.articles {
    background-color: #181818;
}

.article-box {
    background-color: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.article-box:hover {
    transform: translateY(-5px);
    border-color: #eeaa11;
    box-shadow: 0 0 15px rgba(238, 170, 17, 0.2);
}

.article-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-excerpt {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* REFERENCE sekce */
.references {
    background-color: #181818;
}

.reference-box {
    background-color: #232323;
    border-radius: 10px;
    border: 1px solid #2e2e2e;
    transition: all 0.3s ease;
    height: 100%;
}

.reference-box:hover {
    border-color: #eeaa11;
    box-shadow: 0 0 10px rgba(238, 170, 17, 0.2);
    transform: translateY(-5px);
}

/* REFERENCE s obrázkem */
.reference-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-5px);
    border: 1px solid #eeaa11;
    border-color: #eeaa11;
    box-shadow: 0 0 10px rgba(238, 170, 17, 0.2);
}

.reference-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
}

.reference-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
    height: 100%;
    color: #fff;

    /* Nové přidáno: */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* zarovná text dolů */
}

/* KLIENTI sekce */
.clients {
    background-color: linear-gradient(135deg, #111 0%, #000 100%);
    border-top: 2px solid #eeaa11;
    border-bottom: 1px solid #eeaa11;
    text-align: center;
}

.client-logo {
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.5s ease, transform 0.5s ease;
    max-height: 60px;
    object-fit: contain;
}

.client-logo:hover {
    filter: none;
    transform: scale(1.35);
}

/* CTA sekce */
.cta {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border-top: 2px solid #eeaa11;
    border-bottom: 1px solid #eeaa11;
}

.cta h2 {
    font-size: 2.2rem;
}

.cta p {
    font-size: 1.1rem;
    color: #ccc;
}

/* FOOTER */
.footer {
    background-image: url('../img/footer_bg.webp');
    background-size: cover;
    background-position: center;
    color: #ccc;
    position: relative;
    z-index: 1;
}

.footer::before {
    background:
        linear-gradient(rgba(1, 1, 1, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/footer_bg.webp') center/cover no-repeat;
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.footer>.container {
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-height: 40px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #eeaa11;
}

.social-icons:hover a:hover {
    color: #eeaa11;
}

.fab:hover {
    color: #eeaa11;
}

/* Kontakt */
.contact-section {
    background-color: rgba(20, 20, 20, 0);
    margin: 80px 0 20px 0;
    color: #f0f0f0;
    font-family: 'Nunito Sans', sans-serif;
}

.contact-title {
    font-size: clamp(2rem, 2.5vw + 1.2rem, 3rem);
    font-weight: 800;
    letter-spacing: .3px;
    color: #fff;
}

.contact-intro {
    color: #bbb;
    max-width: 60ch;
}

.contact-image-wrapper {
    max-width: 420px;
}

.contact-image {
    width: 100%;
    transition: transform .4s ease, box-shadow .4s ease;
}

.contact-image:hover {
    transform: scale(1.02);
}

.contact-form .form-label {
    color: #ddd;
    font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-select {
    background: #1b1b1b;
    border: 1px solid #333;
    color: #fff;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
}

.contact-form .form-control::placeholder {
    color: #888;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #eeaa11;
    box-shadow: 0 0 0 .2rem rgba(238, 170, 17, .15);
    background: #1e1e1e;
    color: #fff;
}

/* Kontakt – úprava tlačítka na plnou šířku */
.contact-form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 10px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* Efekt hover – jemné zvýraznění */
.contact-form button[type="submit"]:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 0 12px rgba(238, 170, 17, 0.3);
}

/* Styl pro select s vlastní šipkou */
.contact-form select.form-select {
    appearance: none;
    /* odstraní výchozí systémovou šipku */
    background-color: #1b1b1b;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23eeaa11' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    color: #fff;
    border: 1px solid #333;
    padding-right: 2.8rem;
    /* rezerva pro šipku */
    cursor: pointer;
}

/* Hover/focus efekty */
.contact-form select.form-select:focus {
    border-color: #eeaa11;
    box-shadow: 0 0 0 0.25rem rgba(238, 170, 17, 0.15);
    outline: none;
}

/* kontejner selectu drží pozici pro absolute dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

/* „hlavička“ */
.custom-select-trigger {
    background: #1b1b1b;
    color: #fff;
    padding: 1rem 1.2rem;
    border: 1px solid #333;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .2s ease;
    position: relative;
}

/* šipka vpravo */
.custom-select-trigger::after {
    content: '▲';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    font-size: .75rem;
    color: #eeaa11;
    transition: transform .25s ease;
}

.custom-select.open .custom-select-trigger::after {
    transform: translateY(-50%) rotate(0deg);
}

/* DROPDOWN */
.custom-options {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
    /* KLÍČOVÉ: stacking svisle + animace */
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 2000;
    /* ať nic nepřekryje */
    overflow: hidden;
}

.custom-select.open .custom-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* jednotlivá volba = blok přes celou šířku */
.custom-option {
    display: block;
    width: 100%;
    padding: .9rem 1.2rem;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.custom-option:hover {
    background: #222;
    color: #eeaa11;
}

/* Responsivní drobnosti */
@media (max-width: 991.98px) {
    .contact-intro {
        max-width: 100%;
    }

    .contact-image-wrapper {
        max-width: 320px;
    }
}

/* Návratová šipka */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eeaa11;
    color: #000;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    background-color: #ffcc33;
    transform: translateY(-4px);
}

.back-to-top.show {
    opacity: 0.75;
    visibility: visible;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.95);
    color: #f0f0f0;
    border-top: 2px solid #eeaa11;
    padding: 1rem 2rem;
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-link {
    color: #eeaa11;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #ffcc33;
}

/* Responzivita */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ERROR sekce */
.error {
    min-height: calc(100vh - 80px);
    padding-top: 80px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    position: relative;
    text-align: center;
}

/* Nadpis 404 */
.error-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Podnadpis */
.error-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #bbb;
}

/* Styl tlačítek */
.error .btn {
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hover efekty */
.error .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(238, 170, 17, 0.3);
}

/* Menší zařízení */
@media (max-width: 768px) {
    .error-title {
        font-size: 2rem;
    }

    .error-subtitle {
        font-size: 1.1rem;
    }
}

/* WEB NA MÍRU sekce */
.webs {
    background-color: rgba(20, 20, 20, 0);    
}

.webs-ico {
	font-size: 90px;			
	}

/* Hlavní článek (vlevo) */
.page-article {
  background-color: #181818;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 2rem;
  color: #f0f0f0;
  line-height: 1.7;
}
.page-article h1,
.page-article h2,
.page-article h3,
.page-article h4,
.page-article h5,
.page-article h6 {
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: .75rem;
  font-weight: 700;
}
.page-article p {
  margin-bottom: 1rem;
  color: #ccc;
}

/* Sidebar (vpravo) */
.sidebar-box {
  background-color: #1f1f1f;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1rem;
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #eeaa11;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.sidebar-menu li + li {
  margin-top: .5rem;
}

.sidebar-link {
  display: block;
  background-color: #272727;
  border: 1px solid #333;
  border-radius: 10px;
  padding: .75rem 1rem;
  color: #ccc;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.4;
  text-decoration: none;
  transition: all .2s ease;
}

.sidebar-link:hover {
  background-color: #2a2a2a;
  border-color: #eeaa11;
  box-shadow: 0 0 12px rgba(238, 170, 17, 0.25);
  color: #fff;
}

/* CTA link uvnitř sidebaru */
.sidebar-cta {
  background-color: #eeaa11;
  border-color: #eeaa11;
  color: #000;
  text-align: center;
  font-weight: 700;
}
.sidebar-cta:hover {
  background-color: #ffc533;
  border-color: #ffc533;
  color: #000;
  box-shadow: 0 10px 20px rgba(238, 170, 17, .3);
}

/* Lepší čitelnost na mobilech */
@media (max-width: 767.98px) {
  .sidebar-box {
    padding: 1.25rem 1rem;
  }
  .sidebar-link {
    font-size: 1rem;
  }
}

/* HELPER */
.container>div>div {
    max-width: 100%;
}

.btn:hover {
	box-shadow: 0 8px 12px rgba(238, 170, 17, .3)
	}

.topbox-rez {
	margin-top: 80px;
	}