/**
 * Hotel Fantazie - Modern CSS
 * Bootstrap 5 based custom styles
 */

/* =============================================
   1. CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  /* Colors */
  --color-primary: #bf0000;
  --color-primary-dark: #8c0000;
  --color-primary-light: rgba(191, 0, 0, 0.1);
  --color-secondary: #030f27;
  --color-accent: #8a99c0;
  
  --color-text: #2d2d2d;
  --color-text-light: #8c8c8c;
  --color-text-muted: #999;
  
  --color-bg: #ffffff;
  --color-bg-light: #f7f9fa;
  --color-bg-dark: #2c2c2c;
  --color-bg-darker: #1a1a1a;
  
  --color-border: #e7e7e7;
  
  /* Typography */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --line-height-base: 1.625;
  
  /* Spacing */
  --spacing-xs: 0.5rem;   /* 8px */
  --spacing-sm: 1rem;     /* 16px */
  --spacing-md: 1.5rem;   /* 24px */
  --spacing-lg: 2.5rem;   /* 40px */
  --spacing-xl: 3.75rem;  /* 60px */
  --spacing-xxl: 6.25rem; /* 100px */
  
  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 15px;
  --radius-lg: 30px;
  --radius-circle: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 0 20px rgba(3, 15, 39, 0.07);
  --shadow-lg: 0 0 30px rgba(2, 2, 2, 1.00);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* =============================================
   2. BASE & TYPOGRAPHY
   ============================================= */
body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
}

/* =============================================
   3. BOOTSTRAP OVERRIDES
   ============================================= */

/* Buttons */
.btn-primary {
  --bs-btn-bg: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-bg: var(--color-primary-dark);
  --bs-btn-hover-border-color: var(--color-primary-dark);
  --bs-btn-active-bg: var(--color-primary-dark);
  --bs-btn-active-border-color: var(--color-primary-dark);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

/* Container */
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

/* Cards */
.card {
  border: none;
  box-shadow: var(--shadow-md);
}

/* Navbar */
.navbar-dark {
  --bs-navbar-color: rgba(255, 255, 255, 0.9);
  --bs-navbar-hover-color: rgba(255, 255, 255, 1);
  --bs-navbar-active-color: rgba(255, 255, 255, 1);
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-dark {
  background-color: var(--color-bg-dark) !important;
}

.bg-darker {
  background-color: var(--color-bg-darker) !important;
}

.bg-light {
  background-color: var(--color-bg-light) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

/* =============================================
   4. LAYOUT COMPONENTS
   ============================================= */

/* Header Style 6 (Original Design) */
#site-header-wrap {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 150;
}

/* Na úvodní stránce absolutní pozicování přes carousel */
body.home #site-header-wrap {
  position: absolute;
}

/* Na podstránkách relativní pozicování */
body:not(.home) #site-header-wrap {
  position: relative;
}

#site-header {
  position: relative;
  z-index: 100;
  box-shadow: none;
  transition: all ease 0.3s;
}

/* Průhledné tmavé pozadí na úvodní stránce */
body.home #site-header {
  background-color: rgba(3, 15, 39, 0.27) !important;
}

/* Šedé pozadí na podstránkách */
body:not(.home) #site-header {
  background-color: #bbbec5 !important;
}

#site-header:after {
  background-color: transparent;
  content: "";
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.3s;
}

#site-header-inner {
  padding-top: 25px;
  padding-bottom: 55px;
  position: relative;
  height: 100%;
}

.wrap-inner {
  position: relative;
}

/* Logo */
#site-logo {
  float: left;
  max-width: 100%;
  transition: all ease 0.3s;
}

#site-logo-inner {
  max-width: 225px;
  transition: all ease 0.3s;
}

#site-logo a img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Header Aside (Icons) */
#header-aside {
  float: right;
}

#header-aside .aside-content {
  float: right;
  color: #fefefe;
}

#header-aside .aside-content .inner > span {
  float: left;
  display: block;
  color: #fefefe;
}

