/********** Template CSS **********/
:root {
    --primary: #0298d2;
    --secondary: #0b2154;
    --light: #F2F2F2;
    --dark: #111111;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 20px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
	}
	
    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
	}
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
	}
	
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
	}
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
	}
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
	}
}

/*** Video Header ***/
.video-header {
    position: relative;
    background-color: #000;
    height: 70vh;
    min-height: 450px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 5px solid var(--primary);
}

.video-header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-header .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgba(11, 33, 84, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.video-header .container {
    position: relative;
    z-index: 2;
}

.video-header h1 {
    font-weight: 700;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.video-header h2 {
    font-weight: 400;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
    color: #fff !important;
}

.video-header h6 {
    letter-spacing: 3px;
    font-weight: 500;
    opacity: 0.9;
}

.video-header .btn-primary {
    border-radius: 50px;
    padding: 1.2rem 3.5rem !important;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(2, 152, 210, 0.4);
    transition: all 0.3s ease;
    animation: headerBtnPulse 3s infinite;
}

@keyframes headerBtnPulse {
    0% { transform: scale(1); box-shadow: 0 5px 20px rgba(2, 152, 210, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 8px 25px rgba(2, 152, 210, 0.6); }
    100% { transform: scale(1); box-shadow: 0 5px 20px rgba(2, 152, 210, 0.4); }
}

.video-header .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #fff !important;
    color: var(--primary) !important;
    box-shadow: 0 10px 30px rgba(2, 152, 210, 0.5);
}

@media (max-width: 768px) {
    .video-header {
        height: 80vh; /* More height for stacked content */
    }

    .video-header h1 {
        font-size: 2.2rem !important;
    }

    .video-header h2 {
        font-size: 1.2rem !important;
    }

    .video-header .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }

    .video-header .border-end {
        border: none !important;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .video-header .btn-primary {
        padding: 0.8rem 2rem !important;
        font-size: 0.9rem;
        width: auto;
        display: inline-block;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bck2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Service ***/
.service .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.service .nav .nav-link.active {
    background: var(--primary);
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../img/bck.jpg) center bottom no-repeat;
    background-size: cover;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Feature Cards Modernization ***/
.feature-card {
    background: #ffffff;
    padding: 3rem 2rem;
    height: 100%;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.feature-icon-box {
    width: 90px;
    height: 90px;
    background: rgba(2, 152, 210, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    font-size: 2.5rem;
}

.feature-card:hover .feature-icon-box {
    background: var(--primary);
    color: #ffffff;
    transform: rotateY(360deg);
}

.feature-icon-box i {
    color: inherit;
    transition: color 0.3s ease;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--secondary);
    font-family: 'Barlow', sans-serif;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Na veľkých monitoroch 5 blokov vedľa seba */
@media (min-width: 1400px) {
    .highlights-row>[class*="col-"] {
        flex: 0 0 auto;
        width: 20%;
    }

    .highlights-row .feature-card {
        padding: 2.5rem 1.25rem;
    }

    .highlights-row .feature-icon-box {
        width: 76px;
        height: 76px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .highlights-row .feature-card h5 {
        font-size: 1.1rem;
    }

    .highlights-row .feature-card p {
        font-size: 0.9rem;
    }
}

/*** Modern List Styles ***/
.modern-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.modern-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.3s ease;
}

.modern-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: rgba(2, 152, 210, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.modern-list li:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/*** Booking / Projects Section ***/
.booking {
    border-radius: 30px;
    padding: 4rem 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.booking-text {
    max-width: 900px;
    margin: 0 auto;
}

.booking h5 {
    letter-spacing: 2px;
}

/*** Details Block Modernization ***/
.details-block {
    padding-left: 2rem;
    border-left: 5px solid var(--primary);
    margin-bottom: 3rem;
    background: linear-gradient(to right, rgba(2, 152, 210, 0.03) 0%, transparent 100%);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0 20px 20px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(2, 152, 210, 0.1);
}

.info-content h6 {
    margin-bottom: 0.25rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

.info-content .info-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary);
}

/*** Business Section Style - Professional & Clean ***/
.business-section {
    padding: 80px 0;
    background: #f8fafc;
}

.business-img {
    height: 380px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.business-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    background: #f8fafc;
    padding: 1.5rem 2rem;
    border-radius: 15px;
}

.business-meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.business-meta-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.business-meta-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.15rem;
}

.business-meta-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}

/*** Projects Grid Style ***/
.projects-section-v2 {
    padding: 80px 0;
    background: #ffffff;
}

.project-card-v2 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.project-card-v2:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(2, 152, 210, 0.1);
    transform: translateY(-5px);
}

.project-icon-v2 {
    width: 45px;
    height: 45px;
    background: rgba(2, 152, 210, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.project-text-v2 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.6;
}

/* Clickable project card */
.project-card-clickable {
    cursor: pointer;
}

.project-card-clickable:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

.project-code-v2 {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.project-more-v2 {
    display: block;
    margin-top: 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--primary);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.project-more-v2 i {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.project-card-clickable:hover .project-more-v2 {
    opacity: 1;
}

.project-card-clickable:hover .project-more-v2 i {
    transform: translateX(4px);
}

/*** Project Lightbox ***/
.project-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 3000;
}

.project-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.project-modal-content {
    background: #f8fafc;
    width: 100%;
    max-width: 900px;
    border-radius: 32px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.25);
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.project-modal-overlay.active .project-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.project-modal-content::-webkit-scrollbar {
    width: 12px;
}

.project-modal-content::-webkit-scrollbar-track {
    background: transparent;
    margin: 32px 0;
}

.project-modal-content::-webkit-scrollbar-thumb {
    background: #0298d2;
    border-radius: 999px;
    border: 3px solid transparent;
    background-clip: content-box;
}

.project-modal-content::-webkit-scrollbar-thumb:hover {
    background: #017dae;
    background-clip: content-box;
    border: 3px solid transparent;
}

.project-modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    background: #f1f5f9;
    border: none;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-modal-close i {
    font-size: 1.4rem;
}

.project-modal-close:hover {
    background: #e2e8f0;
    color: #0298d2;
    transform: rotate(90deg) scale(1.1);
}

.project-modal-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    margin-top: 0.5rem;
}

.project-modal-code {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(2, 152, 210, 0.1);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.25rem;
}

.project-modal-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0b2154;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.project-modal-leader {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    padding-left: 0.75rem;
    border-left: 3px solid #0298d2;
    margin-bottom: 1.75rem;
}

.project-modal-body p {
    line-height: 1.8;
    color: #475569;
    font-size: 1.05rem;
    text-align: justify;
    margin-bottom: 1.25rem;
}

.project-modal-body p:last-child {
    margin-bottom: 0;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .project-modal-content {
        padding: 1.25rem;
        border-radius: 24px;
        max-height: 92vh;
    }

    .project-modal-card {
        padding: 1.5rem;
    }

    .project-modal-title {
        font-size: 1.4rem;
    }

    .project-modal-body p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

/*** Workshopy v registračnom formulári ***/
.workshopy-panel {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem;
}

.workshopy-panel h4 {
    margin-bottom: .75rem;
}

.workshopy-panel .workshop-blok > .fw-bold {
    color: #0b2154;
}

/* Jednotlivé možnosti na bielom, aby boli na sivom podklade čitateľné.
   Flex namiesto Bootstrapovho plávajúceho checkboxu – pri viacriadkovom
   názve inak text neostane zarovnaný s políčkom. */
.workshopy-panel .form-check {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .75rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.workshopy-panel .form-check:hover {
    border-color: var(--primary);
}

.workshopy-panel .form-check .form-check-input {
    float: none;
    flex-shrink: 0;
    margin: .2rem 0 0;
}

.workshopy-panel .form-check-label {
    flex: 1;
    cursor: pointer;
    line-height: 1.45;
}

.workshopy-panel .form-check-input:disabled ~ .form-check-label {
    cursor: not-allowed;
}

.workshopy-panel .form-check:has(.form-check-input:disabled) {
    background: #f8fafc;
    border-style: dashed;
}

@media (max-width: 575.98px) {
    .workshopy-panel {
        padding: 1.25rem;
    }
}

/*** Výber jedla – zdieľa vzhľad panela s workshopmi (.workshopy-panel),
     tu sú len rozdiely: nadpis dňa a pevne daná polievka. ***/
.jedla-panel .jedlo-den > .fw-bold {
    color: #0b2154;
}

.jedla-panel .jedlo-polievka {
    background: #ffffff;
    border: 1px dashed #e2e8f0;
    border-radius: 10px;
    padding: .75rem;
    line-height: 1.45;
}

/*** Nevyplnené pole, na ktoré prehliadač po odoslaní skočí. Zvýrazňujeme
     zámerne len toto jedno – bublina je pri ňom a farbiť celý formulár
     naraz je neprehľadné. ***/
.reg-form .chyba-pole {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}

.reg-form .form-check.chyba-pole,
.reg-form .chyba-obal {
    border-radius: 10px;
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}

.reg-form .chyba-obal .form-check-label {
    color: #b02a37;
}

.reg-form .chyba-text {
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    margin-top: .4rem;
    color: #b02a37;
    font-size: .875rem;
    line-height: 1.35;
}

.reg-form .chyba-text::before {
    content: "!";
    flex-shrink: 0;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.05rem;
    text-align: center;
}

/*** Sivé sekcie v hornej časti registračného formulára (účasť a poplatok,
     osobné údaje, bankové spojenie) – rovnaký podklad ako pri workshopoch,
     výbere obeda a súhlasoch, aby formulár pôsobil ako jeden celok. ***/
.form-panel {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
}

.form-panel h4 {
    margin-bottom: .75rem;
}

/* Posledný blok v stĺpci nemá odsadzovať spodok panela. */
.form-panel .col-12.pb-3:last-child {
    padding-bottom: 0 !important;
}

@media (max-width: 575.98px) {
    .form-panel {
        padding: 1.25rem;
    }
}

/*** Ochrana osobných údajov – rovnaký sivý panel ako pri workshopoch
     a výbere obeda; tlačidlo Registrovať zostáva pod ním. ***/
.suhlasy-panel {
    margin-bottom: 1.75rem;
}

.suhlasy-panel h4 {
    margin-bottom: 1rem;
}

.suhlasy-panel > div[style*="justify"] {
    margin-top: 1.25rem;
}

.suhlasy-panel p:last-child {
    margin-bottom: 0;
}

/*** Voľba príspevku v registračnom formulári (vystúpenie / článok).
     Ako súhlasy, ale text zarovnaný vľavo – zarovnanie do bloku by pri
     dvoch riadkoch roztiahlo medzery medzi slovami. ***/
/* Rovnaký odstup nad nadpisom ako majú bloky v ľavom stĺpci – tie ho
   dostávajú cez pb-3 predchádzajúceho bloku, tu ho musíme dodať sami. */
#div_prispevok_volba {
    margin-top: 1rem;
}

.prispevok-check {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    /* Bootstrap dáva .form-check odsadenie zľava pre plávajúce políčko –
       tu je políčko súčasťou flexu, takže odskok len posúva text. */
    padding-left: 0;
    padding-right: .5rem;
    margin-bottom: 0;
}

.prispevok-check + .prispevok-check {
    margin-top: .5rem;
}

.prispevok-check .form-check-input {
    float: none;
    flex-shrink: 0;
    margin: .15rem 0 0;
}

.prispevok-check .form-check-label {
    flex: 1;
    text-align: left;
    font-size: .95rem;
    line-height: 1.45;
    cursor: pointer;
}

/*** Súhlasy v registračnom formulári – rovnaký flex ako pri workshopoch,
     aby dlhý text neutiekol spod zaškrtávacieho políčka. ***/
.suhlas-check {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
}

.suhlas-check .form-check-input {
    float: none;
    flex-shrink: 0;
    margin: .25rem 0 0;
}

.suhlas-check .form-check-label {
    flex: 1;
    text-align: justify;
    cursor: pointer;
}

/*** Päť log v riadku – Bootstrap ponúka len 12 stĺpcov, takže pätinovú
     šírku si doplníme sami. Na tablete a mobile platí bežná mriežka. ***/
@media (min-width: 992px) {
    .col-lg-5th {
        flex: 0 0 auto;
        width: 20%;
    }
}

/*** Partneri – náhrada za logo, kým ho partner nedodá.
     Rovnaká výška ako obrázky, aby mriežka nepreskakovala. ***/
.partner-nazov {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: .75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #0b2154;
    font-weight: 700;
    line-height: 1.3;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/bck2.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
	cursor: pointer;
	padding: 18px 0px 18px 0px;
	text-align: left;	
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
	color: #17bed2;
	
}

/* Style the collapsible content. Note: hidden by default */
.suhlas {
	padding: 0px;  
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}


.text-fsev{
	color:#c42167 !important;
}
.bg-fsev{
	background-color:#c42167 !important;
}
.menolink{
	text-decoration:underline
}

/*** Output Cards ***/
.output-card {
    background-color: #ffffff !important;
    border: 2px solid var(--primary) !important;
    border-radius: 12px !important;
    min-height: 140px;
    transition: all 0.3s ease !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    text-decoration: none !important;
    padding: 1rem !important;
}

.output-card i,
.output-card span {
    text-align: center !important;
    width: 100%;
}

.output-card:hover {
    background-color: var(--primary) !important;
    color: #ffffff !important;
}

.output-card:hover i,
.output-card:hover span {
    color: #ffffff !important;
}

/*** Registration form ***/
.reg-form h4 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

/* Bigger, easier-to-tap radios and checkboxes */
.reg-form .form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-right: .4rem;
    vertical-align: -.2em;
    cursor: pointer;
}

/* Consent text reads better left-aligned, especially on narrow screens */
.reg-form .suhlas { text-align: left; }

/* Submission status message */
.statusMsg {
    max-width: 960px;
    margin: 1rem auto 0 auto;
    padding: .9rem 1.1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}
.statusMsg.succdiv { background: #e7f6ec; color: #1b6b35; border: 1px solid #b7e0c4; }
.statusMsg.errordiv { background: #fdecec; color: #a32020; border: 1px solid #f3bcbc; }

@media (max-width: 767.98px) {
    /* Smaller page header on phones */
    .page-header h1.display-3 { font-size: 2.2rem; }
    .page-header-inner { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }

    /* Tighter form spacing */
    .reg-form .container-xxl { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .reg-form .row { --bs-gutter-x: 1rem; }

    /* Full-width fields and button for comfortable tapping */
    .reg-form #zlavovykod { width: 100% !important; }
    .reg-form button[type="submit"] {
        display: block;
        width: 100%;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Never justify long text on small screens */
    .reg-form [style*="justify"] { text-align: left !important; }

    /* Vypnúť scroll-animácie (WOW.js / animate.css) na mobile — žiadne
       poskakovanie/objavovanie obsahu. Prvky sa zobrazia rovno na mieste.
       visibility:visible prebije WOW-om vložený inline visibility:hidden. */
    .wow,
    .animated {
        visibility: visible !important;
        animation: none !important;
        -webkit-animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Fix horizontálneho posunu na telefónoch:
   .row.g-5 má záporné okraje -24px/stranu, ale .container má padding len
   12px → riadok pretečie o ~12px a stránka sa dá posúvať doľava/doprava.
   Pod 576px je .container na plnú šírku, preto stačí zmenšiť horizontálny
   gutter (vertikálne rozostupy g-5 ostávajú). Desktop/tablet nedotknuté. */
@media (max-width: 575.98px) {
    .row.g-5,
    .row.gx-5 {
        --bs-gutter-x: 1.5rem;
    }
}
