* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@font-face {
	font-family: OpenSans;
	src: url(../fonts/OpenSans.ttf);
}

/*********************/
/**** MIDDLE-LINE ****/
/*********************/

/*ODKEMNTUJ ked chces vidieť VERTIKALNY stred*/

/*
body::before,
body::after {
  content: "";
  position: fixed;
  background-color: red;
  z-index: 9999;
}

body::before {
  width: 2px;
  height: 100vh; 
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
*/

/*********************/
/***** REUSEABLE *****/
/*********************/

.row {
    max-width: 1280px;
    width: 100%;
    margin: 0px auto;
}

.heading-main h2 {
    text-align: center; 
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 42px;
    font-family: OpenSans;
    color: #116f6e;
    /* novinka na úpravu štýlu písma */
    line-height: 1.1em;
    font-weight: 800;
}

.heading-main h3 {

    margin-top: 0px;
    font-size: 31px;
    font-weight: 750;
    font-family: OpenSans;
/*    text-align: center;*/
    color: #31511E;
}

.empty-space {
    height: 90px;
}

.empty-space2 {
    height: 490px;
}

/*********************/
/**** ANIMATIONS *****/
/*********************/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.hidden9 {
    opacity: 0;
}

.show9 {
    opacity: 1;
    animation: fadeInUp 1.50s forwards;
}

/* =========================================== */

/* slúži na vypnutie animácií pre tých ktorý to majú nastavené v zaraidení, že nechcú animácie */

@media(prefers-reduced-motion) {
    .hidden7 {
        transition: none;
    }
}

/*********************/
/****** HEADER *******/
/*********************/

header {
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
}

.nav-bar-row {
    max-width: 1350px;
    width: 100%;
    margin: 0px auto;
}

.nav-background {
    position: absolute;
    width: 100%;
    height: 111px;
    background-color: #fcfcfc;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    z-index: 50;
}

#logo img {
    position: absolute;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    margin-bottom: 5px;
    z-index: 75;
}

#logo .logo {
    width: 259px;
}

#logo .logoMobil {
    padding-top: 26px;
    padding-bottom: 26px;
    z-index: 75;
    display: none; 
}

nav ul {
    float: right;
    position: relative;
    margin-top: 34px;
    z-index: 100;
}

nav ul li {
    display: inline-block;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: bold;
    font-size: 14px;
    padding: 13px 25px;
    font-family: OpenSans;
}

nav ul li a:link,
nav ul li a:visited {
    color: #000;
    text-decoration: none;
}

nav ul li a:hover,
nav ul li a:active {
    color: #086905;
    transition: color 0.25s;
}

nav ul li.workshop a {
    color: #086905 !important;
    font-weight: bold;
}

.mobile-nav-back {
    display: none;
}

/*********************/
/******* MAIN ********/
/*********************/

main {
    padding-top: 11px;
}

.hlavny-nadpis {
    height: 143.41px;
    width: 100%;
    background: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%); 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.hlavny-nadpis h2 {
    color: #116f6e;
    font-size: 54px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -2px;
    font-family: OpenSans;
}

.text-workshop {
    padding: 94px 20px;
    color: #1a1a1a;
    font-size: 16px;
    font-family: OpenSans;
}

.text-workshop h3 {
    font-size: 30px;
    color: #116f6e;
    font-weight: 750;
    
}

.text-workshop h4 {
    font-size: 22px;
    color: #116f6e;
    margin-top: 35px;
}

.text-workshop ul li {
    list-style: none;
}

.btn-workshop:link,
.btn-workshop:visited {
    display:inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    background-color: #31511E;
    border-radius: 30px;
    padding: 15px 30px;
    margin-top: 20px;
    will-change: transform; /* zabráni rozostreniu pri translateY*/
    transform: translateY(0);
    transition: transform 0.3s ease;
    font-family: OpenSans;
}

.btn-workshop:hover,
.btn-workshop:active {
    transform: translateY(-6px);
}

/*****************************/
/****** MAIN - galeria *******/
/*****************************/

.galeria {
    padding-top: 20px;
    background: linear-gradient(rgba(250,250,250,0.7),rgba(250,250,250,0.7)), url(../images/ref_background.png);
    background-size: cover;
/*    background-attachment: fixed;*/
}

.galeria h2 {
    color: #31511E;
    text-align: center; 
    margin-top: 20px;
    font-size: 42px;
    line-height: 1.1em;
    font-weight: 800;
    font-family: OpenSans;
}

/*============================*/

.galeria-container {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
/*    width: 100%;*/
    padding-bottom: 30px;
}

