﻿
/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #043349; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --clr_antuka: #f26f3f;
  --clr_modra_tmava: #043349;
  --clr_zelena_bkg: #e0eae3;
  --clr_seda: #f6f6f6;
  --clr_black: #212529;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #043349; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #043349; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #043349;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #043349;
  --contrast-color: #ffffff;
}

.no-bkg {
  background-color: none;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


.bold {font-weight: bold;}

.float_left{float: left;}
.float_right{float: right;}

.left {text-align: left;}
.right {text-align: right;}

.col_red {color: #cc0000;}
.col_green {color: #339933;}
.col_yellow {color: #ffff00;}
.col_light_yellow {color: #ffe786;}
.col_orange {color: #ffcc33;}
.col_blue {color: #0066FF;}

.bkg_full_red {background-color: #ff0000;}
.bkg_red {background-color: #cc0000;}
.bkg_green {background-color: #339933;}
.bkg_blue {background-color: #0066FF;}
.bkg_yellow {background-color: #ffff00;}

.right {text-align: right;}

.clear {clear: both;}
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.main {
  background: linear-gradient(180deg, var(--clr_modra_tmava), var(--clr_zelena_bkg) 100%);
  padding-top: 170px;
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 4px;
  background-color: var(--clr_antuka);
  color: var(--contrast-color);
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
  border: none;
  cursor: pointer;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* ==========================================================================
   = Star Ratings
   ========================================================================== */


.star-rating {
  text-align: left;
  margin-left: 5px;
  float: left;
}

.star-rating > span {
  display: inline-block;
  position: relative;
  width: 1.1em;
  color: #ffba00;
}

/* ==========================================================================
   = Messages
   ========================================================================== */
  .message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

	.message {
		padding: 13px 15px;
		margin-bottom: 2px;
		background-color: #b7cc99;
		color: #fff;
		font-weight: 400;
		letter-spacing: 0;
    max-width: 500px;
    border-radius: 20px;
	}
	
	.message i {
		position: relative;
		top: 1px;
		margin-right: 7px;
		font-size: 16px;
	}
	
	.message.info { 
		background-color: #f3f3f3;
		color: #ffba00;
	}
	
	.message.success { 
		background-color: #e5e5e5;
		color: #009900;
	}
		
	.message.error { 
		background-color: #cc0000;
		color: #fff;
	}
	
	.message.warning {
		background-color: #a1a1a1;
		color: #fff;
	}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--clr_zelena_bkg);
  border-radius: 30px;
  padding: 0 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 112px;
  flex-wrap: wrap;
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Navigation Login
--------------------------------------------------------------*/
.nav-login {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-left: auto;
}

.header .btn-login,
.header .btn-login:focus {
  font-size: 12px;
  margin: 0 0 0 30px;
}

.header .btn-login:hover,
.header .btn-login:focus:hover {
  color: var(--contrast-color);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-login {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* custom header layout: logo left, stacked navs center, button right (desktop) */
@media (min-width: 1200px) {
  .header .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* no wrap so navs stay between logo and button */
  }

  .logo { order: 0; }
  .nav-wrap { order: 1; }
  .btn-login { order: 2; }

  /* wrapper: grid so nav-login stays right-aligned, navs stack left */
  .nav-wrap {
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto;
      flex: 1 1 auto;
      margin: 0 20px;
      align-items: center;
  }

  .nav-wrap #appmenu  { grid-column: 1; grid-row: 1; }
  .nav-wrap #navmenu  { grid-column: 1; grid-row: 2; }
  .nav-wrap > .nav-login { grid-column: 2; grid-row: 1 / 3; align-self: center; margin-left: 10px; }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.appmenu,
.navmenu {
  display: flex;
  flex: 1 1 100%;
}

/* Appmenu - Desktop */
@media (min-width: 1200px) {
  .appmenu {
    padding: 0;
  }

  .appmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .appmenu li {
    position: relative;
  }

  .appmenu a,
  .appmenu a:focus {
    color: var(--nav-color);
    padding: 3px 10px;
    font-size: 12px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .appmenu a i,
  .appmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .appmenu li:first-child a {
    padding-left: 0;
  }

  .appmenu li:last-child a {
    padding-right: 0;
  }

  .appmenu li:hover>a,
  .appmenu .active,
  .appmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .appmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .appmenu .dropdown ul li {
    min-width: 200px;
  }

  .appmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .appmenu .dropdown ul a i {
    font-size: 12px;
  }

  .appmenu .dropdown ul a:hover,
  .appmenu .dropdown ul .active:hover,
  .appmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .appmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .appmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .appmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Appmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .appmenu {
    padding: 0;
    z-index: 9997;
  }

  .appmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .appmenu a,
  .appmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .appmenu a i,
  .appmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .appmenu a i:hover,
  .appmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .appmenu a:hover,
  .appmenu .active,
  .appmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .appmenu .active i,
  .appmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .appmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .appmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .appmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  /* appmenu mobile overlay is handled by the unified nav-wrap block below */
  .mobile-nav-active .appmenu {
    position: static;
    overflow: visible;
    inset: unset;
    background: transparent;
    transition: none;
  }

  .mobile-nav-active .appmenu>ul {
    display: block;
  }
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:first-child a {
    padding-left: 0;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  /* navmenu mobile overlay is handled by the unified nav-wrap block below */
  .mobile-nav-active .navmenu {
    position: static;
    overflow: visible;
    inset: unset;
    background: transparent;
    transition: none;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
  .footer {
    color: #ffffff;
    background-color: var(--clr_modra_tmava);
    font-size: 12px;
    position: relative;
  }

  .footer .footer-top {
    padding-top: 50px;
  }

  .footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
  }

  .footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
  }

  .footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
  }

  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
  }

  .footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }

  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
  }

  .footer .footer-links {
    margin-bottom: 30px;
  }

  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
  }

  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }

  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }

  .footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
  }

  .footer .footer-links ul a:hover {
    color: var(--accent-color);
  }

  .footer .footer-contact p {
    margin-bottom: 5px;
  }

  .footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .footer .copyright p {
    margin-bottom: 0;
  }

  .footer .credits {
    margin-top: 8px;
    font-size: 13px;
  }

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
  }

  .scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
  }

  .scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
  }

  .scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
  }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
  .page-title {
    color: var(--default-color);
    padding: 0px 0 80px 0;
    text-align: center;
    position: relative;
  }

  .page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
  }

  .page-title .breadcrumbs ol li+li {
    padding-left: 10px;
  }

  .page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 10px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

section .container .row {
  background-color: var(--surface-color);
  border-radius: 20px;
}


/*--------------------------------------------------------------
# Index
--------------------------------------------------------------*/

.box-seminare {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
}

.box-aktuality {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
}


/*--------------------------------------------------------------
# Box 1
--------------------------------------------------------------*/
section#hero .container .row {
  padding: 20px 10px;
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .hero-buttons {
  text-align: right;
}

.hero .hero-buttons .reg {
    background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);

}

.hero .hero-buttons a i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 3px 0;
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .container .row {
 padding: 20px 10px;
}


.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: none;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  display: grid;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 .container .row {
  padding: 20px 10px;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Zivotopis Section
--------------------------------------------------------------*/
  .zivotopis-section .container .row {
    margin-bottom: 20px;
    padding: 10px;
  }
    .zivotopis-section .container .row .jazyk-rating {
      margin-top: 10px;
      padding: 10px;
      border-radius: 5px;
      background-color: var(--clr_antuka);
    }

    .zivotopis-section .container .row .zivot_item {
      margin-top: 10px;
      padding: 10px;
      border-radius: 5px;
      line-height: 1.4;
      background-color: var(--clr_seda);
  }
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/*.starter-section {
   Add your styles here 
}
*/
/*--------------------------------------------------------------
# Admin Sections
--------------------------------------------------------------*/
#section-akce-form label {
  margin-top: 15px;
}

/*--------------------------------------------------------------
# Akce Kat Section
--------------------------------------------------------------*/
/* #section-akce-kat {
  Add your styles here 
}*/

#section-akce-kat .akce-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

#section-akce-kat .akce-date-title {
  margin: 0 0 .6rem;
  color: #2f5671;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
}

#section-akce-kat .akce-date-group h2 {
  margin-bottom: .35rem;
  color: #043349;
}

#section-akce-kat .akce-card {
  background: #fff;
  border: 1px solid #d8e3ee;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

#section-akce-kat .akce-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

