/* =================================================================== */

/* ===== GLOBÁLNE NASTAVENIA, IMPORTY A RESET ===== */

/* =================================================================== */

/* Swiper 6.4.8 - knižnica pre slidery */

:root {
  --swiper-theme-color: #242425;
}

/* Základný box-sizing pre všetky elementy */

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* =================================================================== */

/* ===== ZÁKLADNÉ NASTAVENIE BODY A ODSADENIE PRE FIXED-TOP NAVIGÁCIU (KĽÚČOVÁ OPRAVA) ===== */

/* =================================================================== */

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}

/* Pravidlo pre zobrazenie NA ŠÍRKU (landscape) */

@media (orientation: landscape) {
  body {
    padding-top: 30px;
  }
}

/* Pravidlo pre zobrazenie NA VÝŠKU (portrait) */

/* =================================================================== */

/* ===== LAYOUT STRÁNKY (KONTAJNERY, MAIN, SIDEBAR) ===== */

/* =================================================================== */

.page-container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  flex: 1;
  box-sizing: border-box;
  margin: 0 auto;
}

main {
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  flex-direction: row;
}

.main-content {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 200px;
}

.sidebar {
  width: 25%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #f0f0f0;
}

/* =================================================================== */

/* ===== TYPOGRAFIA A NADPISY ===== */

/* =================================================================== */

.h1, h1 {
  font-size: 2.3rem;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

p {
  color: #3C4857;
  text-indent: 30px;
}

a {
  text-decoration: none;
}

.podciarknuty-nadpis {
  position: relative;
  text-align: left;
  padding-top: 15px;
  padding-bottom: 20px;
}

.podciarknuty-nadpis::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #F2C94C;
}

/* =================================================================== */

/* ===== KOMPONENTY: KARTY (CARDS) A STĹPCE (COLUMNS) ===== */

/* =================================================================== */

.container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px;
}

.column {
  width: calc(33.33% - 20px);
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  text-align: center;
}

.card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  line-height: 1.8;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.card img {
  max-width: 100%;
  height: 200px;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  flex-grow: 1;
}

