:root {
    --mainGreen: #008b52;  /* hlavni modra barva */
    --mainGreenOver: #00783a;  /* hlavni modra barva */
    --mainBlack: #000;  /* hlavni cerna barva */
    --mainBlackOver: #191919;  /* hlavni cerna barva */
    --mainWhite: #fff;  /* hlavni bila barva */
}   


/* === HEADER === */
.header {
    position: fixed;
    width: 100%;
    background-color: var(--mainWhite);
    padding: 25px 0;
    border-radius: 0 0 50px 50px;
    z-index: 1000;
}

/* Container s max-width */
.header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

/* Hlavní content s flexem */
.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.header__logo {
    flex: 0 0 auto;
}

.header__logo a {
    display: block;
    line-height: 0;
}

.header__logo img {
    height: 40px;
    width: auto;
}

/* Hlavní navigace */
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    gap: 35px;
    align-items: center;
}

.header__menu li {
    margin: 0;
    list-style-type: none;
}

.header__menu a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header__menu a:hover {
    color: var(--mainGreen);
}

/* Pravá strana - akce */
.header__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__gdpr {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header__gdpr:hover {
    color: var(--mainGreen);
}

.header__cta {
    background-color: var(--mainGreen);
    color: var(--mainWhite);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.header__cta:hover {
    background-color: var(--mainGreenOver);
}

/* Mobile menu toggle - Hamburger/Cross */
.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1002;
}

.header__toggle span {
    width: 28px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animace hamburger -> křížek */
.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Scrolled state - zmenšený header */
.header--scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header--scrolled .header__logo img {
    height: 32px;
}

/* Plynulé přechody */
.header {
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header__logo img {
    transition: height 0.3s ease;
}

/* === RESPONZIVITA === */

/* Desktop pod 1650 */
@media (max-width: 1650px) {    
    .header__container {
        padding: 0 30px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .header {
        border-radius: 0;
    }
    
    .header__container {
        padding: 0 30px;
    }
    
    .header__content {
        gap: 30px;
    }
    
    .header__menu {
        gap: 25px;
    }
    
    .header__menu a,
    .header__gdpr {
        font-size: 14px;
    }
    
    .header__cta {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header__container {
        padding: 0 20px;
    }
    
    .header__content {
        gap: 20px;
    }
    
    .header__logo img {
        height: 35px;
    }
    
    /* Mobile navigace vyjíždějící pod hlavičku */
    .header__nav {
        display: block;
        position: fixed;
        top: 70px; /* Výška headeru */
        left: 0;
        right: 0;
        background: var(--mainWhite);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 30px;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        
        /* Animace - schované nahoře */
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.4s ease,
                    visibility 0s linear 0.4s;
    }
    
    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.4s ease,
                    visibility 0s linear 0s;
    }
    
    .header__menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .header__menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        
        /* Animace jednotlivých položek */
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .header__menu li:last-child {
        border-bottom: none;
    }

    /* Postupná animace položek menu */
    .header__nav.active .header__menu li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .header__nav.active .header__menu li:nth-child(1) { transition-delay: 0.1s; }
    .header__nav.active .header__menu li:nth-child(2) { transition-delay: 0.15s; }
    .header__nav.active .header__menu li:nth-child(3) { transition-delay: 0.2s; }
    .header__nav.active .header__menu li:nth-child(4) { transition-delay: 0.25s; }
    .header__nav.active .header__menu li:nth-child(5) { transition-delay: 0.3s; }
    
    .header__menu a {
        display: block;
        padding: 18px 0;
        font-size: 16px;
        font-weight: 500;
    }
    
    .header__gdpr {
        display: none;
    }
    
    .header__cta {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .header__toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header__cta {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .header__nav {
        padding: 20px;
        top: 60px; /* Menší výška headeru na mobilu */
        max-height: calc(100vh - 60px);
    }
}




/* === FOOTER === */
.footer {
    position: relative;
    width: 100%;
    background-color: #000;
    color: var(--mainWhite);
    padding-top: 80px;
    padding-bottom: 40px;
}

/* Vyduté rohy nahoře */
.footer__corners {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    pointer-events: none;
}

.footer__corner {
    position: absolute;
    top: -50px;
    width: 50px;
    height: 50px;
}

.footer__corner--left {
    left: 0;
    background: url('images/corner-left-black.svg') center no-repeat;
}

.footer__corner--right {
    right: 0;
    background: url('images/corner-right-black.svg') center no-repeat;
}

/* Container s max-width */
.footer__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hlavní content s flexem */
.footer__content {
    display: flex;
    gap: 60px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

/* Logo sekce */
.footer__logo {
    flex: 0 0 auto;
    min-width: 120px;
}

.footer__logo img {
    max-width: 100px;
    height: auto;
}

/* Menu kolonky */
.footer__menus {
    flex: 1;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer__menu-col {
    flex: 1;
    min-width: 150px;
}

.footer__menu-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 20px 0;
    color: var(--mainWhite);
}

.footer__nav {
    margin: 0;
}

.footer__menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__menu-list li {
    margin-bottom: 12px;
}

.footer__menu-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__menu-list a:hover {
    color: var(--mainWhite);
}

/* Bottom bar */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: 30px;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--mainWhite);
}

.footer__made a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__made a:hover {
    color: var(--mainWhite);
}

/* === RESPONZIVITA === */

/* Tablet */
@media (max-width: 1024px) {
    .footer__container {
        padding: 0 30px;
    }
    
    .footer__content {
        gap: 40px;
    }
    
    .footer__menus {
        gap: 30px;
    }
    
    .footer__menu-col {
        min-width: 130px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding-top: 60px;
    }
    
    .footer__container {
        padding: 0 20px;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer__logo {
        margin-bottom: 10px;
    }
    
    .footer__menus {
        gap: 20px;
    }
    
    .footer__menu-col {
        flex-basis: calc(50% - 20px);
    }
    
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer__legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* Obecné */

.vv-dokument-link {
    color: #035925 !important;
    text-decoration: underline !important;
    transition: 350ms all ease;
}

.vv-dokument-link:hover {
    color: #000 !important;
    text-decoration: underline !important;
}

.title-with-symbol h2:before {
    content: "";
    display: inline-block;
    width: 45px;
    height: 45px;
    margin: 0 15px 0 0;
    background: url('images/logo-250x250.png') left bottom no-repeat;
    background-size: contain;
}

h2 .green-text {
    color: #008b52;
    font-weight: 700;
}

.title-with-symbol h3:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 15px 0 0;
    background: url('images/logo-250x250.png') left bottom no-repeat;
    background-size: contain;
}

h3 .green-text {
    color: #008b52;
    font-weight: 700;
}

.preol-label p {
    display: inline-block;
    border-radius: 50px;
    padding: 3px 20px 5px 30px !important;
    font-size: 16px;
    border: 1px solid #EBEBEB;
    background: var(--mainWhite) url('images/button_icon.png') 12px 12px no-repeat;
}

.with-white-logo {
    padding-top: 50px !important;
    background: url('images/logo-250x250-white.png')  left top no-repeat;
    background-size: 35px;
}

.blured-white-col {
    color: var(--mainWhite)FFF;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--mainWhite);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 42px 20px;
}

/* HP biochar */
.listitems-logo {
    list-style-type: none !important;

}

.listitems-logo li {
    margin: 0 0 15px 0 !important;
    padding: 10px 0 10px 50px !important;
    font-size: 18px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    background: url('images/logo-250x250.png') left no-repeat;
    background-size: 35px;
}

.listitems-small-greylogo {
   list-style-type: none !important;
   margin: 20px 0 !important;
   padding: 0 !important;
}

.listitems-small-greylogo li {
    margin: 0 0 10px 0 !important;
    padding: 10px 0 10px 30px !important;
    font-size: 18px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    background: url('images/logo-250x250.png') left 20px no-repeat;
    background-size: 15px;
}


@media (max-width: 980px) {    
    .reverese-flex {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 25px 0;
    }

    .title-with-symbol h2:before {
        width: 30px;
        height: 30px;
    }
}


@media (min-width: 1441px) {    
    .listitems-logo.listitems-logo-right {
        text-align: right;
    }

    .listitems-logo.listitems-logo-right li {
        padding: 10px 50px 10px 0 !important;
        background: url('images/logo-250x250.png') right no-repeat;
        background-size: 35px;
    }
}

.big-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.big-tile > div > div {
    color: #fff !important;
    padding: 30px !important;
}

.big-tile-number {
    font-size: 56px !important;
    font-weight: 500 !important;
    padding: 30px !important;
    margin: 0 !important;
    min-height: 200px;
}

.big-tile-text {
    font-size: 20px !important;
    font-weight: 300 !important;
    padding: 10px 30px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    min-height: 260px;
    font-size: 16px !important;
    
}

.big-tile-text strong {
    display: block;
    font-size: 18px !important;
}

.big-tile-text a {
    display: inline-block;
    text-decoration: none !important;
    background: var(--mainGreen);
    padding: 15px 25px !important;
    margin-top: 10px !important;
    border-radius: 25px;
    transition: 350ms all ease;
}

.big-tile-text a:hover {
    background: var(--mainGreenOver);
}

.big-tile-text a span {
    color: #fff !important;
}


/* DAVIDOVO */
/*
.rounded {
    border-radius: 0 0 50px 50px!important;
}
.offtop {
    margin-top: -50px!important;
    padding-top: 100px!important;
    z-index: 2!important;
}

#main-header {
  border-radius: 0 0 50px 50px!important;
  z-index: 3!important;
}
#main-content {
  background-color: var(--mainWhite)!important;
  border-radius: 0 0 50px 50px!important;
  position: relative!important;
  z-index: 1!important;
}
#main-footer {
  margin-top: -50px!important;
  padding-top: 100px!important;
}
#footer-widgets h2 {
	color: var(--mainWhite)!important;
}
#footer-widgets .footer-widget li {
	padding-left: 0px!important;
}
#footer-widgets .footer-widget li::before {
	content: none!important;
}
#footer-widgets .fwidget {
	margin-bottom: 2rem!important;
	float: none!important;
}
*/

/* Subscriber */
.submit-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #0073e6; /* Příklad barvy pozadí */
    color: white; /* Barva textu */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #005bb5; /* Tmavší barva při hoveru */
}

/* Pro šipku vedle textu */
.submit-btn::after {
    content: " →"; /* Bílá šipka */
    color: white; /* Barva šipky */
    margin-left: 8px; /* Odstup mezi textem a šipkou */
}







/* slider */
/* === ROZCESTNÍK SLIDER === */

.rozcestnik-slider {
    position: relative;
    width: 100%;
    padding: 40px 0 20px 0;
}

.rozcestnik-slider__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.rozcestnik-slider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rozcestnik-slider__item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
}

/* Karta */
.rozcestnik-card {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 30px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rozcestnik-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: 350ms all ease;
}

.rozcestnik-card:hover .rozcestnik-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.rozcestnik-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px;
    color: var(--mainWhite);
}

/* hlavicka */
.rozcestnik-card__header {
    display: flex;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Číslo */
.rozcestnik-card__number {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    padding: 0 15px 15px 0;
    opacity: 0.9;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* Nadpis */
.rozcestnik-card__title {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 15px 0;
    line-height: 1.3;
    color: var(--mainWhite) !important;
}

/* Text */
.rozcestnik-card__text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 auto 0;
    opacity: 0.9;
    max-width: 300px;
}

/* Tlačítko */
.rozcestnik-card__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    color: var(--mainWhite);    
    background-color: var(--mainGreen);
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 20px;
}

.rozcestnik-card__button:hover {
    background-color: var(--mainGreenOver);
}

.rozcestnik-card__plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--mainGreen);
    background: var(--mainWhite);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
}