#section-akce-kat .akce-card-header { padding: 1rem; border-bottom: 1px solid #eef2f6; }
#section-akce-kat .akce-card-header h3 { font-size: 1.1rem; margin: 0 0 .35rem; }
#section-akce-kat .akce-card-header h3 a { color: #0f2e56; text-decoration: none; }
#section-akce-kat .akce-card-header h3 a:hover { color: #0761a1; }
#section-akce-kat .akce-meta { margin: 0; font-size: .9rem; color: #677a91; }

#section-akce-kat .akce-card-body { padding: 1rem; min-height: 120px; color: #334158; line-height: 1.4; }
#section-akce-kat .akce-card-body p { margin: 0; }

#section-akce-kat .akce-card-footer {
  padding: 1rem;
  border-top: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

#section-akce-kat .akce-btn {
  background: linear-gradient(135deg, #043349, #0968a8);
  color: #fff;
  padding: .45rem .8rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(4,51,73,.25);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
}
#section-akce-kat .akce-btn:hover { opacity: .93; }

#section-akce-kat .akce-status { font-weight: 600; font-size: .86rem; padding: .2rem .55rem; border-radius: 999px; }
#section-akce-kat .akce-status-on { background: #e4f6ec; color: #0f6d42; border: 1px solid #a6ddc0; }
#section-akce-kat .akce-status-off { background: #fff0f0; color: #9d2527; border: 1px solid #dfa8a8; }

#section-akce-kat .akce-empty { padding: .6rem 0; color: #44566f; }

/*--------------------------------------------------------------
# Akce Detail Section
--------------------------------------------------------------*/
#section-akce-detail .evt-single-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  border: 1px solid #d8e3ee;
  border-radius: 10px;
  padding: .65rem .85rem;
  background: #f9fbff;
  margin-bottom: 1.25rem;
}

#section-akce-detail .evt-single-date h6 {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  color: #1d3b5e;
}

#section-akce-detail .evt-single-date .evt-price {
  background: #e7f0ff;
  color: #094a87;
  border-radius: 6px;
  padding: .27rem .52rem;
  font-weight: 700;
  border: 1px solid #bdd1ed;
}

#section-akce-detail .evt-single-date .cont_prihlasen a {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .3rem .65rem;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid transparent;
}

#section-akce-detail .evt-single-date .cont_prihlasen a.prihlasen { background: #dff5e6; color: #1a6e2f; border-color: #b2e4ba; }
#section-akce-detail .evt-single-date .cont_prihlasen a.neprihlasen { background: #fff3e8; color: #a45018; border-color: #e7c4ac; }

#section-akce-detail .akce-kat .boxy { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.07); border: 1px solid #e5ecf5; border-radius: 11px; padding: 1rem; }
#section-akce-detail .akce-kat .boxy h5 { margin-top: 0; font-size: 1.05rem; color: #043349; }

#section-akce-detail .widget-event-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#section-akce-detail .widget-event-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .4rem;
  border-bottom: 1px solid #ebf2fa;
}

#section-akce-detail .widget-event-list li:last-child { border-bottom: 0; }

#section-akce-detail .widget-event-list li img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }

#section-akce-detail .widget-event-list .date { font-size: .82rem; color: #657b95; }

#section-akce-detail .widget-event-list .title { margin: 0; }

#section-akce-detail .widget-event-list .title a { font-size: .9rem; color: #1c3862; text-decoration: none; }

#section-akce-detail .widget-event-list .title a:hover { color: #0567a2; }

#section-akce-detail .ucastnici { display: flex; flex-wrap: wrap; gap: .3rem; margin: .4rem 0; padding: 0; list-style: none; }

#section-akce-detail .ucastnici li { border-radius: 50%; overflow: hidden; width: 50px; height: 50px; }

#section-akce-detail .ucastnici li img { width: 100%; height: 100%; object-fit: cover; }

/*--------------------------------------------------------------
# Clanky Section
--------------------------------------------------------------*/
#section-clanky {
  padding: 60px 0;
}

#section-clanky .card {
  position: relative;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

#section-clanky .stretched-link {
  z-index: 5;
}

#section-clanky .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#section-clanky .card-img-top {
  transition: transform 0.3s ease;
}

#section-clanky .card:hover .card-img-top {
  transform: scale(1.05);
}

#section-clanky .card-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

#section-clanky .card-title a:hover {
  color: var(--accent-color);
}

#section-clanky .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#section-clanky .btn-primary:hover {
  background-color: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
}

#section-clanky .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

#section-clanky .btn-outline-primary:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

#section-clanky .pagination {
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
}

#section-clanky .pagination .page-item {
  margin: 0 0.25rem;
}

#section-clanky .pagination .page-link {
  color: var(--heading-color);
  border: 1px solid var(--clr_seda);
  border-radius: 0.5rem;
  background-color: var(--surface-color);
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

#section-clanky .pagination .page-link:hover {
  background-color: var(--clr_modra_tmava);
  color: var(--contrast-color);
  border-color: var(--clr_modra_tmava);
}

#section-clanky .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem rgba(4, 51, 73, 0.15);
}

#section-clanky .pagination .page-item.disabled .page-link {
  color: #adb5bd;
  pointer-events: none;
  background-color: #f8f9fa;
  border-color: #dee2e6;
}


#section-clanky .card-body {
  padding: 1.5rem;
}

#section-clanky .card-text {
  color: var(--default-color);
}

#section-clanky .text-muted {
  color: #6c757d !important;
}

#section-clanky h2 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

#section-clanky h2 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

#section-clanky h2 a:hover {
  color: var(--accent-color);
}

#section-clanky .category-section {
  margin-bottom: 3rem;
}

#section-clanky .category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

#section-clanky .category-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

#section-clanky .category-title a:hover {
  color: var(--accent-color);
}

#section-clanky .featured-article {
  border-left: 4px solid var(--accent-color);
}

#section-clanky .article-card {
  position: relative;
}

#section-clanky .article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--clr_modra_tmava));
  opacity: 0;
  transition: opacity 0.3s ease;
}

#section-clanky .article-card:hover::before {
  opacity: 1;
}

#section-clanky .placeholder-img {
  border-radius: 10px 10px 0 0;
}

#section-clanky .alert {
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#section-clanky .alert-info {
  background-color: var(--clr_zelena_bkg);
  color: var(--default-color);
}

#section-clanky .alert-warning {
  background-color: #fff3cd;
  color: #856404;
}

/*--------------------------------------------------------------
# Login Section
--------------------------------------------------------------*/
#section-login .container .row {
  background-color: transparent;
}

#section-login .login-card {
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(13, 43, 62, 0.16);
  overflow: hidden;
}

#section-login .login-card .card-body {
  position: relative;
}

#section-login .login-card .card-body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--clr_modra_tmava));
}

#section-login .login-head {
  margin-top: 0.25rem;
}

#section-login .login-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-color);
  background: linear-gradient(180deg, #ffffff, #e9f3fa);
  border: 1px solid rgba(4, 51, 73, 0.1);
  box-shadow: 0 6px 14px rgba(4, 51, 73, 0.14);
}

#section-login .login-title {
  color: var(--heading-color);
  font-weight: 700;
  letter-spacing: -0.02em;
}

#section-login .login-subtitle {
  color: #5d6f80;
}

#section-login .form-label {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

#section-login .input-group-text {
  background: #f1f5f9;
  color: #5a6e80;
  border: 1px solid #d9e3ec;
  border-right: 0;
}

#section-login .form-control {
  border: 1px solid #d9e3ec;
  border-left: 0;
  padding: 0.72rem 0.85rem;
  box-shadow: none;
}

#section-login .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(4, 51, 73, 0.16);
}

#section-login .input-group:focus-within .input-group-text {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

#section-login .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  border-radius: 10px;
  font-weight: 600;
  padding: 0.75rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

#section-login .btn-primary:hover {
  background-color: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(4, 51, 73, 0.2);
}

#section-login .forgot-wrap {
  font-size: 0.95rem;
}

#section-login .forgot {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

#section-login .forgot:hover {
  color: var(--nav-hover-color);
  text-decoration: underline;
}

#section-login .lostpass-card {
  border-radius: 18px;
}

#section-login .lostpass-card .card-body::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(24, 137, 199, 0.12) 0%, rgba(24, 137, 199, 0) 68%);
  pointer-events: none;
}

#section-login .lostpass-head {
  position: relative;
  z-index: 1;
}

#section-login .lostpass-icon {
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}