.ikonky {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ikonka {
  margin-right: 10px;
}

.ikonka:last-child {
  margin-right: 0;
}

.ikonka img {
  background: var(--color-primary);
  border-radius: 50%;
  padding: 8px;
  transition: transform 0.3s ease;
  display: block;
  width: 40px;
  height: 40px;
}

.ikonka a:hover img {
  transform: scale(1.1);
}

/* Navigation Wrap (Full Width Red Menu) */
.site-navigation-wrap {
  position: relative;
  background: var(--color-primary);
  width: 100%;
}

.site-navigation-wrap .container {
  padding: 0;
}

.site-navigation-wrap .inner {
  position: absolute;
  left: 50%;
  top: 100%;
  background-color: var(--color-primary);
  padding: 0;
  z-index: 99999;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Nav Extend (Logo in Menu) - Hidden */
.nav-extend {
  display: none;
}

/* Main Navigation */
#main-nav {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

#main-nav ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
}

#main-nav ul.menu > li {
  position: relative;
  float: left;
  margin: 0 14px;
}

#main-nav ul.menu > li > a {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.25px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 10px;
}

#main-nav ul.menu > li > a span {
  position: relative;
}

/* Menu underline effect */
#main-nav ul.menu > li > a span:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#main-nav ul.menu > li:hover > a span:before,
#main-nav ul.menu > li.current-menu-item > a span:before {
  transform: scaleX(1);
}

#main-nav ul.menu > li > a:hover,
#main-nav ul.menu > li.current-menu-item > a {
  color: #fff;
  opacity: 0.9;
}

/* Mobile Menu */
.mobile_menu_trigger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile_menu_trigger i {
  color: #fff;
  font-size: 31px;
  line-height: 0;
  margin-top: 20px;
  display: block;
}

.mobile_menu_trigger:hover {
  background: var(--color-primary-dark);
  transform: scale(1.05);
}

.mobile_menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--color-primary);
  z-index: 9998;
  padding: 80px 30px 30px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile_menu.active {
  right: 0;
}

.mobile_menu a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile_menu a span {
  font-size: 16px;
  font-weight: 500;
}

.mobile_menu a:hover {
  color: #fff;
  padding-left: 10px;
}

.mobi-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobi-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobi-overlay .close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mobi-overlay .close:before,
.mobi-overlay .close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #fff;
}

.mobi-overlay .close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobi-overlay .close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Admin Bar */
.admin_menu {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.admin_menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.admin_menu a:hover {
  color: var(--color-primary);
}

/* Header offset when admin bar is present */
body.logged-in #site-header-wrap {
  top: 40px;
}

body.logged-in #wrapper {
  padding-top: 40px;
}

/* Fixed Header - Disabled */
#site-header.fixed-hide {
  /* Header is not fixed on scroll */
}

#site-header .site-navigation-wrap.fixed-hide {
  position: fixed;
  left: 0;
  top: -200px;
  width: 100%;
  z-index: 99999;
  background-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all ease 0.3s;
}

#site-header .site-navigation-wrap.fixed-hide .inner {
  position: static;
  transform: none;
  padding: 0;
  background: var(--color-primary);
  max-width: 1200px;
  margin: 0 auto;
}

#site-header .site-navigation-wrap.fixed-hide #main-nav > ul > li > a {
  color: #fff;
}

#site-header .site-navigation-wrap.fixed-show {
  top: 0;
}

/* =============================================
   5. HERO CAROUSEL
   ============================================= */
#heroCarousel {
  height: 890px;
}

#heroCarousel .carousel-item {
  height: 890px;
}

#heroCarousel .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

#heroCarousel .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  left: 50%;
  right: auto;
  z-index: 10;
  text-align: left;
  width: 100%;
  max-width: 1200px;
  margin-left: -600px;
  padding-left: 15px;
  padding-right: 15px;
}

#heroCarousel .carousel-caption h1 {
  font-size: 4.375rem; /* 70px */
  line-height: 1.15;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  padding: 1rem 2rem;
  display: block;
  border-radius: var(--radius-sm);
  width: fit-content;
}

