/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f6f7f9;
    color: #222;
    line-height: 1.6;
}

/* KONTAJNER */
.container {
    max-width: 900px;
    margin: 32px auto 60px;
    /* horizontálne centrovanie kontajnera */
    padding: 0 20px;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 28px;
    position: relative;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1rem;
    color: #555;
}

/* MENU */
.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 15px 0;
    margin-bottom: 45px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    justify-content: flex-start;
    /* menu zarovnané viac vľavo */
    
}

.menu a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #0077cc;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #0077cc;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}


/* SEKCIE */
.section {
    margin-bottom: 45px;
}

.section h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.section p {
    font-size: 1rem;
    color: #333;
}

/* ŠPECIÁLNY POSUN ZOZNAMU NA ÚVODNEJ STRÁNKE */
.intro-list {
    margin-left: 25px;
    /* mierny posun doľava */
    padding-left: 0;
    /* odstráni defaultný padding */
}

/* CITÁTY */
.quote {
    background: white;
    padding: 25px 30px;
    border-left: 5px solid #0077cc;
    font-style: italic;
    margin-bottom: 50px;
}

/* RESPONSÍVNE */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .menu {
        justify-content: center;
        /* na mobile menu centrované */
        gap: 15px;
    }
}

/* FOTOGRAFIE */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.photo-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.photo-grid img:hover {
    transform: scale(1.03);
}

.photo-article {
    margin-bottom: 30px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.back-link {
    margin-top: 40px;
}

.menu a.active {
    font-weight: 600;
    border-bottom: 2px solid #000;
}

.instagram-embed {
    max-width: 540px;
    margin: 40px auto;
}


.video-thumbnail {
    position: relative;
    width: 300px;
    /* veľkosť náhľadu */
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-thumbnail video {
    width: 100%;
    height: auto;
    display: block;
}

.video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    /* klik ide cez tlačidlo na link */
}


/* Fotogaléria */
.photo-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Zarovnanie doľava */
}

.photo-grid img {
    width: 250px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
}

.photo-grid img:hover {
    transform: scale(1.05);
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    flex-direction: column;
}

#lightbox img.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

#lightbox .close,
#lightbox .prev,
#lightbox .next {
    position: absolute;
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

#lightbox .close {
    top: 20px;
    right: 30px;
}

#lightbox .prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox .next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}


.map-container {
    width: 100%;
    max-width: 800px;
    /* mapa nebude obrovská na desktop */
    margin: 0 auto;
    /* centrovanie */
    border-radius: 10px;
    /* jemne zaoblené rohy */
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    /* môžeš upraviť */
    border: 0;
}

.contact-map {
    width: 100%;
    max-width: 800px;
    /* šírka mapy na desktop */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto 20px;
    /* centrovanie a medzera pod mapou */
}

.contact-info {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}



.contact-section {
    text-align: center;
    padding: -10px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
     background: #ffffff;
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
 display: block;           /* aby <a> fungoval ako box */
    text-decoration: none;   /* zruší podčiarknutie */
    color: inherit;          /* zachová farby textu */
    cursor: pointer;

}

.contact-item p {
     margin: 0;
    font-size: 16px;
    font-style: normal;
    color: #555;
}

.contact-item span {
   display: block;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #111;
}

.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
 transform: translateY(-6px) scale(1.01);
}

/* klikateľné odkazy */
.contact-item a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #2563eb; /* jemná profesionálna modrá */
    text-decoration: underline;
}