#section-login .lostpass-title {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

#section-login .lostpass-subtitle {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

#section-login .lostpass-info {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 248, 252, 0.96) 100%);
  border: 1px solid rgba(4, 51, 73, 0.08);
}

#section-login .lostpass-info strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--heading-color);
}

#section-login .lostpass-info p {
  color: #5d6f80;
  font-size: 0.96rem;
  line-height: 1.5;
}

#section-login .lostpass-info-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background: rgba(24, 137, 199, 0.12);
  font-size: 1.05rem;
}

#section-login .lostpass-form {
  position: relative;
  z-index: 1;
}

#section-login .lostpass-input-group {
  box-shadow: 0 2px 8px rgba(4, 51, 73, 0.04);
}

#section-login .lostpass-submit {
  margin-top: 0.35rem;
}

#section-login .lostpass-links {
  position: relative;
  z-index: 1;
}

#section-login .lostpass-backlink {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
}

#section-login .lostpass-backlink:hover {
  color: var(--accent-color);
}

@media (max-width: 575.98px) {
  #section-login {
    padding: 48px 0;
  }

  #section-login .login-card {
    border-radius: 12px;
  }

  #section-login .login-title {
    font-size: 1.45rem;
  }

  #section-login .lostpass-info {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Thank You Section
--------------------------------------------------------------*/
#thank-you-section {
  padding: 74px 0;
}

#thank-you-section .container .row {
  background-color: transparent;
}

#thank-you-section .thank-card {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 34px rgba(13, 43, 62, 0.16);
}

#thank-you-section .thank-card .card-body {
  position: relative;
}

#thank-you-section .thank-card .card-body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--clr_modra_tmava));
}

#thank-you-section .thank-card .card-body::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(24, 137, 199, 0.15) 0%, rgba(24, 137, 199, 0) 68%);
  pointer-events: none;
}

#thank-you-section .thank-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.95rem;
  color: var(--accent-color);
  background: linear-gradient(180deg, #ffffff 0%, #eaf5fc 100%);
  border: 1px solid rgba(4, 51, 73, 0.12);
  box-shadow: 0 8px 18px rgba(4, 51, 73, 0.16);
  position: relative;
  z-index: 1;
}

#thank-you-section .thank-title {
  color: var(--heading-color);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

#thank-you-section .thank-message {
  max-width: 62ch;
  margin: 0 auto;
  color: #516476;
  font-size: 1.04rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

#thank-you-section .thank-actions {
  position: relative;
  z-index: 1;
}

#thank-you-section .thank-btn {
  border-radius: 11px;
  font-weight: 600;
  padding: 0.72rem 1.15rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 8px 16px rgba(4, 51, 73, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

#thank-you-section .thank-btn:hover {
  background-color: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(4, 51, 73, 0.2);
}

@media (max-width: 767.98px) {
  #thank-you-section {
    padding: 54px 0;
  }

  #thank-you-section .thank-title {
    font-size: 1.55rem;
  }

  #thank-you-section .thank-message {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}

  /*--------------------------------------------------------------
  # Treneri Section
  --------------------------------------------------------------*/
  #section-treneri {
    padding: 10px 0;
  }
  #section-treneri .trainer-card {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  #section-treneri .trainer-card .card-body {
    position: relative;
  }

  #section-treneri .trainer-meta {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #5f7488;
    margin-bottom: 0.35rem;
  }

  #section-treneri .trainer-title {
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  #section-treneri .trainer-filter form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-end;
    align-items: center;
  }

  #section-treneri .trainer-filter strong {
    color: var(--heading-color);
    font-size: 0.9rem;
    margin-right: 0.25rem;
  }

  #section-treneri .trainer-filter select {
    min-width: 180px;
    border: 1px solid #d8e3ec;
    border-radius: 9px;
    background: #fff;
    color: #354b60;
    padding: 0.48rem 0.7rem;
  }

  #section-treneri .trainer-filter select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(4, 51, 73, 0.14);
    outline: 0;
  }

  #section-treneri .trainer-table-wrap {
    border-radius: 12px;
    border: 1px solid #e3ebf2;
    background: #fff;
  }

  #section-treneri .treneri-seznam {
    margin: 0;
  }

  #section-treneri .treneri-seznam thead th {
    background: #f2f7fb;
    color: var(--heading-color);
    font-weight: 700;
    border-bottom: 1px solid #dfe8f1;
    white-space: nowrap;
  }

  #section-treneri .treneri-seznam tbody td {
    border-color: #ecf1f6;
    color: #42596f;
  }

  #section-treneri .treneri-seznam tbody tr:hover {
    background: #f8fbfe;
  }

  #section-treneri .licence-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.24rem 0.62rem;
    font-size: 0.84rem;
    background: rgba(4, 51, 73, 0.09);
    color: #214865;
    font-weight: 600;
  }

  #section-treneri .trainer-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 600;
  }

  #section-treneri .trainer-link:hover {
    color: var(--accent-color);
  }

  @media (max-width: 991.98px) {
    #section-treneri .trainer-head {
      flex-direction: column;
      align-items: flex-start !important;
    }

    #section-treneri .trainer-filter,
    #section-treneri .trainer-filter form {
      width: 100%;
      justify-content: flex-start;
    }
  }

  @media (max-width: 575.98px) {
    #section-treneri {
      padding: 52px 0;
    }

    #section-treneri .trainer-title {
      font-size: 1.45rem;
    }

    #section-treneri .trainer-filter select {
      width: 100%;
      min-width: 0;
    }
  }

/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/
#section-video {
  padding: 60px 0;
}

#section-video .stretched-link {
  z-index: 5;
}

#section-video .video-content {
  margin-bottom: 2rem;
}

#section-video .video-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.35rem;
  line-height: 1.2;
}

#section-video .video-meta {
  font-size: 0.92rem;
}

#section-video .host-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: var(--clr_zelena_bkg);
  color: var(--heading-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#section-video .video-player-card,
#section-video .video-description,
#section-video .nav-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#section-video .video-player-wrap {
  background: #111;
}

#section-video .video-player-wrap iframe {
  width: 100%;
  height: 100%;
}

#section-video .video-unavailable {
  min-height: 260px;
  background: linear-gradient(180deg, #fcfdfe 0%, #edf3f8 100%);
}

#section-video .section-title {
  color: var(--heading-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

#section-video .video-description .lead {
  font-size: 1.15rem;
  color: var(--default-color);
}

#section-video .video-body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--default-color);
}

#section-video .navigation-cards {
  margin-top: 0.25rem;
}

#section-video .nav-card {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#section-video .nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

#section-video .nav-prev {
  border-left: 4px solid var(--accent-color);
}

#section-video .nav-next {
  border-right: 4px solid var(--accent-color);
}

#section-video .nav-disabled {
  box-shadow: none;
  border: 1px dashed #d7dee6;
  background: #fafcfe;
}

#section-video .nav-disabled:hover {
  transform: none;
  box-shadow: none;
}

#section-video .nav-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6c7b8a;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

#section-video .nav-title {
  font-size: 1.05rem;
  line-height: 1.35;
}

#section-video .nav-title a {
  color: var(--heading-color);
  text-decoration: none;
}

#section-video .nav-title a:hover {
  color: var(--accent-color);
}

@media (max-width: 991.98px) {
  #section-video .video-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 767.98px) {
  #section-video .video-title {
    font-size: 1.55rem;
  }

  #section-video .video-meta span {
    display: inline-block;
    margin-bottom: 0.35rem;
  }
}

/*--------------------------------------------------------------
# Videa Section
--------------------------------------------------------------*/
#section-videa {
  padding: 60px 0;
}

#section-videa .card {
  position: relative;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

#section-videa .stretched-link {
  z-index: 5;
}

#section-videa .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#section-videa .video-thumb-wrap {
  position: relative;
  overflow: hidden;
}

#section-videa .video-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#section-videa .featured-video .video-thumb {
  height: 100%;
  min-height: 220px;
}

#section-videa .card:hover .video-thumb {
  transform: scale(1.05);
}

#section-videa .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  pointer-events: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

#section-videa .card:hover .video-play {
  background: rgba(0, 0, 0, 0.72);
  transform: translate(-50%, -50%) scale(1.08);
}

#section-videa .card-body {
  padding: 1.25rem;
}

#section-videa .card-title,
#section-videa .category-title {
  color: var(--heading-color);
}

#section-videa .category-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#section-videa .category-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

#section-videa .category-title a:hover {
  color: var(--accent-color);
}