.card-title {
  color: black;
  margin-bottom: 10px;
  font-family: 'Quicksand', sans-serif;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

/* Štýly pre Blog Card z Responsive-UI-Card-02.css */

.blog-card {
  display: inline-block;
  position: relative;
  width: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.blog-card .blog-card-image {
  height: 60%;
  position: relative;
  overflow: hidden;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -30px;
  border-radius: 6px;
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.blog-card .blog-card-image img {
  pointer-events: none;
}

.blog-card .blog-table {
  padding: 15px 30px;
}

.blog-table {
  margin-bottom: 0px;
}

.blog-category {
  position: relative;
  line-height: 0;
  margin: 15px 0;
}

.blog-text-success {
  color: #4d4d4d!important;
}

.blog-card-blog .blog-card-caption {
  margin-top: 5px;
}

.blog-card-caption, .blog-card-caption a {
  font-weight: 700;
  font-family: "Roboto Slab", "Times New Roman", serif;
  color: #333;
}

/* =================================================================== */

/* ===== KOMPONENTY: TLAČIDLÁ A FORMULÁRE ===== */

/* =================================================================== */

button {
  background-color: rgba(224,223,222,0.76);
  border: 1px solid #ccc;
  color: #333;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

button:hover {
  background-color: rgb(248,181,1);
}

.submit-now {
  margin-top: 20px;
  font-size: 16px;
  width: 200px;
  height: 50px;
  background-color: #e74c3c;
  border-color: transparent;
}

.modern-form {
  padding-top: 80px;
  padding-bottom: 80px;
}

.modern-form__form-container {
  padding-top: 100px;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
  border-radius: 8px !important;
  border: 1px solid silver;
}

.form-control.input {
  background: transparent;
  border-bottom: 1px solid silver;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0px !important;
}

.modern-form__form-control--textarea {
  height: 95px !important;
  resize: none;
}

.btn-primary:hover {
  color: #fff;
  background-color: #4daade;
  border-color: #4daade;
  box-shadow: 0px 10px 15px rgba(157,157,157,0.4);
}

/* =================================================================== */

/* ===== KOMPONENTY: VLASTNÝ MULTI-SELECT (GAMANET) ===== */

/* =================================================================== */

.fs-14 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.color-n-5 {
  color: #817F7E;
}

.select-multi-component-wrap-v2 .select {
  width: 100%;
  min-height: 40px;
  border: 0.0625rem solid #D8D6D5;
  border-radius: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding: 0.25rem 0.75rem;
  background-color: #fff;
}

.select-multi-component-wrap-v2 .select.search {
  padding-left: 2.75rem;
  position: relative;
}

.select-multi-component-wrap-v2 .select.search::before {
  position: absolute;
  content: " ";
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("Nezaradene/search.svg");
  width: 24px;
  height: 24px;
  top: 6px;
  left: 1rem;
  filter: invert(53%) sepia(8%) saturate(80%) hue-rotate(335deg) brightness(93%) contrast(81%);
}

.select-multi-component-wrap-v2 .select::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("Nezaradene/select-arrow.svg");
  width: 12px;
  height: 6px;
  top: 17px;
  right: 18px;
}

.select-multi-component-wrap-v2 .select.active::after {
  transform: rotate(180deg);
}

.select-multi-component-wrap-v2 .select:active, .select-multi-component-wrap-v2 .select:focus, .select-multi-component-wrap-v2 .select.active {
  border-color: #F48220;
}

.select-multi-component-wrap-v2 .select.active ~ .select-list {
  list-style-type: none;
  margin-top: 4px;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  border: 0.0625rem solid #EAE9E9;
  border-radius: 4px;
  background-color: #fff;
  max-height: 16.1rem;
  height: fit-content;
  overflow-y: scroll;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
}

.select-multi-component-wrap-v2 .select.error {
  border-color: #EE3A3A;
}

.select-multi-component-wrap-v2 .select-input {
  min-width: 0.5rem;
  height: 100%;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 0.875rem;
}

.select-multi-component-wrap-v2 .select-input::placeholder {
  color: #A6A3A0;
  font-size: 0;
}

.select-multi-component-wrap-v2 .select-input.placeholder {
  cursor: pointer;
  background-color: #fff;
}

.select-multi-component-wrap-v2 .select-input.placeholder::placeholder {
  font-size: 0.875rem;
}

.select-multi-component-wrap-v2 .select-list {
  height: 0px;
  overflow: hidden;
  margin: 0;
}

.select-multi-component-wrap-v2 .select-list::-webkit-scrollbar {
  width: 0.5rem;
}

.select-multi-component-wrap-v2 .select-list::-webkit-scrollbar-thumb {
  background-color: #D8D6D5;
  border-radius: 0.5rem;
}

.select-multi-component-wrap-v2 .select-list li {
  min-height: 2.5rem;
  max-height: 2.5rem;
  padding: 0 1.25rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  line-height: 20px;
  font-weight: 400;
  color: #2F2E2D;
  cursor: pointer;
  position: relative;
}

.select-multi-component-wrap-v2 .select-list li:hover, .select-multi-component-wrap-v2 .select-list li.active {
  background-color: #FDFCFC;
}

.select-multi-component-wrap-v2 .select-list li.disabled {
  pointer-events: none;
  background-color: #FAFAFA;
  color: #BFBDBB;
}

.select-multi-component-wrap-v2 .select-list .custom__checkbox {
  margin: 0;
  padding: 0;
  border: 0.125rem solid #817F7E;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.25rem;
  cursor: pointer;
  position: relative;
  min-width: 1.125rem !important;
}

.select-multi-component-wrap-v2 .select-list .custom__checkbox::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("Nezaradene/check.svg");
  top: 0.0938rem;
  left: 0.0938rem;
  display: none;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(59deg) brightness(104%) contrast(102%);
}

.select-multi-component-wrap-v2 .select-list .select-multi-item.active .custom__checkbox {
  background-color: #F48220 !important;
  border-color: #F48220 !important;
}

.select-multi-component-wrap-v2 .select-list .select-multi-item.active .custom__checkbox::before {
  display: block !important;
}

.select-multi-component-wrap-v2 .badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.select-multi-component-wrap-v2 .badge-wrap .multi-selected {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #EAE9E9;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.125rem 0.5rem;
  width: fit-content;
  height: min-content;
  border-radius: 0.25rem;
}

.select-multi-component-wrap-v2 .badge-wrap .badge-btn {
  padding: 0;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  display: flex;
  align-items: center;
}

.select-multi-component-wrap-v2 .badge-wrap .badge-btn img {
  filter: invert(54%) sepia(8%) saturate(81%) hue-rotate(336deg) brightness(92%) contrast(88%);
  width: 1rem;
  height: 1rem;
}

/* =================================================================== */

/* ===== KOMPONENTY: HERO SEKCIE A UTILITY TRIEDY ===== */

/* =================================================================== */

.fit-cover {
  object-fit: cover;
}

.mb-n7 {
  margin-bottom: -5rem !important;
}

.min-vh-25 {
  min-height: 25vh !important;
}

/* =================================================================== */

/* ===== OSTATNÉ KOMPONENTY A UTILITY ===== */

/* =================================================================== */

/* Responzívne video */

.video-container {
  position: relative;
  padding-bottom: 56%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Lightbox štýly */

.lightbox {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  padding-top: 98px;
}

.lightbox-content {
  display: block;
  object-fit: contain;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
}

/* =================================================================== */

/* ===== RESPONZÍVNE ÚPRAVY (MEDIA QUERIES) ===== */

/* =================================================================== */

@media (min-width: 768px) {
  .min-vh-md-50 {
    min-height: 50vh !important;
  }
}

@media (max-width: 1200px) {
  .column {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 1200px) {
  .sidebar {
    width: 20%;
  }
}

@media (max-width: 992px) {
  .column {
    width: calc(50% - 20px);
  }
}

@media (max-width: 900px) {
  main {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .sidebar {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  .container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .column {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .column {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .page-container {
    width: 100%;
    margin-inline-start: 0;
  }
}

/* =================================================================== */

/* ===== KOMPONENT: TLAČIDLO ZDIEĽANIA ===== */

/* =================================================================== */

.share-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: Arial, sans-serif;
}

.share-button {
  background-color: #f7b500;
  color: #000000;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background-color 0.3s, transform 0.2s;
}

.share-button:hover {
  transform: scale(1.1);
}

.share-menu {
  position: absolute;
  bottom: 75px;
  left: 5px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}

/* Stav, keď je menu viditeľné */

.share-container:hover .share-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.share-menu a {
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.share-menu a:hover {
  transform: scale(1.1);
}

/* Farby pre jednotlivé sociálne siete */

.share-whatsapp {
  background-color: #25D366;
}

.share-facebook {
  background-color: #1877F2;
}

.share-email {
  background-color: #ea4335;
}

.share-viber {
  background-color: #7360F2;
}

.share-sms {
  background-color: #000000;
}