.icon {
    font-size: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #f1f5f9;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-item:hover .icon {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}


.book {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.book img {
    width: 120px;
    height: auto;
    border-radius: 6px;
}

.book-info h3 {
    margin-top: 0;
}

.book-info p {
    margin: 10px 0;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 8px 14px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.btn:hover {
    background: #333;
}

.book-detail {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.book-cover {
    width: 200px;
    border-radius: 6px;
}

.book-text h2 {
    margin-top: 0;
}

.book-text p,
.book-text ul {
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.video-card {
    cursor: pointer;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-card img {
    width: 100%;
    border-radius: 6px;
}

/* LIGHTBOX */

#video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
}

#video-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    width: 90%;
    max-width: 900px;
    position: relative;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
}

#video-lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* ku rolling menu */

.about-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.about-list a:hover {
    text-decoration: underline;
}

/* ku rolling menu end  */


.section-cover {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 12px;
    margin: 1.5rem 0;
    display: block;
}

.section-cover {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.section-cover:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

html {
    scroll-behavior: smooth;
}




.about-list a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.about-list a.active {
    color: #000;
    border-bottom: 2px solid #000;
}



.newsletter-section {
    margin-top: 80px;
    padding: 40px 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 16px;
    font-size: 14px;
    width: 260px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 12px 24px;
    font-size: 14px;
    border: 1px solid #333;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
}

.newsletter-note {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

.newsletter-section {
    border-top: 1px solid #ddd;
}

.social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 20px;
    color: #000;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.6;
}

/* SOCIÁLNE SIETE VPRAVO V HEADERI */
.hero-social {
    position: absolute;
    right: 0;
    top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.hero-social a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-social .divider {
    opacity: 0.5;
}

.hero-social i {
    font-size: 14px;
}







.photo-gallery {
    padding: 40px 20px;
    text-align: center;
}


/* GRID fotiek */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 150px;
    gap: 10px;
}


/* Jednotlivé fotky */
.gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;/*doplnene*/
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* doplnene */


/* RESPONZÍVNE */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        grid-auto-rows: 100px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item {
        height: 120px;
    }
}



.text-justify {
    text-align: justify;
    /* rovnako ako Word "zarovnať do bloku" */
}


.highlight {
    color: black;
    font-weight: bold;
    font-size: 1.2em;
    /* 20% väčší ako základný text */
}

.highlight1 {
    color: black;
    font-weight: bold;
}

.lightbox-caption {
    margin-top: 10px;
    color: #eee;
    text-align: center;
    font-size: 16px;
    max-width: 80%;
    line-height: 1.4;
}


.section-cover1 {
    width: auto;
    /* nech sa šírka prispôsobí */
    max-width: 100%;
    /* nech sa nezväčší cez kontajner */
    height: auto;
    /* zachovanie pomeru strán */
    max-height: 360px;
    /* limit výšky */
    border-radius: 12px;
    display: block;
    /* nutné pre margin auto */
    margin: 1.5rem auto;
    /* top/bottom 1.5rem, horizontálne centrovanie */
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

/* Hover efekt */
.section-cover1:hover {
    transform: scale(1.05);
    /* mierne priblíženie */
    filter: brightness(1.05);
    /* jemné zosvetlenie */
}


.zdroj {
    text-align: center;
    /* centrovanie textu */
    font-size: 0.85rem;
    /* zmenšenie textu */
    color: #666;
    /* jemná tmavá farba, nie čierna */
    margin: 0rem 0 1rem 0;
    /* horný a spodný margin */
    line-height: 1.3;
    /* lepšia čitateľnosť */
    /
}



#formular {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

#formular h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

#formular input,
#formular textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

#formular input:focus,
#formular textarea:focus {
    border-color: #007bff;
    outline: none;
}

#formular button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#formular button:hover {
    background-color: #0056b3;
}

#formular #formStatus {
    text-align: center;
    margin-top: 10px;
    color: green;
}


/* pre Fotografie albumy */

.albums {
    margin: -10px 0;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.album-card {
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f3f3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.album-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.album-info {
    padding: 14px 16px;
}

.album-category {
    font-size: 12px;
    letter-spacing: 1px;
    color: #777;
}

.album-info h3 {
    margin: 6px 0 0;
    font-size: 20px;
}

/*  THE END pre Fotografei albumy */



/* pre jednotlivé albumy vo fotografiách----nahlad po rozkliknuti */

.gallery1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.gallery1-item {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.gallery1-item:hover {
    transform: scale(1.04);
}

/* *THE END  pre jednotlivé albumy vo fotografiách----nahlad po rozkliknuti */





.photo-section {
    width: 100%;
    background-image: url("images/banner.jpg");
    /* tvoja fotka */
    background-size: cover;
    background-position: center;
    margin: 80px 0;
    /* medzery od ostatných sekcií */
}

.photo-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 80px 0;
    color: #fff;
}

.photo-section h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.photo-section p {
    max-width: 600px;
    font-size: 18px;
    margin-bottom: 20px;
}




/* ZÁKLAD PRE KAŽDÝ BANNER */
.fullwidth-banner {
    width: 100vw;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;

    left: 50%;
    right: 50%;
    margin-left: -50vw;

    overflow: hidden;
}

/* Overlay pre všetky bannery */
.fullwidth-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
}

/* Obsah pre všetky bannery */
.fullwidth-banner .banner-content {
    max-width: 1100px;
    padding: 80px 20px;
    margin: 0 auto;
    color: #fff;
}

.fullwidth-banner .banner-content h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.fullwidth-banner .banner-content p {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 20px;
}

.fullwidth-banner .banner-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.fullwidth-banner .banner-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* default stav */
.fullwidth-banner .banner-content h2,
.fullwidth-banner .banner-content p,
.fullwidth-banner .banner-btn {
    opacity: 0;
    transform: translateY(30px);
}

/* keď je viditeľný */
.fullwidth-banner.is-visible .banner-content h2,
.fullwidth-banner.is-visible .banner-content p,
.fullwidth-banner.is-visible .banner-btn {
    animation-name: bannerFadeUp;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

/* individuálne časy */
.fullwidth-banner.is-visible .banner-content h2 {
    animation-duration: 0.8s;
}

.fullwidth-banner.is-visible .banner-content p {
    animation-duration: 1s;
    animation-delay: 0.2s;
}

.fullwidth-banner.is-visible .banner-btn {
    animation-duration: 1.2s;
    animation-delay: 0.4s;
}

/* keď banner zmizne z view – zrušíme animáciu, aby sa dala znova prehrať */
.fullwidth-banner:not(.is-visible) .banner-content h2,
.fullwidth-banner:not(.is-visible) .banner-content p,
.fullwidth-banner:not(.is-visible) .banner-btn {
    animation: none;
}




.banner-img-1 {
    background-image: url("images/banner1.jpg");
}

.banner-img-2 {
    background-image: url("images/dt/kilter.jpg");
}

.banner-img-3 {
    background-image: url("images/ITsport.jpg");
}

.banner-img-4 {
    background-image: url("images/wdbanner.jpg");
    background-position: left;
}


.banner-gradient {
    background-image: linear-gradient(135deg, #0f172a, #2563eb);

}

.banner-gradient-soft {
    background-image: linear-gradient(135deg, #0b1220, #1e40af);
}

/* uprava bannerov bey obrazka .. upratanie textu na strany  */
.banner-align-left .banner-overlay {
    justify-content: flex-start;
}

.banner-align-left .banner-content {
    margin-left: 80px;
}

.banner-align-right .banner-overlay {
    justify-content: flex-end;
}

.banner-align-right .banner-content {
    margin-right: 80px;
}

.banner-align-center .banner-overlay {
    justify-content: center;
}

/*  THE END uprava bannerov bey obrazka .. upratanie textu na strany  */

/*vypnutie pretekania doprava*/
html,
body {
    overflow-x: hidden;
}


/* video banner */
.fullwidth-banner {
    width: 100vw;
    aspect-ratio: 16 / 9;
    min-height: 65vh;
    max-height: 90vh;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
}

.banner-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* dôležité: vyplní celý banner */
    transform: scale(1.8);
    object-position: 50% 50%;
    background: transparent;
    /* keby niekde presvitalo pozadie */
}

.video-crop-vertical .banner-video-bg {
    transform: scale(1.00);
    /* výraznejší crop +  */
    object-position: 60% 70%;
    /* často je dôležitý vrch (tvár, objekt) */
}

/* the end video banner */


/* GRID zostáva pôvodný, obrázky ako hore */
.flip-card-enabled .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 150px;
    gap: 10px;
   
}

.flip-card-enabled .gallery-item-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;/*doplnene*/
}

/* samotný obrázok – čierny, rovnaký ako predtým */
.flip-card-enabled .gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;/*doplnene*/
}

/* jemný hover efekt */
.flip-card-enabled .gallery-item-wrapper:hover .gallery-item {
    transform: scale(1.05);
}

/* overlay – čierny s jemnou priehľadnosťou */
.flip-card-enabled .gallery-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* jemná čierna */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-align: center;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none; /* klik ide na obrázok – Lightbox */
    transition: opacity 0.3s ease;
}

/* zobrazenie popisu pri hover */
.flip-card-enabled .gallery-item-wrapper:hover .gallery-caption {
    opacity: 1;
}


#lang-switcher {
         width: 32px;   /* šírka vlajky */
    height: 32px;  /* výška vlajky */
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

#lang-switcher img {
      width: 32px;   /* šírka vlajky */
    height: 32px;  /* výška vlajky */
    display: block;
    cursor: pointer;
    border-radius: 4px;
    /*box-shadow: 0 0 4px rgba(0,0,0,0.3);*/
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#lang-switcher img:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}


/* pre video z instagramu */
.instagram-media {
  margin-left: auto !important;
  margin-right: auto !important;
}


/*vyhľadávanie lupa*/
.search-container {
  display: flex;
  align-items: center;
  margin-left: auto; /* posunie doprava v menu */
  position: relative;
}

.search-toggle {
  background: none;
  border: none;
  color: #9cff00; /* uprav podľa farby webu */
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
}

.search-form {
  overflow: hidden;
  max-width: 0;
  transition: max-width 0.3s ease;
  white-space: nowrap;
}

.search-form input {
  padding: 6px 10px;
  border-radius: 20px;
  border: none;
  outline: none;
  margin-left: 8px;
}

/* keď je otvorené */
.search-container.open .search-form {
  max-width: 180px;
}
/*vyhľadávanie lupa THE END */