#section-videa .card-text {
  color: var(--default-color);
}

#section-videa .text-muted {
  color: #6c757d !important;
}

#section-videa .featured-video {
  border-left: 4px solid var(--accent-color);
}

#section-videa .video-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--clr_modra_tmava));
  opacity: 0;
  transition: opacity 0.3s ease;
}

#section-videa .video-card:hover::before {
  opacity: 1;
}

#section-videa .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#section-videa .btn-primary:hover {
  background-color: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
}

#section-videa .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

#section-videa .btn-outline-primary:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

#section-videa .pagination {
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
}

#section-videa .pagination .page-item {
  margin: 0 0.25rem;
}

#section-videa .pagination .page-link {
  color: var(--heading-color);
  border: 1px solid var(--clr_seda);
  border-radius: 0.5rem;
  background-color: var(--surface-color);
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

#section-videa .pagination .page-link:hover {
  background-color: var(--clr_modra_tmava);
  color: var(--contrast-color);
  border-color: var(--clr_modra_tmava);
}

#section-videa .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem rgba(4, 51, 73, 0.15);
}

#section-videa .pagination .page-item.disabled .page-link {
  color: #adb5bd;
  pointer-events: none;
  background-color: #f8f9fa;
  border-color: #dee2e6;
}

#section-videa .alert {
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#section-videa .alert-info {
  background-color: var(--clr_zelena_bkg);
  color: var(--default-color);
}

#section-videa .alert-warning {
  background-color: #fff3cd;
  color: #856404;
}

@media (max-width: 767.98px) {
  #section-videa .featured-video .video-thumb {
    min-height: 200px;
  }

  #section-videa .pagination .page-link {
    min-width: 38px;
    height: 38px;
    padding: 0 0.6rem;
    font-size: 0.92rem;
  }
}

/*--------------------------------------------------------------
# Sidebar Section
--------------------------------------------------------------*/
.sidebar .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.sidebar .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.sidebar .card-img-top {
  transition: transform 0.3s ease;
}

.sidebar .card:hover .card-img-top {
  transform: scale(1.05);
}

.sidebar .card-title {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0;
}

.sidebar .card-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
  text-decoration: none;
}

.sidebar .card-title a:hover {
  color: var(--accent-color);
}

.sidebar .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.sidebar .btn-primary:hover {
  background-color: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
}

.sidebar .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.sidebar .btn-outline-primary:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.sidebar .card-body {
  padding: 1rem;
}

.sidebar .card-text {
  color: var(--default-color);
}

.sidebar .text-muted {
  color: #6c757d !important;
}

.sidebar h2 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.sidebar h2 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar h2 a:hover {
  color: var(--accent-color);
}

.sidebar .oddelovac {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-color), transparent);
  margin: 2rem 0;
}

.sidebar .card-header {
  background-color: var(--surface-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.75rem 1rem;
}

.sidebar .list-group-item {
  border: none;
  padding: 0.75rem 1rem;
  transition: background-color 0.3s ease;
}

.sidebar .list-group-item:hover {
  background-color: var(--clr_zelena_bkg);
}

.sidebar .list-group-item a {
  color: var(--default-color);
  transition: color 0.3s ease;
  text-decoration: none;
}

.sidebar .list-group-item a:hover {
  color: var(--accent-color);
}

.sidebar .list-group-item img {
  transition: transform 0.3s ease;
}

.sidebar .list-group-item:hover img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Clanek Section
--------------------------------------------------------------*/
#section-clanek .stretched-link {
  z-index: 5;
}

#section-clanek .article-content {
  margin-bottom: 2rem;
}

#section-clanek .article-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

#section-clanek .article-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}

#section-clanek .article-meta {
  font-size: 0.9rem;
}

#section-clanek .article-lead {
  font-size: 1.25rem;
  color: var(--default-color);
}

#section-clanek .article-body {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--default-color);
}

#section-clanek .gallery-section .gallery-thumb {
  transition: transform 0.3s ease;
  cursor: pointer;
}

#section-clanek .gallery-section .gallery-thumb:hover {
  transform: scale(1.05);
}

#section-clanek .section-title {
  color: var(--heading-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

#section-clanek .author-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#section-clanek .author-avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

#section-clanek .social-links .btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#section-clanek .social-links .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#section-clanek .comments-section {
  margin-top: 3rem;
}

#section-clanek .comments-list {
  margin-bottom: 2rem;
}

#section-clanek .comment-card {
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

#section-clanek .comment-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#section-clanek .comment-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

#section-clanek .comment-author {
  color: var(--heading-color);
  font-weight: 600;
}

#section-clanek .comment-content {
  line-height: 1.5;
}

#section-clanek .delete-btn {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

#section-clanek .delete-btn:hover {
  opacity: 1;
}

#section-clanek .comment-form .form-control {
  border-radius: 0.5rem;
  border: 1px solid #dee2e6;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#section-clanek .comment-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(4, 51, 73, 0.25);
}

#section-clanek .comment-form .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

#section-clanek .comment-form .btn-primary:hover {
  background-color: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
  transform: translateY(-1px);
}

/*--------------------------------------------------------------
# Admin Akce Kategorie Section
--------------------------------------------------------------*/
#section-akce-admin-kat {
  padding: 10px 0;
}

#section-akce-admin-kat .container .row {
  background-color: transparent;
}

#section-akce-admin-kat .admin-kat-card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

#section-akce-admin-kat .admin-kat-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

#section-akce-admin-kat .card-body {
  padding: 2rem;
}

#section-akce-admin-kat .card-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#section-akce-admin-kat .card-title i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

/* Form Styling */
#section-akce-admin-kat .admin-kat-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#section-akce-admin-kat .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section-akce-admin-kat .form-group label {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.95rem;
}

#section-akce-admin-kat .form-control {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

#section-akce-admin-kat .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(4, 51, 73, 0.1);
  background-color: #ffffff;
}

#section-akce-admin-kat .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #032640 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

#section-akce-admin-kat .btn-primary:hover {
  background: linear-gradient(135deg, #032640 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(4, 51, 73, 0.3);
}

/* Table Styling */
#section-akce-admin-kat .admin-kat-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  background: #ffffff;
}

#section-akce-admin-kat .admin-kat-table {
  margin-bottom: 0;
  font-size: 0.95rem;
}

#section-akce-admin-kat .admin-kat-table thead th {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f6 100%);
  color: var(--heading-color);
  font-weight: 700;
  border-bottom: 2px solid #dee2e6;
  padding: 1rem;
  vertical-align: middle;
  white-space: nowrap;
}

#section-akce-admin-kat .admin-kat-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

#section-akce-admin-kat .admin-kat-table tbody tr:hover {
  background-color: #f8fbfd;
}

#section-akce-admin-kat .admin-kat-table tbody td {
  padding: 0.9rem 1rem;
  vertical-align: middle;
}

#section-akce-admin-kat .admin-kat-order {
  text-align: center;
  font-weight: 600;
}

/* Hierarchical Row Styling */
#section-akce-admin-kat .admin-kat-row-main {
  border-left: 4px solid var(--accent-color);
  background: linear-gradient(90deg, rgba(4, 51, 73, 0.02) 0%, transparent 50px);
}

#section-akce-admin-kat .admin-kat-row-main:hover {
  background: linear-gradient(90deg, rgba(4, 51, 73, 0.05) 0%, transparent 50px);
}

#section-akce-admin-kat .admin-kat-row-sub {
  border-left: 3px solid #1899d0;
  background: linear-gradient(90deg, rgba(24, 153, 208, 0.015) 0%, transparent 50px);
}

#section-akce-admin-kat .admin-kat-row-sub:hover {
  background: linear-gradient(90deg, rgba(24, 153, 208, 0.04) 0%, transparent 50px);
}

#section-akce-admin-kat .admin-kat-row-subsub {
  border-left: 3px solid #5dade2;
  background: linear-gradient(90deg, rgba(93, 173, 226, 0.01) 0%, transparent 50px);
}

#section-akce-admin-kat .admin-kat-row-subsub:hover {
  background: linear-gradient(90deg, rgba(93, 173, 226, 0.03) 0%, transparent 50px);
}

#section-akce-admin-kat .admin-kat-name {
  color: var(--heading-color);
  font-weight: 600;
  position: relative;
}

#section-akce-admin-kat .admin-kat-row-main .admin-kat-name::before {
  content: "◆";
  color: var(--accent-color);
  margin-right: 0.5rem;
  font-size: 0.7rem;
}