#heroCarousel .carousel-caption .lead {
  font-size: 1.375rem; /* 22px */
  line-height: 1.64;
  background: rgba(0, 0, 0, 0.25);
  padding: 1rem 2rem;
  display: inline-block;
  border-radius: var(--radius-sm);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-sm);
  opacity: 0.7;
  transition: all var(--transition-base);
}

#heroCarousel .carousel-control-prev {
  left: 20px;
}

#heroCarousel .carousel-control-next {
  right: 20px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
}

/* Carousel Indicators - Hidden */
#heroCarousel .carousel-indicators {
  display: none;
}

/* =============================================
   6. CONTACT SECTION
   ============================================= */
.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-circle);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.1);
  font-size: 2rem;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
  transform: scale(1.05);
  box-shadow: 0 0 0 3px rgba(191, 0, 0, 0.2);
}

.contact-item h5 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.contact-item .border-bottom {
  border-color: var(--color-border) !important;
}

.contact-item a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--color-primary-dark);
}

/* Scroll offset for anchor links */
section[id],
#ubytovani,
#stravovani,
#saly,
#kalendar,
#kontakt,
#sluzby {
  scroll-margin-top: 140px;
}

@media (max-width: 991px) {
  section[id],
  #ubytovani,
  #stravovani,
  #saly,
  #kalendar,
  #kontakt,
  #sluzby {
    scroll-margin-top: 80px;
  }
}

/* =============================================
   7. FOOTER
   ============================================= */
#footer {
  background: #171a1e;
  color: #d7d7d7;
  padding: 70px 0 50px;
}

#footer-widgets {
  margin-bottom: 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -17.5px;
}

.footer-grid > div {
  padding: 0 17.5px;
}

#footer .widget {
  margin-bottom: 35px;
}

#footer .widget-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.3;
}

#footer .widget-title span {
  position: relative;
  display: inline-block;
}

#footer .widget_text .textwidget {
  color: #d7d7d7;
}

#footer .font-size-14 {
  font-size: 14px;
}

#footer .line-height-29 {
  line-height: 29px;
}

#footer .margin-bottom-20 {
  margin-bottom: 20px;
}

#footer .margin-bottom-0 {
  margin-bottom: 0;
}

/* Footer Links */
#footer .widget_links ul.links-wrap {
  margin: 0;
  padding: 0;
}

#footer .widget_links ul.links-wrap li {
  list-style: none;
  margin-bottom: 10px;
}

#footer .widget_links ul.links-wrap li a,
#footer .menu-footer a {
  color: #d7d7d7;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer .widget_links ul.links-wrap li a:hover,
#footer .menu-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Footer Icons with Red Background */
#footer .menu-footer {
  margin: 0;
  padding: 0;
}

#footer .menu-footer li {
  list-style: none;
  margin-bottom: 10px;
}

#footer .menu-footer .accent-icon i {
  background: var(--color-primary);
  border-radius: 50%;
  color: #fff !important;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 13px;
  flex-shrink: 0;
}

/* Info icon - Elegant Icons */
#footer .menu-footer .accent-icon .elegant-icon_info {
  background: var(--color-primary);
  padding: 5px !important;
  border-radius: 50%;
  color: #fff !important;
}

/* Map pin icon - Elegant Icons */
#footer .menu-footer .accent-icon .elegant-icon_pin,
#footer .menu-footer .accent-icon .elegant-icon_pin_alt {
  background: var(--color-primary);
  padding: 5px !important;
  border-radius: 50%;
  color: #fff !important;
}

#footer .menu-footer .accent-icon.email i {
  background: var(--color-primary) url(/img/email.png) no-repeat center;
  background-size: 16px;
}

#footer .menu-footer .accent-icon.email i::before {
  visibility: hidden;
}

#footer .menu-footer .accent-icon.phone i {
  background: var(--color-primary) url(/img/phone.png) no-repeat center;
  background-size: 16px;
}

#footer .menu-footer .accent-icon.phone i::before {
  visibility: hidden;
}

#footer .menu-footer .accent-icon a {
  display: flex;
  align-items: center;
}

#footer .menu-footer span {
  font-size: 16px;
  color: #d7d7d7;
}

/* Bottom Bar */
#bottom {
  background: #1e2227;
  padding: 25px 0;
  color: #999;
}

