:root{
    --primary:#005d97;
    --primary-light:#0073ba;
      --bs-primary-rgb: 8, 121, 191;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    font-size: 15px;
    padding: 10px 22px;
    font-weight: 600;
    color: white !important;

    background: linear-gradient(
        to right,
        #0a7abf 0%,
        #ee2d35 100%
    );
    isolation: isolate;
}

.btn-primarysmall { color:#fff !important; padding:5px 16px !important; margin-left:1em; margin-top:3px; }

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0a7abf;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 15px;
    padding: 10px 22px;
    font-weight: 600;
    color: #000;
    background: #fff;
     isolation: isolate;
}
.btn-secondary:hover { color:#fff !important;}

.btn-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
   background: #0a7abf;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    opacity: 1;
}

img { max-width:100%;}


body{
    "Inter", sans-serif;
    font-size:16px;
    font-weight:400;
    letter-spacing:0.1px;
}
html,
body {
    overflow-x: hidden;
}

p{
    line-height:1.6;
}

.gradient-text {  
    background: linear-gradient(
    to right,
    #0a7abf 0%,
    #ee2d35 100%
);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

h1,h2,h3,h4,h5,h6{
    letter-spacing:-1.8px;
}

#mainNav { transition: all .3s ease; }

#mainNav.scrolled{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(24px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

#mainNav .navbar-brand img { max-height:60px;}

#mainNav .nav-link {
    font-size:.95rem;
    color: #333;
    font-weight: 500;
    text-shadow: none;
    transition: .2s;
}

#mainNav .nav-link:hover {

    color: #005d97;
}
#mainNav .nav-link.active {

    color: #005d97;

    font-weight: 700;
}


#mainNav.scrolled .nav-link{
    color:#222;
}

.dropdown-menu {

    background: rgba(255,255,255,.92);

    backdrop-filter: blur(20px);

    border: 0;

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);
}


.hero{
    position:relative;
    min-height:700px;
    overflow:hidden;
}