#section-akce-admin-kat .admin-kat-row-sub .admin-kat-name {
  padding-left: 2rem;
  font-weight: 500;
  color: #333;
}

#section-akce-admin-kat .admin-kat-row-sub .admin-kat-name::before {
  content: "▸";
  color: #1899d0;
  margin-right: 0.5rem;
  font-size: 0.65rem;
}

#section-akce-admin-kat .admin-kat-row-subsub .admin-kat-name {
  padding-left: 4rem;
  font-weight: 500;
  color: #555;
}

#section-akce-admin-kat .admin-kat-row-subsub .admin-kat-name::before {
  content: "◦";
  color: #5dade2;
  margin-right: 0.5rem;
  font-size: 0.65rem;
}

#section-akce-admin-kat .admin-kat-parent {
  color: #677a91;
  font-size: 0.9rem;
}

#section-akce-admin-kat .admin-kat-action {
  text-align: center;
}

/* Badge Styling */
#section-akce-admin-kat .badge-order {
  background: linear-gradient(135deg, var(--accent-color) 0%, #032640 100%);
  color: white;
  border-radius: 8px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  min-width: 32px;
  text-align: center;
}

#section-akce-admin-kat .badge-order-sub {
  background: linear-gradient(135deg, #1899d0 0%, #0b6fa1 100%);
  color: white;
  border-radius: 8px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  min-width: 32px;
  text-align: center;
}

#section-akce-admin-kat .badge-order-subsub {
  background: linear-gradient(135deg, #5dade2 0%, #2e7dad 100%);
  color: white;
  border-radius: 8px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  min-width: 32px;
  text-align: center;
}

/* Button Styling */
#section-akce-admin-kat .btn-outline-primary {
  color: var(--accent-color);
  border: 1.5px solid var(--accent-color);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

#section-akce-admin-kat .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  #section-akce-admin-kat .row gy-4 {
    flex-direction: column;
  }
  
  #section-akce-admin-kat .col-xl-5,
  #section-akce-admin-kat .col-xl-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  #section-akce-admin-kat .card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  #section-akce-admin-kat {
    padding: 40px 0;
  }
  
  #section-akce-admin-kat .card-title {
    font-size: 1.1rem;
  }
  
  #section-akce-admin-kat .card-body {
    padding: 1.25rem;
  }
  
  #section-akce-admin-kat .admin-kat-table {
    font-size: 0.85rem;
  }
  
  #section-akce-admin-kat .admin-kat-table-wrap {
    max-height: 400px;
    overflow-y: auto;
  }
  
  #section-akce-admin-kat .admin-kat-row-sub .admin-kat-name {
    padding-left: 1rem;
  }
  
  #section-akce-admin-kat .admin-kat-row-subsub .admin-kat-name {
    padding-left: 2rem;
  }
}

/*--------------------------------------------------------------
# Admin Nový Článek Section
--------------------------------------------------------------*/
#section-clanky-new {
  padding: 10px 0;
}

#section-clanky-new .clanky-new-card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

#section-clanky-new .card-body {
  padding: 2rem;
}

#section-clanky-new .card-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 2px solid #eef2f6;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem !important;
}

#section-clanky-new .card-title i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

/* Form controls */
#section-clanky-new .form-label {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  display: block;
}

#section-clanky-new .form-control {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

#section-clanky-new .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(4, 51, 73, 0.1);
  outline: none;
}

#section-clanky-new textarea.form-control {
  resize: vertical;
}

/* Category checkbox list */
#section-clanky-new .kat-check-list {
  border: 1px solid #e4eaf0;
  border-radius: 8px;
  padding: 0.75rem;
  max-height: 320px;
  overflow-y: auto;
  background: #fafcfe;
}

#section-clanky-new .kat-check-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 0.25rem;
  border-radius: 5px;
  transition: background 0.15s ease;
}

#section-clanky-new .kat-check-item:hover {
  background: #eef4f8;
}

#section-clanky-new .kat-level-1 {
  border-left: 3px solid var(--accent-color);
  padding-left: 0.5rem;
  margin-bottom: 0.1rem;
}

#section-clanky-new .kat-level-1 .form-check-label {
  font-weight: 600;
  color: var(--heading-color);
}

#section-clanky-new .kat-level-2 {
  border-left: 3px solid #1899d0;
  padding-left: 1.5rem;
}

#section-clanky-new .kat-level-2 .form-check-label {
  color: #1a4a6e;
}

#section-clanky-new .kat-level-3 {
  border-left: 3px solid #5dade2;
  padding-left: 3rem;
}

#section-clanky-new .kat-level-3 .form-check-label {
  color: #3a6e8a;
  font-size: 0.9rem;
}

#section-clanky-new .form-check-input {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent-color);
  cursor: pointer;
}

#section-clanky-new .form-check-label {
  font-size: 0.92rem;
  cursor: pointer;
  line-height: 1.3;
}

/* Submit button */
#section-clanky-new .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #032640 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#section-clanky-new .btn-primary:hover {
  background: linear-gradient(135deg, #032640 0%, var(--accent-color) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(4, 51, 73, 0.28);
}

/* Responsive */
@media (max-width: 1199.98px) {
  #section-clanky-new .col-xl-3,
  #section-clanky-new .col-xl-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  #section-clanky-new {
    padding: 24px 0;
  }

  #section-clanky-new .card-body {
    padding: 1.25rem;
  }

  #section-clanky-new .kat-check-list {
    max-height: 220px;
  }
}

/*--------------------------------------------------------------
# Admin Seznam Článků Section
--------------------------------------------------------------*/
#section-admin-clanky {
  padding: 8px 0;
}

/* Page header */
#section-admin-clanky .clanky-page-header {
  flex-wrap: wrap;
  gap: 0.5rem;
}

#section-admin-clanky .clanky-page-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
}

#section-admin-clanky .clanky-page-title i {
  color: var(--accent-color);
}

#section-admin-clanky .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #032640 100%);
  border: none;
  border-radius: 7px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

#section-admin-clanky .btn-primary:hover {
  background: linear-gradient(135deg, #032640 0%, var(--accent-color) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(4, 51, 73, 0.28);
}

/* Breadcrumb */
#section-admin-clanky .clanky-breadcrumb {
  font-size: 0.95rem;
  color: #677a91;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#section-admin-clanky .clanky-breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

#section-admin-clanky .clanky-breadcrumb a:hover {
  text-decoration: underline;
}

#section-admin-clanky .clanky-sep {
  color: #adb8c4;
  font-size: 1.1rem;
}

/* Compact category tree */
#section-admin-clanky .clanky-tree-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

#section-admin-clanky .clanky-node {
  border: 1px solid #e7edf3;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

#section-admin-clanky .clanky-node-lvl-1 {
  border-left: 4px solid var(--accent-color);
}

#section-admin-clanky .clanky-node-lvl-2 {
  border-left: 3px solid #1899d0;
  margin-top: 0.4rem;
}

#section-admin-clanky .clanky-node-lvl-3 {
  border-left: 3px solid #5dade2;
  margin-top: 0.35rem;
}

#section-admin-clanky .clanky-node-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(4, 51, 73, 0.04), transparent 58%);
}

#section-admin-clanky .clanky-node-summary::-webkit-details-marker {
  display: none;
}

#section-admin-clanky .clanky-node-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

#section-admin-clanky .clanky-node-title-wrap i {
  color: var(--accent-color);
}

#section-admin-clanky .clanky-node-lvl-2 .clanky-node-title-wrap i {
  color: #1899d0;
}

#section-admin-clanky .clanky-node-lvl-3 .clanky-node-title-wrap i {
  color: #5dade2;
}

#section-admin-clanky .clanky-node-title {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#section-admin-clanky .clanky-node-title:hover {
  color: var(--accent-color);
}

#section-admin-clanky .clanky-node-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

#section-admin-clanky .clanky-node-badge {
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  background: #eaf3fa;
  color: #285173;
  border: 1px solid #d2e5f3;
  border-radius: 999px;
  padding: 0.28rem 0.48rem;
  white-space: nowrap;
}

#section-admin-clanky .clanky-node-badge-soft {
  background: #f4f8fb;
  color: #5c7289;
  border-color: #e3ebf2;
}

#section-admin-clanky .clanky-node-body {
  padding: 0.25rem 0.6rem 0.6rem;
}