.slide-container {
    margin: 10px 0px;
    padding: 15px 25px;
    overflow: hidden;
    height: auto;
    backdrop-filter: blur(4px);
}

.card {
    color: #1a1a1a;
    font-family: OpenSans;
    background: transparent;
    height: 553px;
    width: 100%;
    overflow: hidden;
    position: relative;
/*    border: 3px solid #31511E;*/
    border-radius: 15px;
    
}

.card img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-height: 100%;
    width: 100%;
    object-fit: cover;
}

.swiper-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 30px;
}

.swiper-navBtn {
  all: unset; /* zresetuje pôvodné Swiper štýly */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #DADADA;
  border-radius: 50%;
  color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 20px;
  position: static; /* odstráni absolute */
}

.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background-color: #000;
}
 
@media (max-width: 768px){
    .swiper-navBtn {
        display: none;
    }
}




/*****************************/
/********** FOOTER ***********/
/*****************************/

.footer-page {
    background: linear-gradient(135deg, rgb(49, 81, 30) 0%, rgb(17, 111, 110) 100%);
}

.footer-all {
    height: 479px;
    display: flex;
    flex-direction: row;
    align-items: top;
/*    justify-content: space-between;*/
    padding: 10px;
}

.footer-widgety {
    padding: 10px;
    margin: 75px 470px 105px 10px;
}

.footer-widgety-queries {
    display: none;
}

.footer-widgety a:link,
.footer-widgety a:visited {
    text-decoration: none;
    color: #fff;
    font-family: OpenSans;
}

.footer-widgety a:hover,
.footer-widgety a:active {
    text-decoration: underline;
}

.footer-widgety h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: OpenSans;
}

.footer-widgety a:link img,
.footer-widgety a:visited img {
    padding: 8px;
    margin: 10px 15px 10px 0px;
    border: 2px solid #fff;
    border-radius: 50%;
    vertical-align: middle;
}

.footer-widgety a:hover img,
.footer-widgety a:active img {
    background-color: #116f6e;
    transition: background-color 0.3s ease-in-out;
}

.footer-widgety img {
    width: 44px;
    height: auto;
}

.footer-menu {
    height: 239px;
    padding: 10px;
    padding: 10px;
    margin: 75px 30px 0px 10px;
}

.footer-menu h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
    font-family: OpenSans;
}

.footer-menu a:link,
.footer-menu a:visited {
    color: #fff;
    display: block;
    text-decoration: none;
    padding: 6px 16px;
    font-family: OpenSans;
}

.footer-menu a:hover,
.footer-menu a:active {
    display: block;
    text-decoration: underline;
}

.footer-kontakt {
    padding: 10px;
    margin: 75px 60px 0px 10px;
}

.footer-kontakt h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: OpenSans;
}

.footer-kontakt p {
    color: #fff;
    font-family: OpenSans;
}

.footer-kontakt p span {
    font-weight: bold;
}

.footer-kontakt img {
    padding: 8px;
    margin: 10px 15px 10px 0px;
    border: 2px solid #fff;
    border-radius: 50%;
    vertical-align: middle;
    width: 44px;
    height: auto;
}

.footer-line {
    padding: 0px 20px;
}

.footer-text {
    color: #fff;
    text-align: center;
    font-family: OpenSans;
    padding: 26px 0px 18px 0px;
}

/*****************************/
/********* QUERIES ***********/
/*****************************/

@media only screen and (max-width: 1235px){
    
    .hlavny-nadpis h2 {
        font-size: 43px;
    }
    
    .about-meZZ {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    
    .about-meZZ h2 {
        font-size: 28px;
    }
    
    .about-meZZ p {
        font-size: 14px;
    }
    
    .about-meZZ .about-me-textZZ {
        order: 2;
        padding: 0px;
    }
    
    .about-meZZ .about-me-photoZZ {
        order: 1;
    }
    
    .about-me-photoZZ {
        text-align: center;
        padding-top: 50px;
        padding-bottom: 70px;
    }
    
    .about-me-photoZZ img {
        margin: 0px;
    }
    
    .about-meZZ .col {
        margin: 0;
    }
    
    .about-meZZ .span-1-of-2 {
        width: 100%;
    }
    
}

@media only screen and (max-width: 630px){
    
    .hlavny-nadpis h2 {
        font-size: 33px;
    }
    
    .about-me-photoZZ {
        text-align: center;
        padding-top: 20px;
        padding-bottom: 40px;
    }
    
}

@media only screen and (max-width: 400px){
    
    .hlavny-nadpis h2 {
        font-size: 25px;
    }
    
}

/*****************************/
/****** STOP floating ********/
/*****************************/

.clearfix {zoom: 1}
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}