.bottom-bar-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.bottom-bar-copyright {
  flex: 1;
}

#copyright {
  font-size: 14px;
  color: #999;
}

.bottom-bar-menu {
  flex: 1;
  text-align: right;
}

.bottom-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.bottom-nav li {
  list-style: none;
}

.bottom-nav li a {
  color: #999;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bottom-nav li a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .bottom-bar-inner-wrap {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .bottom-bar-menu {
    text-align: center;
  }
  
  .bottom-nav {
    justify-content: center;
  }
}

/* =============================================
   8. UTILITIES
   ============================================= */

/* Clearfix */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* Scroll to Top Button */
#scrollTop,
#scroll-top {
  position: fixed !important;
  right: 36px;
  bottom: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all ease 0.3s;
}

#scroll-top::after {
  content: "\21";
  font-family: "ElegantIcons";
  font-weight: normal;
  color: var(--color-secondary);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: all ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#scroll-top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: all ease 0.3s;
}

#scroll-top:hover::before {
  background-color: var(--color-primary);
}

#scroll-top:hover::after {
  color: #fff;
}

#scroll-top.show,
#scroll-top.visible {
  bottom: 75px;
  opacity: 1;
  visibility: visible;
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
}

/* Offcanvas Customization */
.offcanvas {
  background: var(--color-primary);
}

.offcanvas .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  padding: 0.75rem 0;
  transition: all var(--transition-base);
}

.offcanvas .nav-link:hover {
  color: #fff;
  transform: translateX(10px);
}

/* =============================================
   9. RESPONSIVE
   ============================================= */