#section-admin-clanky .clanky-node-children {
  margin-top: 0.45rem;
  padding-left: 0.65rem;
  border-left: 1px dashed #dde8f1;
}

/* Tables */
#section-admin-clanky .clanky-table-wrap {
  overflow-x: auto;
}

#section-admin-clanky .clanky-table {
  margin-bottom: 0;
  font-size: 0.86rem;
}

#section-admin-clanky .clanky-table thead th {
  background: #f8fafc;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #e4eaf0;
  padding: 0.5rem 0.65rem;
  white-space: nowrap;
}

#section-admin-clanky .clanky-table tbody tr {
  border-bottom: 1px solid #f4f6f9;
  transition: background 0.15s ease;
}

#section-admin-clanky .clanky-table tbody tr:hover {
  background: #f0f6fb;
}

#section-admin-clanky .clanky-table tbody td {
  padding: 0.45rem 0.65rem;
  vertical-align: middle;
  color: #334158;
}

#section-admin-clanky .clanky-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

#section-admin-clanky .clanky-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Empty state */
#section-admin-clanky .clanky-empty {
  padding: 0.5rem 0.65rem;
  color: #8a9bb0;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-style: italic;
}

/* Responsive */
@media (max-width: 767.98px) {
  #section-admin-clanky {
    padding: 24px 0;
  }

  #section-admin-clanky .clanky-page-title {
    font-size: 1.2rem;
  }

  #section-admin-clanky .clanky-node-summary {
    padding: 0.5rem 0.6rem;
  }

  #section-admin-clanky .clanky-node-meta {
    display: none;
  }

  #section-admin-clanky .clanky-table {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Admin Články Obrázky Section
--------------------------------------------------------------*/
#section-admin-clanky-obrazky {
  padding: 10px 0;
}

#section-admin-clanky-obrazky .admin-obr-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background: #fff;
}

#section-admin-clanky-obrazky .card-body {
  padding: 1.2rem;
}

#section-admin-clanky-obrazky .admin-obr-title {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

#section-admin-clanky-obrazky .admin-obr-title i {
  color: var(--accent-color);
}

#section-admin-clanky-obrazky .admin-obr-subtitle {
  margin-bottom: 0.9rem;
  color: #44556b;
  font-size: 0.93rem;
}

#section-admin-clanky-obrazky .btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

#section-admin-clanky-obrazky .btn-outline-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

#section-admin-clanky-obrazky .admin-obr-notes {
  background: #f8fbfe;
  border: 1px solid #e4ebf3;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font-size: 0.88rem;
  color: #4a5a70;
}

#section-admin-clanky-obrazky .admin-obr-notes ul {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
}

#section-admin-clanky-obrazky .admin-obr-notes li {
  margin-bottom: 0.2rem;
}

#section-admin-clanky-obrazky .upload-panel .button_upload {
  border-radius: 8px;
  font-weight: 600;
}

#section-admin-clanky-obrazky #progress.progress {
  height: 14px;
  background: #ecf2f7;
  border-radius: 999px;
  overflow: hidden;
}

#section-admin-clanky-obrazky #progress .progress-bar {
  background: linear-gradient(90deg, #1aa154 0%, #5dc783 100%);
}

#section-admin-clanky-obrazky .files-box {
  border: 1px dashed #d7e2ee;
  border-radius: 8px;
  background: #fafcfe;
  padding: 0.65rem;
}

#section-admin-clanky-obrazky .files-label {
  font-size: 0.83rem;
  color: #5f738a;
  margin-bottom: 0.35rem;
}

#section-admin-clanky-obrazky .files p {
  margin: 0;
  font-size: 0.82rem;
  color: #3f536c;
}

#section-admin-clanky-obrazky .admin-obr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.75rem;
}

#section-admin-clanky-obrazky .obrazek-card {
  border: 1px solid #e3ebf3;
  border-radius: 10px;
  background: #fff;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

#section-admin-clanky-obrazky .obrazek-card.is-main {
  border-color: #f0cf52;
  box-shadow: 0 0 0 2px rgba(240, 207, 82, 0.25);
  background: #fffdf4;
}

#section-admin-clanky-obrazky .obrazek-preview-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f7fb;
}

#section-admin-clanky-obrazky .obrazek-preview-link img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

#section-admin-clanky-obrazky .obrazek-preview-link:hover img {
  transform: scale(1.03);
}

#section-admin-clanky-obrazky .obrazek-info {
  min-height: 44px;
}

#section-admin-clanky-obrazky .obrazek-name {
  font-size: 0.8rem;
  color: #4b5d74;
  line-height: 1.2;
  word-break: break-word;
}

#section-admin-clanky-obrazky .obrazek-main-badge {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #7b5e00;
  background: #ffefad;
  border: 1px solid #f0cf52;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}

#section-admin-clanky-obrazky .obrazek-card .btn-outline-danger {
  font-size: 0.78rem;
  border-radius: 7px;
  width: 100%;
}

#section-admin-clanky-obrazky .obrazek-empty {
  grid-column: 1 / -1;
  border: 1px dashed #dce5ef;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  color: #7890a9;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  #section-admin-clanky-obrazky .card-body {
    padding: 0.9rem;
  }

  #section-admin-clanky-obrazky .admin-obr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  #section-admin-clanky-obrazky .obrazek-preview-link img {
    height: 110px;
  }
}

/*--------------------------------------------------------------
# Admin Nové Video Section
--------------------------------------------------------------*/
#section-admin-video-new {
  padding: 10px 0;
  min-height: calc(100vh - 220px);
}

#section-admin-video-new .video-new-page-title {
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

#section-admin-video-new .video-new-page-title i {
  color: var(--accent-color);
}

#section-admin-video-new .video-new-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background: #fff;
}

#section-admin-video-new .card-body {
  padding: 1.2rem;
}

#section-admin-video-new .card-title {
  margin: 0 0 0.85rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

#section-admin-video-new .card-title i {
  color: var(--accent-color);
}

#section-admin-video-new .form-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.9rem;
}

#section-admin-video-new .form-control {
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  padding: 0.62rem 0.78rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#section-admin-video-new .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(4, 51, 73, 0.12);
}

#section-admin-video-new .video-new-help {
  font-size: 0.83rem;
  line-height: 1.4;
  color: #5a6d84;
  background: #f8fbfe;
  border: 1px solid #e1ebf5;
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
}

#section-admin-video-new .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #032640 100%);
  border: none;
  border-radius: 8px;
  padding: 0.68rem 1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#section-admin-video-new .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(4, 51, 73, 0.24);
}

#section-admin-video-new textarea.form-control {
  min-height: 360px;
}

@media (max-width: 991.98px) {
  #section-admin-video-new .video-new-page-title {
    font-size: 1.22rem;
  }

  #section-admin-video-new textarea.form-control {
    min-height: 260px;
  }
}

@media (max-width: 767.98px) {
  #section-admin-video-new {
    padding: 18px 0;
  }

  #section-admin-video-new .card-body {
    padding: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Admin Nove Prohlaseni Section
--------------------------------------------------------------*/

#section-admin-prohlaseni-new {
  padding: 10px 0;
  min-height: calc(100vh - 220px);
}

#section-admin-prohlaseni-new .prohlaseni-new-page-title {
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

#section-admin-prohlaseni-new .prohlaseni-new-page-title i {
  color: var(--accent-color);
}

#section-admin-prohlaseni-new .prohlaseni-new-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background: #fff;
}

#section-admin-prohlaseni-new .card-body {
  padding: 1.2rem;
}

#section-admin-prohlaseni-new .card-title {
  margin: 0 0 0.85rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

#section-admin-prohlaseni-new .card-title i {
  color: var(--accent-color);
}

#section-admin-prohlaseni-new .form-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.9rem;
}

#section-admin-prohlaseni-new .form-control {
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  padding: 0.62rem 0.78rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#section-admin-prohlaseni-new .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(4, 51, 73, 0.12);
}

#section-admin-prohlaseni-new .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #032640 100%);
  border: none;
  border-radius: 8px;
  padding: 0.68rem 1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#section-admin-prohlaseni-new .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(4, 51, 73, 0.24);
}

#section-admin-prohlaseni-new textarea.form-control {
  min-height: 360px;
}

@media (max-width: 991.98px) {
  #section-admin-prohlaseni-new .prohlaseni-new-page-title {
    font-size: 1.22rem;
  }

  #section-admin-prohlaseni-new textarea.form-control {
    min-height: 260px;
  }
}