.badge { background:#fff; border-radius:20px; color:#0879bf; padding:8px 16px 8px 16px; text-transform: uppercase; border:1px solid #eee; font-size:13px; letter-spacing: .15em;}
.lead { font-size:1.25rem; font-weight:500; color:#666}


.hero-content{
    color:#fff;
}

.hero img { box-shadow: 0 1px 2px #0d15280a,0 20px 50px #0d15281f;}

.hero h1{
    font-size:4.5rem;
    font-weight:900;
    line-height:1.05;
    margin-bottom:0.4em;
}

.hero-content h2 { 
    font-size:clamp(1.2rem,2.4vw,2.4rem);
    font-weight:600;
    margin-bottom:0.5em;
}


/* buttons */
.hero-links{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.hero-slider {
    position: relative;
    height: 550px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transform: scale(1);

    transition:
        opacity 1.5s ease,
        transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 991px) {

    .hero-slider {
        height: 350px;
        margin-top: 2rem;
    }

}

/* ================= INFO BOXES ================= */

.info-boxes{
    display:grid;
    gap:14px;
}

.info-card{
    display:block;
    padding:20px;
    border-radius:16px;

    color:#fff;
    text-decoration:none;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(14px);

    border-left:5px solid transparent;

    transition:.25s;
}

.info-card:hover{
    transform:translateY(-3px);
    color:#fff;
}

.info-card strong{
    display:block;
    font-size:1.2rem;
    margin-bottom:6px;
}

/* colors */
.yellow{border-left-color:#ffc107; background:rgba(255,193,7,0.75);}
.green{border-left-color:#198754; background:rgba(25,135,84,0.75);}
.red{border-left-color:#dc3545; background:rgba(220,53,69,0.75);}
.blue{border-left-color:#0073ba; background:rgba(0,115,186,0.75);}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .hero{
        height:auto;
        min-height:100vh;
    }

    .hero-content{
        margin-top:120px;
        margin-bottom:40px;
    }
    
    .hero h1 {
        font-size:3.5rem;
    }
    #mainNav .navbar-brand img { max-height:50px;}

}

/* Desktop */

@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: dropdownFade .2s ease;
    }

    .navbar .dropdown-toggle::after {
        transition: transform .2s ease;
    }

    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

@keyframes dropdownFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {

    border: 0;
    border-radius: 16px;

    padding: .75rem;

    min-width: 260px;

    background: rgba(255,255,255,.98);

    backdrop-filter: blur(16px);

    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.dropdown-item {
    border-radius: 10px;

    padding: .75rem 1rem;

    transition: .2s;
}

.dropdown-item:hover {

    background: #f3f6fb;
    color: #0d6efd;
}

.navbar-toggler {
  width: 44px;
  height: 38px;
  position: relative;
  border: 0;
  outline: none;
  box-shadow: none;
}

/* z�kladn� 3 ��rky */
.toggler-icon,
.toggler-icon::before,
.toggler-icon::after {
  content: "";
  display: block;
  height: 2px;
  width: 26px;
  background: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.25s ease;
  border-radius: 2px;
}

.toggler-icon {
  top: 50%;
  transform: translate(-50%, -50%);
}

.toggler-icon::before {
  top: -8px;
}

.toggler-icon::after {
  top: 8px;
}

/* OPEN STATE � X */
.navbar-toggler[aria-expanded="true"] .toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}


@media (max-width: 991.98px) {
  .navbar-collapse.show {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
}


#topBar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 40px;

    z-index: 2000;

    background: rgba(0,0,0,.45);
    backdrop-filter: blur(12px);

    transition: transform .35s ease;
}

/* INNER */
.topbar-inner{
    height: 40px;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

/* RIGHT GROUP */
.topbar-right{
    display:flex;
    align-items:center;
    gap:18px;
}

/* SOCIAL RIGHT */
.topbar-social{
    display:flex;
    gap:14px;
}

.topbar-social a{
    color:#fff;
    font-size:1rem;
    transition:.2s;
}

.topbar-social a:hover{
    opacity:.7;
}

/* SEARCH BOX WRAPPER */
.topbar-search-box{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}

/* ICON */
.search-toggle{
    background:transparent;
    border:0;
    color:#fff;
    font-size:1rem;
    cursor:pointer;
}

.topbar-search-wrap{
    position: absolute;
    top: 33px;
    right: 0;

    width: 420px;
    max-width: 90vw;

    max-height: 0;
    overflow: hidden;

    opacity: 0;

    transition: all .3s ease;

    background: rgba(0,0,0,.65);
    backdrop-filter: blur(12px);
    border-radius:8px;


    padding: 0;
}

/* ACTIVE */
.topbar-search-wrap.active{
    max-height: 70px;
    opacity: 1;
    padding: 10px;
}

/* FORM */

/* form layout */
.topbar-search{
    display:flex;
    width:100%;
}

/* input */
.topbar-search input{
    flex:1;
    height:30px;

    border:0;
    padding:0 10px;

    border-radius:6px 0 0 6px;

    outline:none;
}

/* submit button */
.search-submit{
    width:34px;
    height:30px;

    border:0;

    background:#0073ba;
    color:#fff;

    border-radius:0 6px 6px 0;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
}

.search-submit:hover{
    background:#0b5ed7;
}



.news-section{
/*    padding:60px 0;*/
}

.section-title{
    font-size:3rem;
    text-wrap: balance;
    font-weight:800;
    margin-top:0.5rem;
    margin-bottom:0.5rem;
}

.news-card {
    display: flex;
  flex-direction: column;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.25s ease;

 
  height: 100%;

}

.news-card:hover {
    transform:translateY(-4px);
}

.news-img img {
    width:100%;
    display:block;
    object-fit:cover;
}

.news-card-large .news-img img {
    height:420px;
}

.news-card-small .news-img img {
    height:180px;
}

.news-card-large {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-large .news-img {
    flex: 1;
}

.news-card-large .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding:1.25rem;
}

.news-date {
    display:block;
    margin-bottom:.5rem;
    color:#64748b;
    font-size:.875rem;
}

.news-title {
    margin-bottom:.5rem;
    line-height:1.2;
    font-weight:700;
    font-size:1.25rem;
}

.news-card:hover .news-title { text-decoration:underline;}

.news-title-big {
font-size:1.85rem;
}

.news-excerpt {
    margin:0;
    color:#475569;
}

.col-lg-5 .news-card {
    flex:1;
}


/* LARGE */
.item-large .news-img{
    height:420px;
}

.item-large .news-title{
    font-size:22px;
}

/* SMALL */
.item-small .news-img{
    height:130px;
    border-radius:14px;
}





#vybranekurzy { 

background:
    radial-gradient(120% 80% at 70% 20%, #ffffffff, #0000 55%),
    radial-gradient(90% 70% at 20% 80%, #4aa6dd38, #0000 60%),
    linear-gradient(to bottom right, #f9fcff, #eff6fd);
/*background: rgba(0,115,186,0.1);*/

}


/* CARD */
.course-card{
    border:0;
    border-radius:16px;
    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:transform .25s ease, box-shadow .25s ease;
}

.course-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* IMAGE */
.course-card img{
    height:180px;
    object-fit:cover;
}

.course-card-footer {
    display: flex;
    justify-content: flex-end; /* ?? doprava */
    margin-top: 12px;
}

/* TITLE */
.card-title{
    font-size:1.225rem;
    font-weight:700;
    letter-spacing:-0.5px;
}

/* INFO */
.course-info{
    font-size:14px;
    color:#555;
}


.page-header {
    padding-top: 9rem;
    padding-bottom: 3rem;

    background:
        radial-gradient(
            120% 80% at 85% 0,
            #ffd4002e,
            transparent 55%
        ),
        radial-gradient(
            90% 70% at 0 100%,
            #2563ef38,
            transparent 60%
        ),
        linear-gradient(
            #f9fcff,
            #eff6fd
        );

    border-bottom: 1px solid rgba(0,0,0,.05);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
}


.cta-gradient {
  background: linear-gradient( to right, #0a7abf 0%, #ee2d35 100% );
}

/* blur dekorace */
.cta-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  z-index: 0;
}

.cta-blur-1 {
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.15);
  top: -40px;
  right: -40px;
}

.cta-blur-2 {
  width: 260px;
  height: 260px;
  background: rgba(255, 140, 0, 0.25);
  bottom: -60px;
  left: -40px;
}

.text-white-85 {
  color: rgba(255,255,255,0.85);
}

.fw-black {
  font-weight: 900;
}

/* =========================
   GRID GALERIE
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* =========================
   BOXY
========================= */
.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #eee;
  text-decoration: none;
}

/* default �tverec */
.gallery-item {
  aspect-ratio: 1 / 1;
}

/* vy��� boxy (masonry feeling) */
.gallery-item.tall {
  aspect-ratio: 3 / 4;
}

/* =========================
   OBRAZEK
========================= */
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* hover zoom */
.gallery-item:hover img {
  transform: scale(1.06);
}

/* =========================
   GLIGHTBOX (voliteln� dolad�n�)
========================= */
.glightbox-clean .gslide-image img {
  border-radius: 10px;
}


/* datum box */
.date-box {
  width: 70px;
  padding: 10px;
  border-radius: 14px;
  background: #f8f9ff;
}

/* hover efekt polo�ek */
.event-item {
  transition: background 0.2s ease;
}

.event-item:hover {
  background: #f8f9ff;
}

/* placeholder kalend��e */
.calendar-placeholder {
  min-height: 300px;
  border: 1px dashed #dee2e6;
  border-radius: 12px;
}

/* =========================
   CALENDAR HEADER
========================= */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 14px;
  margin-bottom: 12px;

  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* m�s�c */
#calendar-head {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
}

/* =========================
   NAV BUTTONS (kulat�)
========================= */
.calendar-button {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%; /* ?? pln� kulat� */
  background: #f1f3f5;

  text-decoration: none;
  position: relative;

  transition: all 0.2s ease;
  flex: 0 0 40px; /* fixn� tvar � ��dn� deformace */
}

/* hover stav */
.calendar-button:hover {
  background: #0879bf;
}

/* =========================
   �IPKY (CSS)
========================= */
.calendar-button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #495057;
  border-bottom: 2px solid #495057;
  display: block;
  transition: 0.2s ease;
}

/* lev� �ipka */
.calendar-prev::before {
  transform: rotate(135deg);
}

/* prav� �ipka */
.calendar-next::before {
  transform: rotate(-45deg);
}

/* hover � b�l� �ipka */
.calendar-button:hover::before {
  border-color: #fff;
}

/* =========================
   FOCUS (accessibility)
========================= */
.calendar-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 121, 191, 0.25);
}


/* =========================
   KALEND�� - BOX
========================= */
#calendar-table {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}


/* =========================
   TABLE LAYOUT FIX
========================= */
#calendar-table table {
  width: 100%;
  table-layout: fixed; /* stejn� ���ky sloupc� */
  border-collapse: separate;
  border-spacing: 6px;
}

/* =========================
   BU�KA = stabiln� box
========================= */
#calendar-table td {
  width: 14.28%;
  height: 36px;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  position: relative;
}