/* Tablets and below */
@media (max-width: 991px) {
  :root {
    --font-size-base: 15px;
  }
  
  /* Hide desktop navigation on tablets/mobile */
  .site-navigation-wrap {
    display: none !important;
  }
  
  /* Show mobile menu trigger */
  .mobile_menu_trigger {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: 53px;
    height: 53px;
    background: #000000;
    border-radius: 0;
    box-shadow: none;
  }
  
  .mobile_menu_trigger i {
    font-size: 36px;
  }
  
  /* Mobile menu adjustments */
  .mobile_menu {
    position: absolute;
    top: 53px;
    left: 0;
    right: auto;
    width: 275px;
    height: calc(100% - 53px);
    background: #212121;
    padding: 0;
    transform: none;
    transition: none;
  }
  
  .mobile_menu.d-none {
    display: none;
  }
  
  .mobile_menu a {
    color: #aaaaaa;
    font-size: 20px;
    padding: 10px 20px;
    border-bottom: none;
  }
  
  .mobile_menu a:hover {
    color: #ffffff;
    padding-left: 20px;
  }
  
  /* Hide overlay on mobile */
  .mobi-overlay {
    display: none;
  }
  
  /* Make header zero height with absolute positioned content */
  #site-header-wrap {
    position: relative;
  }
  
  /* Domovská stránka - zero height pro absolutní pozicování */
  body.home #site-header {
    padding: 0;
  }
  
  body.home #site-header-inner {
    padding: 0 !important;
    height: 0;
  }
  
  body.home #site-logo {
    position: absolute;
    top: 48px;
    left: 15px;
  }
  
  body.home #header-aside {
    position: absolute;
    top: 10px;
    right: 15px;
  }
  
  /* Podstránky - normální statická hlavička */
  body:not(.home) #site-header {
    padding: 0;
  }
  
  body:not(.home) #site-header-inner {
    padding: 10px 15px 10px 65px !important;
    height: auto;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  body:not(.home) .wrap-inner {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  body:not(.home) #site-logo {
    position: relative;
    top: 0;
    left: 0;
    float: none !important;
    flex-shrink: 0;
  }
  
  body:not(.home) #header-aside {
    position: relative;
    top: 0;
    right: 0;
    float: none !important;
    margin-left: auto;
    flex-shrink: 0;
  }
  
  body:not(.home) #header-aside .aside-content {
    float: none !important;
  }
  
  body:not(.home) #header-aside .aside-content .inner > span {
    float: none !important;
  }
  
  /* Zrušení top paddingu na první sekci na podstránkách */
  body:not(.home) section:first-of-type,
  body:not(.home) .py-5:first-of-type {
    padding-top: 0 !important;
  }
  
  #site-logo-inner {
    max-width: 360px;
  }
  
  .ikonka img {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
  
  #heroCarousel,
  #heroCarousel .carousel-item {
    height: 600px;
  }
  
  /* Center hero text on tablets/mobile */
  #heroCarousel .carousel-caption {
    top: 50%;
    margin-left: -50%;
    text-align: center;
    max-width: 100%;
  }
  
  #heroCarousel .carousel-caption h1 {
    font-size: 3.125rem; /* 50px */
    margin-left: auto;
    margin-right: auto;
  }
  
  #heroCarousel .carousel-caption .lead {
    font-size: 1.125rem; /* 18px */
  }
  
  /* Arrows closer to edges */
  #heroCarousel .carousel-control-prev {
    left: 5px;
  }
  
  #heroCarousel .carousel-control-next {
    right: 5px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
  }
  
  #site-header-wrap {
    position: relative;
  }
  
  /* Domovská stránka - zachej aktuální barvu */
  body.home #site-header {
    background-color: rgba(3, 15, 39, 0.95) !important;
  }
  
  /* Podstránky - nová barva */
  body:not(.home) #site-header {
    background-color: #bbbec5 !important;
  }
  
  /* Oprava full-width sekcí na mobilu */
  .section-full-width {
    width: 100%;
    margin-left: 0;
  }
  
  #site-header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  #site-logo-inner {
    max-width: 150px;
  }
  
  #header-aside .ikonky {
    gap: 5px;
  }
  
  .ikonka {
    margin-right: 5px;
  }
  
  .ikonka img {
    width: 32px;
    height: 32px;
    padding: 5px;
  }
  
  #heroCarousel,
  #heroCarousel .carousel-item {
    height: 500px;
  }
  
  /* Hero text at arrow level on mobile */
  #heroCarousel .carousel-caption {
    top: 50%;
  }

  #heroCarousel .carousel-caption h1 {
    font-size: 2.375rem; /* 38px */
  }

  #heroCarousel .carousel-caption .lead {
    font-size: 1rem; /* 16px */
    padding: 0.75rem 1.5rem;
  }
  
  /* Smaller arrows on mobile */
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    width: 35px;
    height: 35px;
    width: 40px;
    height: 40px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Oprava footer grid pro mobilní zařízení */
  .footer-grid {
    margin-left: 0;
    margin-right: 0;
  }
  
  .footer-grid > div {
    padding-left: 0;
    padding-right: 0;
  }
  
  #scrollTop {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
  
  .mobile_menu_trigger {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  :root {
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
  }
  
  #site-logo-inner {
    max-width: 200px;
  }
  
  .ikonka img {
    width: 28px;
    height: 28px;
    padding: 4px;
  }
  
  #heroCarousel,
  #heroCarousel .carousel-item {
    height: 400px;
  }
  
  #heroCarousel .carousel-caption h1 {
    font-size: 1.875rem; /* 30px */
  }
  
  #heroCarousel .carousel-caption .lead {
    font-size: 0.875rem; /* 14px */
    padding: 0.5rem 1rem;
  }
  
  .mobile_menu {
    width: 100%;
    right: -100%;
  }
}

/* =============================================
   10. CALENDAR TABLE STYLES
   ============================================= */
.calendar-table .col-date {
  width: 100px;
}

.calendar-table .col-name {
  width: 250px;
}

.calendar-table .col-desc {
  width: 250px;
}

.text-reservation {
  color: #990000;
}

.display-4 {
  font-size: 42px;
  line-height: 50px;
}

.section-text {
  font-size: 18px;
  line-height: 30px;
  max-width: 750px;
}

/* =============================================
   11. PRINT STYLES
   ============================================= */
@media print {
  #header,
  #admin-bar,
  #scrollTop,
  .offcanvas,
  .modal {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}

/* =============================================
   Carousel Images - ensure full visibility
   ============================================= */
.carousel-with-red-border img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