@media (max-width: 767.98px) {
  #section-admin-prohlaseni-new {
    padding: 18px 0;
  }

  #section-admin-prohlaseni-new .card-body {
    padding: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Admin Zpravy New Section
--------------------------------------------------------------*/

#section-admin-zpravy-new {
  padding: 10px 0;
  min-height: calc(100vh - 220px);
}

#section-admin-zpravy-new .zprava-new-page-title {
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

#section-admin-zpravy-new .zprava-new-page-title i {
  color: var(--accent-color);
}

#section-admin-zpravy-new .zprava-new-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background: #fff;
}

#section-admin-zpravy-new .card-body {
  padding: 1.2rem;
}

#section-admin-zpravy-new .card-title {
  margin: 0 0 0.85rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

#section-admin-zpravy-new .card-title i {
  color: var(--accent-color);
}

#section-admin-zpravy-new .form-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.9rem;
}

#section-admin-zpravy-new .form-control {
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  padding: 0.62rem 0.78rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#section-admin-zpravy-new .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(4, 51, 73, 0.12);
}

#section-admin-zpravy-new .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #032640 100%);
  border: none;
  border-radius: 8px;
  padding: 0.68rem 1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#section-admin-zpravy-new .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(4, 51, 73, 0.24);
}

#section-admin-zpravy-new textarea.form-control {
  min-height: 280px;
}

@media (max-width: 991.98px) {
  #section-admin-zpravy-new .zprava-new-page-title {
    font-size: 1.22rem;
  }

  #section-admin-zpravy-new textarea.form-control {
    min-height: 220px;
  }
}

@media (max-width: 767.98px) {
  #section-admin-zpravy-new {
    padding: 18px 0;
  }

  #section-admin-zpravy-new .card-body {
    padding: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Admin Zpravy Section
--------------------------------------------------------------*/


#section-admin-zpravy {
  padding: 10px 0;
  min-height: calc(100vh - 220px);
}

#section-admin-zpravy .zpravy-page-title {
  margin: 0 0 0.25rem;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

#section-admin-zpravy .zpravy-page-title i {
  color: var(--accent-color);
}

#section-admin-zpravy .accordion-item.zpravy-item {
  border: none;
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-bottom: 0.55rem;
}

#section-admin-zpravy .accordion-item.zpravy-item .accordion-button {
  background: #fff;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.95rem;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
}

#section-admin-zpravy .accordion-item.zpravy-item .accordion-button:not(.collapsed) {
  background: #f0f5fa;
  color: var(--heading-color);
  box-shadow: none;
}

#section-admin-zpravy .accordion-item.zpravy-item .accordion-button::after {
  margin-left: auto;
  flex-shrink: 0;
}

#section-admin-zpravy .zpravy-date {
  font-size: 0.82rem;
  color: #5a6d84;
  font-weight: 500;
  white-space: nowrap;
  background: #edf2f7;
  border-radius: 5px;
  padding: 0.15rem 0.5rem;
  flex-shrink: 0;
}

#section-admin-zpravy .zpravy-nazev {
  flex: 1;
}

#section-admin-zpravy .accordion-body {
  background: #fff;
  padding: 1rem 1.1rem;
}

#section-admin-zpravy .zpravy-obsah {
  font-family: inherit;
  font-size: 0.92rem;
  background: #f8fbfe;
  border: 1px solid #e1ebf5;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

#section-admin-zpravy .user_list {
  margin: 0;
}

@media (max-width: 767.98px) {
  #section-admin-zpravy {
    padding: 18px 0;
  }

  #section-admin-zpravy .accordion-item.zpravy-item .accordion-button {
    font-size: 0.88rem;
    padding: 0.7rem 0.85rem;
  }
}

/*--------------------------------------------------------------
# Zpravy Section
--------------------------------------------------------------*/
#zpravy-section {
  padding: 10px 0;
  min-height: calc(100vh - 220px);
}

#zpravy-section .zpravy-page-title {
  margin: 0 0 0.25rem;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

#zpravy-section .zpravy-page-title i {
  color: var(--accent-color);
}

#zpravy-section .accordion-item.zpravy-item {
  border: none;
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-bottom: 0.55rem;
}

#zpravy-section .accordion-item.zpravy-item.unread {
  box-shadow: 0 2px 10px rgba(4, 51, 73, 0.18);
  border-left: 3px solid var(--accent-color) !important;
}

#zpravy-section .accordion-item.zpravy-item .accordion-button {
  background: #fff;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.95rem;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
}

#zpravy-section .accordion-item.zpravy-item.unread .accordion-button {
  background: #f0f7ff;
}

#zpravy-section .accordion-item.zpravy-item .accordion-button:not(.collapsed) {
  background: #f0f5fa;
  color: var(--heading-color);
  box-shadow: none;
}

#zpravy-section .accordion-item.zpravy-item .accordion-button::after {
  margin-left: auto;
  flex-shrink: 0;
}

#zpravy-section .zpravy-unread-dot {
  width: 9px;
  height: 9px;
  background: var(--accent-color);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

#zpravy-section .zpravy-date {
  font-size: 0.82rem;
  color: #5a6d84;
  font-weight: 500;
  white-space: nowrap;
  background: #edf2f7;
  border-radius: 5px;
  padding: 0.15rem 0.5rem;
  flex-shrink: 0;
}

#zpravy-section .zpravy-nazev {
  flex: 1;
}

#zpravy-section .accordion-body {
  background: #fff;
  padding: 1rem 1.1rem;
}

#zpravy-section .zpravy-status {
  font-size: 0.82rem;
  color: #5a6d84;
  margin-bottom: 0.65rem;
}

#zpravy-section .zpravy-obsah {
  font-family: inherit;
  font-size: 0.92rem;
  background: #f8fbfe;
  border: 1px solid #e1ebf5;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 767.98px) {
  #zpravy-section {
    padding: 18px 0;
  }

  #zpravy-section .accordion-item.zpravy-item .accordion-button {
    font-size: 0.88rem;
    padding: 0.7rem 0.85rem;
  }
}

/*--------------------------------------------------------------
# Admin Users Section
--------------------------------------------------------------*/

#section-admin-users {
  padding: 10px 0;
  min-height: calc(100vh - 220px);
}

#section-admin-users .users-page-title {
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

#section-admin-users .users-page-title i {
  color: var(--accent-color);
}

#section-admin-users .users-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.83rem;
  color: #5a6d84;
  background: #f8fbfe;
  border: 1px solid #e1ebf5;
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  margin-bottom: 0.5rem;
}

#section-admin-users .users-legend i {
  color: var(--accent-color);
}

#section-admin-users .badge-blue,
#section-admin-users .badge-green,
#section-admin-users .badge-red,
#section-admin-users .badge-full-red {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 5px;
  padding: 0.15rem 0.5rem;
  white-space: nowrap;
}

#section-admin-users .badge-blue   { background: #dbeafe; color: #1e40af; }
#section-admin-users .badge-green  { background: #dcfce7; color: #15803d; }
#section-admin-users .badge-red    { background: #fef9c3; color: #854d0e; }
#section-admin-users .badge-full-red { background: #fee2e2; color: #b91c1c; }

#section-admin-users table.datatab {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}

#section-admin-users table.datatab thead th {
  background: #f0f5fa;
  color: var(--heading-color);
  font-weight: 700;
  padding: 0.65rem 0.75rem;
  border-bottom: 2px solid #dbe4ee;
  white-space: nowrap;
}

#section-admin-users table.datatab tbody tr {
  border-bottom: 1px solid #edf2f7;
  transition: background 0.15s ease;
}

#section-admin-users table.datatab tbody tr:hover {
  background: #f8fbfe;
}

#section-admin-users table.datatab tbody tr.users-row {
  cursor: pointer;
}

#section-admin-users table.datatab tbody td {
  padding: 0.55rem 0.75rem;
  vertical-align: middle;
}

#section-admin-users table.datatab tbody td a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

#section-admin-users table.datatab tbody td a:hover {
  text-decoration: underline;
}

#section-admin-users .users-actions {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

#section-admin-users .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #dbe4ee;
  border-radius: 6px;
  background: #fff;
  color: var(--heading-color);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

#section-admin-users .btn-icon:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

@media (max-width: 767.98px) {
  #section-admin-users {
    padding: 18px 0;
  }

  #section-admin-users table.datatab {
    font-size: 0.82rem;
  }
}

/*--------------------------------------------------------------
# Homepage — scoped styles (#homepage)
--------------------------------------------------------------*/