/* =========================
   V�ECHNY OBSAHY (ODKAZ I TEXT)
========================= */
#calendar-table td a,
#calendar-table td span {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto;

  border-radius: 50%;
  text-decoration: none;

  font-weight: 500;
  color: #212529;

  transition: all 0.2s ease;
}

/* =========================
   HOVER
========================= */
#calendar-table td:not(.grey):hover a {
  background: rgba(8, 121, 191, 0.12);
  color: #0879bf;
}

/* =========================
   AKCE (modr�)
========================= */
#calendar-table td.has_event a {
  background: #0879bf;
  color: #fff;
  font-weight: 700;
}

/* hover event */
#calendar-table td.has_event a:hover {
  background: #06679f;
  color:yellow;
}

/* =========================
   NEAKTIVN� DNY
========================= */
#calendar-table td.grey {
  color: #adb5bd;
}

/* =========================
   FIX PRO TEXT BEZ ODKAZU
========================= */
#calendar-table td:not(:has(a)) span {
  color: #adb5bd;
}



/* =========================
   CARD
========================= */
.feature-card {
  border: 1px solid #e9ecef;
  border-radius: 18px;
  background: #fff;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  color: inherit;
    --accent: #0879bf;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* =========================
   SOFT COLOR BACKGROUND (NEW)
========================= */
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  transition: opacity 0.25s ease;
  pointer-events: none;

  /* ? D�LE�IT�: gradient m�sto flat barvy */
  background: radial-gradient(
    circle at top right,
    var(--accent, #0879bf) 0%,
    transparent 70%
  );
}

.feature-card:hover::after {
  opacity: 0.25;
}



/* =========================
   ACCENT COLORS (BG)
========================= */
.accent-krouzky::after { background: #f8e80d; }
.accent-tabory::after   { background: #e91921; }
.accent-akce::after     { background: #7dbd3c; }
.accent-pronajmy::after { background: #0073ba; }

/* =========================
   TEXT BRAND COLOR
========================= */
.text-brand {
  color: #0879bf;
}

/* =========================
   ACCENT TEXT
========================= */
.accent-text {
  font-weight: 600;
}

/* =========================
   ICON BOX
========================= */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

/* ICON COLORS */
.accent-krouzky .icon-box { color: #f8e80d; }
.accent-tabory .icon-box { color: #e91921; }
.accent-akce .icon-box { color: #7dbd3c; }
.accent-pronajmy .icon-box { color: #0073ba; }

/* =========================
   ICON HOVER (optional nice touch)
========================= */
.feature-card:hover .icon-box {
  transform: scale(1.05);
}

/* =========================
   ACCENT TEXT HOVER
========================= */
.feature-card:hover .accent-text {
  letter-spacing: 0.3px;
}

.feature-card h3 {
  line-height: 1.2;
}

.icon-box {
  flex-shrink: 0;
}



/* =========================
   SECTION TITLE
========================= */
.subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #0879bf;
  letter-spacing: 0.2px;
}

/* =========================
   SIDE NAV CONTAINER
========================= */
.side-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e9ecef;
  overflow: hidden;
}

/* =========================
   ITEM LINKS
========================= */
.side-nav li {
  border-bottom: 1px solid #f1f3f5;
}

.side-nav li:last-child {
  border-bottom: none;
}

.side-nav a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

/* hover */
.side-nav a:hover {
  background: #f8f9fa;
  color: #0879bf;
  padding-left: 18px;
}

/* =========================
   ACTIVE ITEM
========================= */
.side-nav a.active {
  background: rgba(8, 121, 191, 0.08);
  color: #0879bf;
  font-weight: 600;
}

/* lev� accent bar pro active */
.side-nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #0879bf;
}

/* =========================
   OPTIONAL: subtle animation
========================= */
.side-nav a {
  transition: all 0.2s ease, padding-left 0.2s ease;
}

#hlavni a { color:#0879bf}
#hlavni a:hover { color:#025a90; }
#hlavni table.terminy { width:100%;}
#hlavni table.terminy tr td { padding:5px;}
#hlavni table.terminy tr th { padding:5px;}
#hlavni table.terminy tr:nth-child(odd) {  background-color: #f9f9f9;}
#hlavni table.terminy tr:nth-child(even) {  background-color: #ffffff;}


/* =========================
   FOOTER
========================= */

.footer-ddm{
    background:#1f2937;
    color:#fff;
    margin-top:2rem;
}

.footer-text{
    color:rgba(255,255,255,.7);
    line-height:1.7;
    max-width:320px;
}



/* =========================
   TITULKY
========================= */

.footer-title{
    font-size:.75rem;
    text-transform:uppercase;
    letter-spacing:.15em;
    color:rgba(255,255,255,.45);
    margin-bottom:1.25rem;
    font-weight:700;
}

/* =========================
   ODKAZY
========================= */

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:.75rem;
}

.footer-links a{
    color:rgba(255,255,255,.8);
    text-decoration:none;
    transition:.2s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:4px;
}

/* =========================
   SOCIAL
========================= */

.footer-social{
    display:flex;
    gap:.75rem;
    margin-top:1.5rem;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.25s;
}

.footer-social a:hover{
    background:#0879bf;
    color:#fff;
    transform:translateY(-3px);
}

.footer-social i{
    font-size:1.1rem;
    line-height:1;
}





/* =========================
   KONTAKT
========================= */

.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:.75rem;
    margin-bottom:1rem;
    color:rgba(255,255,255,.8);
}

.footer-contact i{
    color:#0879bf;
    font-size:1rem;
    flex-shrink:0;
    margin-top:2px;
}

.footer-org-name{
    color:#fff;
    font-weight:600;
    line-height:1.5;
    margin-bottom:1.25rem;
}

.footer-contact strong{
    color:#fff;
    font-weight:600;
}

.footer-contact a { color:#ddd;}
.footer-contact a:hover { color:#fff;}

/* =========================
   ODD�LOVA�
========================= */

.footer-divider{
    margin:3rem 0 1.5rem;
    border-color:rgba(255,255,255,.1);
}

/* =========================
   SPODN� LI�TA
========================= */

.footer-bottom{
    display:flex;
    justify-content:space-between;
    gap:1rem;
    flex-wrap:wrap;
    color:rgba(255,255,255,.5);
    font-size:.85rem;
}

#footer2 { background:#081123; color:#999; font-size:0.85em;}
#footer2 a { color:#fff;}


@media (max-width:768px){

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}

.calendarDaily { width: 280px !important; text-align: center !important; }

table.calendarDaily tr td {
  padding: 3px 12px;
  border: 1px solid #015082;
  font-weight: bold;
  height:40px;
}

table.calendarDaily tr th {
  background: rgba(8, 121, 191, 0.08);
  padding: 10px 12px;
  border: 1px solid #015082;
  color: #0879bf;
  }
.reserved { background-color: #eee; color: #aaa; }
.avaiable { cursor: pointer; color: #24860f; }
.avaiable.active,
.avaiable:hover { color: white; background-color: #D30B13; }

fieldset.pronajem {
  /*border: 1px solid #015082;*/
  margin-bottom: 15px;
  padding-top: 7px;
}
fieldset.pronajem .nopadding { margin-top: -5px; }
.pronajem label {
  font-weight: bold;  
  display: inline-block;
}
.pronajem label.wide { width: 105px; }
.pronajem input { margin-right: 12px; }
/*.pronajem input.long { width: 300px; margin-left: 1px; }*/
.pronajem input.button { margin-right: 0; }
.pronajem select { margin-right: 20px; background:#fff; padding:5px 10px 5px 10px; border:1px solid #333; }

div.error {
  background-color: #D30B13;
  color: white;
  padding: 5px 10px 0;
  border: 1px solid #a30B13;
  margin-bottom: 15px;
}
div.error p { font-weight: bold; }
.clear {
  clear: both;
}

@media(max-width:991px){
    .page-header { padding-top:7rem; padding-bottom:2rem;}
    .page-header h1 { font-size: 2.5rem; letter-spacing: -0.5px; }
    
}