/* Samostatná navigace - šipky mimo slider */
.rozcestnik-navigation {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.rozcestnik-navigation__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--mainGreen);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--mainWhite);
}

.rozcestnik-navigation__btn:hover:not(:disabled) {
    background-color: var(--mainGreenOver);
    transform: scale(1.05);
}

.rozcestnik-navigation__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.rozcestnik-navigation__btn svg {
    width: 20px;
    height: 20px;
}

/* === RESPONZIVITA ROZCESTNÍK === */

/* Tablet */
@media (max-width: 1024px) {    
    .rozcestnik-slider__item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .rozcestnik-card {
        height: 420px;
    }
    
    .rozcestnik-card__content {
        padding: 35px;
    }
    
    .rozcestnik-card__number {
        font-size: 60px;
    }
    
    .rozcestnik-card__title {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    
    .rozcestnik-slider__item {
        flex: 0 0 100%;
    }
    
    .rozcestnik-card {
        height: 380px;
    }
    
    .rozcestnik-card__content {
        padding: 30px;
    }
    
    .rozcestnik-card__number {
        font-size: 52px;
    }
    
    .rozcestnik-card__title {
        font-size: 22px;
    }
    
    .rozcestnik-card__text {
        font-size: 14px;
    }
    
    .rozcestnik-card__button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .rozcestnik-navigation {
        justify-content: center;
    }

    .rozcestnik-navigation__btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .rozcestnik-card {
        height: 350px;
        border-radius: 20px;
    }
    
    .rozcestnik-card__content {
        padding: 25px;
    }
    
    .rozcestnik-card__number {
        font-size: 48px;
    }
    
    .rozcestnik-card__title {
        font-size: 20px;
    }
}

/* Newsletter */
/* === SUBSCRIBE SECTION === */
.subscribe {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container s max-width */
.subscribe__container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Formulář */
.subscribe__form {
    width: 100%;
}

.subscribe__input-wrapper {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 3px solid #fff;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

/* Email input */
.subscribe__input {
    flex: 1;
    border: none !important;
    padding: 18px 50px !important;
    font-size: 16px !important;
    color: #333 !important;
    outline: none !important;
    background: transparent !important;
}

.subscribe__input::placeholder {
    color: #999 !important;
}

/* Submit button */
.subscribe__button {
    background-color: var(--mainGreen);
    color: #fff;
    border: none;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
}

.subscribe__button:hover {
    background-color: var(--mainGreenOver);
}

.subscribe__arrow {

}

/* === RESPONZIVITA === */

/* Tablet */
@media (max-width: 1024px) {   
    .subscribe__input-wrapper {
        max-width: 550px;
    }
    
    .subscribe__input {
        padding: 16px 25px;
        font-size: 15px;
    }
    
    .subscribe__button {
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {    
    .subscribe__input-wrapper {
        flex-direction: column;
        border-radius: 25px;
        max-width: 100%;
    }
    
    .subscribe__input {
        padding: 15px 20px;
        font-size: 15px;
        text-align: center;
    }
    
    .subscribe__button {
        padding: 15px 20px;
        font-size: 15px;
        justify-content: center;
        border-radius: 0 0 25px 25px;
    }
}

@media (max-width: 480px) {   
    .subscribe__input {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .subscribe__button {
        padding: 14px 18px;
        font-size: 14px;
    }
}



/* === KARIÉRA - VÝPIS POZIC === */
.career-positions {
    width: 100%;
    padding: 40px 0;
}

.career-positions__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-positions__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: var(--mainGreen);
    border-radius: 10px;
    padding: 30px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hlavička položky */
.career-positions__header {
    flex-basis: calc(65% - 20px);
}

.career-positions__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.career-positions__subtitle {
    font-size: 15px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Meta informace */
.career-positions__meta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    flex-basis: calc(25% - 20px);
}

.career-positions__category {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.career-positions__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #fff;
}

.career-positions__location svg {
    flex-shrink: 0;
}

/* Footer s tlačítkem */
.career-positions__footer {
    flex-basis: calc(20% - 20px);
    text-align: right;
}

.career-positions__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 1);
    color: var(--mainGreen);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.career-positions__button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Prázdný stav */
.career-positions__empty {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
}

/* === KARIÉRA - DETAIL POZICE === */
.career-detail {
}

/* Hlavička detailu */
.career-detail__header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.career-detail__title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #000;
}

.career-detail__meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.career-detail__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f5f5f5;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.career-detail__badge--category {
    background-color: var(--mainGreen);
    color: #fff;
}

.career-detail__badge--location {
    background-color: #e8f5e9;
    color: var(--mainGreen);
}

.career-detail__badge svg {
    flex-shrink: 0;
}

/* Sekce obsahu */
.career-detail__section {
    margin-bottom: 40px;
}

.career-detail__section-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #000;
}

.career-detail__content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.career-detail__content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.career-detail__content li {
    margin-bottom: 10px;
}

.career-detail__content p {
    margin-bottom: 15px;
}

.career-detail__content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

/* CTA sekce */
.career-detail__cta {
    background: linear-gradient(135deg, var(--mainGreen) 0%, #008c44 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.career-detail__cta h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #fff;
}

.career-detail__cta p {
    font-size: 16px;
    margin: 0 0 25px 0;
    color: rgba(255, 255, 255, 0.95);
}

.career-detail__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: var(--mainGreen);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.career-detail__button:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    gap: 14px;
}

.career-detail__button svg {
    transition: transform 0.3s ease;
}

.career-detail__button:hover svg {
    transform: translateX(3px);
}

/* === RESPONZIVITA === */
@media (max-width: 1280px) {
    .career-positions__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-positions__header, .career-positions__meta, .career-positions__footer {
        flex-basis: 100%;
    }
}


/* kontaktni formular */
.secure-contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-message {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-size: 15px;
}

.form-message--success {
    background-color: #d4edda;
    color: var(--mainGreen);
    border: 1px solid #c3e6cb;
}

.form-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.form-message li {
    margin: 5px 0;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mainGreenOver);
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--mainGreen);
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
    background-color: var(--mainGreenOver);
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

.recaptcha-info {
    margin-top: 15px;
    text-align: center;
    color: #666;
}

.recaptcha-info a {
    color: var(--mainGreen);
    text-decoration: none;
}

.recaptcha-info a:hover {
    text-decoration: underline;
}

/* Honeypot */
input#website {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

/* reCAPTCHA badge styling */
.grecaptcha-badge {
    visibility: visible !important;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.grecaptcha-badge:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* rozbalovaci kontakty */
.contacts-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section {
    margin-bottom: 15px;
}

.contact-section-toggle {
    width: 100%;
    background: var(--mainGreen);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.contact-section-toggle:hover {
    background: var(--mainGreenOver);
}

.contact-section-title {
    flex: 1;
    text-align: left;
}

.contact-section-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-section-icon svg {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus {
    opacity: 0;
    transform: rotate(90deg);
}

.contact-section.active .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.contact-section.active .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.contact-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #fff;
    border-radius: 0 0 25px 25px;
}

.contact-section.active .contact-section-content {
    max-height: 2000px;
}

.contact-item {
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
}

.contact-item p {
    padding: 0 !important;
    color: #000 !important;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 30px;
}

.contact-name {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.contact-position {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
}

.contact-detail {
    margin: 5px 0;
}

.contact-detail strong {
    display: inline-block;
    min-width: 80px;
    font-weight: 500;
}

.contact-detail a {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #008c44;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section-toggle {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .contact-item {
        padding: 20px 20px;
    }
    
    .contact-name {
        font-size: 16px;
    }
    
    .contact-detail strong {
        display: block;
        margin-bottom: 3px;
    }
}