/* ---- About section: about-meta badge ---- */
#homepage .about-meta {
  display: inline-block;
  background: var(--clr_antuka);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* ---- About section: title with orange accent bar ---- */
#homepage .about-title {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 20px;
}

#homepage .about-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--clr_antuka);
  border-radius: 2px;
}

/* ---- Section-title: centered orange bar ---- */
#homepage .section-title h2 {
  position: relative;
  padding-bottom: 18px;
}

#homepage .section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--clr_antuka);
  border-radius: 2px;
}

/* ---- About icons (replaced avatar img) ---- */
#homepage .hp-icon-lg {
  font-size: 2.2rem;
  color: var(--clr_antuka);
  flex-shrink: 0;
}

/* ---- About: ensure main-image fills nicely ---- */
#homepage .about .main-image {
  width: 100%;
  object-fit: cover;
}

/* ---- News section boxes ---- */
#homepage .hp-news-box {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(4, 51, 73, 0.07);
  display: flex;
  flex-direction: column;
}

#homepage .hp-news-box--seminare {
  border-top: 4px solid var(--clr_antuka);
}

#homepage .hp-news-box--aktuality {
  border-top: 4px solid var(--clr_modra_tmava);
}

#homepage .hp-news-box__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

#homepage .hp-news-box__header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

#homepage .hp-news-box__icon {
  font-size: 1.4rem;
  color: var(--clr_antuka);
}

#homepage .hp-news-box--aktuality .hp-news-box__icon {
  color: var(--clr_modra_tmava);
}

#homepage .hp-news-box__lead {
  font-size: 0.88rem;
  color: #6c757d;
  margin-bottom: 20px;
}

#homepage .hp-news-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #f0f4f7;
}

#homepage .hp-news-item:last-of-type {
  border-bottom: none;
}

#homepage .hp-news-item__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr_zelena_bkg);
  border-radius: 8px;
  color: var(--clr_modra_tmava);
  font-size: 1rem;
  flex-shrink: 0;
}

#homepage .hp-news-box--aktuality .hp-news-item__icon {
  background: #e8f0f5;
}

#homepage .hp-news-item__content h4 {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}

#homepage .hp-news-item__content p {
  font-size: 0.8rem;
  color: #6c757d;
  margin: 0;
}

#homepage .hp-news-box__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr_antuka);
  text-decoration: none;
  transition: gap 0.2s ease;
}

#homepage .hp-news-box--aktuality .hp-news-box__more {
  color: var(--clr_modra_tmava);
}

#homepage .hp-news-box__more:hover {
  gap: 10px;
}

/* ---- CTA dual buttons ---- */
#homepage .hp-cta-btn--primary {
  background: var(--clr_antuka);
  border-color: var(--clr_antuka);
  color: #fff;
  margin: 6px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#homepage .hp-cta-btn--primary:hover {
  background: #d95e30;
  border-color: #d95e30;
}

#homepage .hp-cta-btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  margin: 6px 8px;
  display: inline-inline;
}

#homepage .hp-cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  #homepage .hp-news-box {
    padding: 22px 18px;
  }

  #homepage .about-title {
    font-size: 1.4rem;
  }
}

/* ================================================================
   Unified mobile menu - nav-wrap as single panel
   ================================================================ */
@media (max-width: 1199px) {

  /* Hide appmenu on mobile when not logged in (no menu items) */
  .appmenu:not(.appmenu--logged) {
    display: none;
  }

  /* Hide nav-login from header bar on mobile — lives inside the panel */
  .nav-wrap > .nav-login {
    display: none;
  }

  /* Dark backdrop — z-index must be BELOW the header (997) so it doesn't block the nav panel */
  body.mobile-nav-active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, 0.7);
    z-index: 996;
  }

  /* nav-wrap becomes the single sliding panel */
  .mobile-nav-active .nav-wrap {
    position: fixed !important;
    inset: 60px 20px 20px 20px !important;
    background: var(--nav-mobile-background-color) !important;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    z-index: 9997 !important;
    overflow-y: auto;
    display: flex !important;
    flex-direction: column !important;
    padding: 10px 0;
  }

  /* X close button - fixed top-right */
  .mobile-nav-active .mobile-nav-toggle {
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 9999 !important;
    color: #fff !important;
  }

  /* Both navs: plain block inside the panel, no flex gymnastics */
  .mobile-nav-active .appmenu,
  .mobile-nav-active .navmenu {
    display: block !important;
    flex: none !important;
    position: static !important;
    overflow: visible !important;
    background: transparent !important;
    inset: unset !important;
  }

  /* Show both top-level ULs, clear absolute positioning */
  .mobile-nav-active .appmenu > ul,
  .mobile-nav-active .navmenu > ul {
    display: block !important;
    position: static !important;
    inset: unset !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Section label before public nav links (only when logged in and appmenu is present) */
  .mobile-nav-active .appmenu--logged ~ #navmenu::before {
    content: 'Navigace';
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nav-hover-color);
    padding: 10px 20px 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-top: 4px;
  }

  /* Show nav-login at top of panel */
  .mobile-nav-active .nav-wrap > .nav-login {
    display: flex !important;
    order: -1;
    padding: 12px 20px;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    margin-bottom: 4px;
  }

  .mobile-nav-active .nav-wrap > .nav-login .btn-login {
    margin: 0 !important;
    font-size: 14px;
    color: var(--nav-dropdown-color);
  }
}

/* ================================================
   #registrace-section
   ================================================ */

#registrace-section {
  padding: 60px 0;
}

#registrace-section .reg-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-color);
  background: linear-gradient(180deg, #ffffff, #e9f3fa);
  border: 1px solid rgba(4, 51, 73, 0.1);
  box-shadow: 0 6px 14px rgba(4, 51, 73, 0.14);
}

#registrace-section .reg-title {
  color: var(--heading-color);
  font-weight: 700;
  letter-spacing: -0.02em;
}

#registrace-section .reg-subtitle {
  color: #5d6f80;
}

/* Steps indicator */
#registrace-section .reg-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 1.25rem 0;
}

#registrace-section .reg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #9aadbb;
  font-size: 0.82rem;
  font-weight: 500;
}

#registrace-section .reg-step.active {
  color: var(--accent-color);
  font-weight: 700;
}

#registrace-section .reg-step.done {
  color: #2e9c5b;
}

#registrace-section .reg-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: #fff;
}

#registrace-section .reg-step.active .reg-step-num {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

#registrace-section .reg-step.done .reg-step-num {
  background: #2e9c5b;
  border-color: #2e9c5b;
  color: #fff;
}

#registrace-section .reg-step-line {
  flex: 1;
  min-width: 40px;
  max-width: 80px;
  border-top: 2px dashed #cdd8e0;
  margin: 0 8px;
  align-self: center;
  margin-bottom: 22px;
}

/* Card */
#registrace-section .reg-card {
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(13, 43, 62, 0.16);
  overflow: hidden;
}

#registrace-section .reg-card .card-body {
  position: relative;
  padding: 2rem 2.25rem;
}

#registrace-section .reg-card .card-body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--clr_modra_tmava));
}

/* Section dividers */
#registrace-section .reg-form-section {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-color);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2ecf3;
}

/* Form elements */
#registrace-section .form-label {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0;
}

#registrace-section .form-control,
#registrace-section .form-select {
  border: 1px solid #d9e3ec;
  padding: 0.6rem 0.85rem;
  box-shadow: none;
}

#registrace-section .form-control:focus,
#registrace-section .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(4, 51, 73, 0.16);
}

#registrace-section .input-group-text {
  background: #f1f5f9;
  color: #5a6e80;
  border: 1px solid #d9e3ec;
  border-right: 0;
}

#registrace-section .input-group .form-control {
  border-left: 0;
}

#registrace-section .input-group:focus-within .input-group-text {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* Buttons */
#registrace-section .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#registrace-section .btn-primary:hover {
  background-color: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(4, 51, 73, 0.2);
}

/* Required note */
#registrace-section .reg-required-note {
  font-size: 0.82rem;
  color: #9aadbb;
}

#registrace-section .required {
  color: #c0392b;
}

/* Step 1 membership select */
#registrace-section .membership-option {
  border: 2px solid #e2ecf3;
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

#registrace-section .membership-option:hover {
  border-color: var(--accent-color);
  background: #f4f9fd;
}

@media (max-width: 575px) {
  #registrace-section .reg-card .card-body {
    padding: 1.5rem 1.25rem;
  }
}
