/* =========================
   ZÁKLADNÍ STYLY
========================= */
body,
html {
    font-family: 'Poppins', Arial, sans-serif;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: ghostwhite;
}

/* =========================
   HEADER VIDEO SECTION
========================= */
.header-video-section {
    width: 100%;
    height: 55vh;
    min-height: 320px;
    max-height: 1000px;
    min-width: 100%;
    background: #181818;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.header-video-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 205%;
    min-width: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: #181818;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.main-title {
    position: relative;
    z-index: 3;
    color: ghostwhite;
    font-size: 80px;
    letter-spacing: 5px;
    text-align: center;
    text-shadow: 0 4px 32px #000a, 0 1px 0 #4a148c;
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 0 20px;
}

@media (max-width: 700px) {
    .header-video-section {
        height: 32vh;
        min-height: 200px;
        max-height: 100%;
    }

    .video-bg {
        object-fit: cover;
        width: 130vw;
        height: 400px;
        min-width: 100%;
        min-height: 200px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.85);
    }

    .main-title {
        font-size: 20px;
        padding: 0 6px;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 3;
    }

    .header-video-content {
        min-height: 160px;
        height: 32vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
}

/* =========================
   HLAVNÍ NAVIGACE
========================= */
.main-nav {
    width: 100vw;
    background: rgba(24, 24, 24, 0.9);
    box-shadow: 0 2px 16px rgba(58, 58, 179, 0.10);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    max-height: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: ghostwhite;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.08rem;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 22px;
    transition: background 0.35s, color 0.35s;
}

.nav-link:hover,
.nav-link:focus {
    background: linear-gradient(90deg, gold 0%, yellow 100%);
    color: black;
}

@media (max-width: 1000px) {
    .nav-link {
        font-size: 2rem;
        padding: 9px 16px;
    }
}


/* NAV MENU - RESPONSIVNÍ ÚPRAVA PRO TELEFONY */
@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 2%;
        align-items: center;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 2%;
        row-gap: 2;
        margin-top: 8px;
    }

    .nav-link {
        font-size: 20px;
        padding: 3%;
        margin: 2%;
        min-width: 90px;
        text-align: center;
    }

    .nav-links li {
        flex: 1 1 40%;
        margin-bottom: 4px;
    }
}

/* =========================
   INTRO SEKCE
========================= */
/* (Pokud máte speciální styly pro intro-section, vložte je zde) */


/* =========================
   ABOUT SEKCE
========================= */
.about-simple-section {
    width: 100%;
    height: auto;
    padding: 64px 0 64px 0;
    margin: 0;
    background: none;
}

.about-row {
    display: flex;
    width: 100vw;
    min-height: 420px;
}

.about-img-col {
    flex: 1 1 50%;
    min-width: 0;
    max-width: 50vw;
    overflow: hidden;
}

.about-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

.about-text-col {
    flex: 1 1 50%;
    background: #222;
    color: ghostwhite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    max-width: 50vw;
}

.about-title {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 18px;
    font-family: 'Poppins', Arial, sans-serif;
    color: ghostwhite;
    text-align: left;
    text-shadow: 0 4px 32px #000a, 0 1px 0 #4a148c;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .about-row {
        flex-direction: column;
    }

    .about-img-col,
    .about-text-col {
        max-width: 100vw;
        width: 100vw;
    }

    .about-text-col {
        padding: 32px 8vw 0 8vw;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 600px) {
    .about-text{
    padding-right: 10%;
}
}

/* =========================
   SHOWCASE SEKCE
========================= */
.showcase-section {
    position: relative;
    width: 100vw;
    min-height: 1000px;
    /* zvětšeno */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0 60px 0;
    /* větší horní i spodní mezera */
}

.showcase-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: ghostwhite;
    z-index: 1;
}

.showcase-divider {
    border: none;
    height: 4px;
    width: 100%;
    position: absolute;
    left: 0px;
    background: linear-gradient(90deg, gold 0%, yellow 100%);
    border-radius: 2px;
    margin: 16px 0;
}

.showcase-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    min-height: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
    justify-items: center;
    align-items: center;
    margin-bottom: 36px;
}

.showcase-photo img {
    width: 100%;
    max-width: 400px;
    /* zvětšeno */
    height: auto;
    /* zvětšeno */
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.28);
    background: #fff;
    transition: transform 0.3s;
}

.showcase-photo img:hover {
    transform: scale(1.04);
}

.showcase-btn-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.showcase-btn {
    display: inline-block;
    background: ghostwhite;
    color: #181818;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 16px 38px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
    transition: background 0.5s, color 0.2s;
    margin-top: 8px;
}

.showcase-btn:hover {
    background: #762786;
    color: ghostwhite;
}

h3.showcase-title {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #181818;
    font-family: 'Poppins', Arial, sans-serif;
    text-shadow: 10px 10px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 1100px) {
    .showcase-photo img {
        max-width: 260px;
        height: 160px;
    }

    .showcase-section {
        min-height: 400px;
        padding: 30px 0;
    }
}

@media (max-width: 900px) {
    .showcase-photo img {
        max-width: 180px;
        height: 100px;
    }

    .showcase-section {
        min-height: 300px;
        padding: 20px 0;
    }
}

@media (max-width: 700px) {
    .showcase-row {
        flex-direction: column;
        gap: 16px;
    }

    .showcase-photo img {
        width: 90vw;
        max-width: 320px;
        height: 120px;
    }

    .showcase-section {
        height: auto;
        min-height: 220px;
        padding: 30px 0;
    }
}

@media (max-width: 600px) {
    .showcase-section {
        min-height: 600px;
        /* větší výška sekce pro mobily */
        padding: 30px 0;
    }

    .showcase-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 18px;
        margin-bottom: 24px;
    }

    .showcase-photo img {
        width: 90vw;
        max-width: 340px;
        height: 180px;
        /* větší na výšku */
        object-fit: cover;
        border-radius: 14px;
        margin: 0 auto;
        display: block;
    }
}

/* === SHOWCASE SLIDER === */
.showcase-slider-section {
    position: relative;
    width: 100vw;
    overflow: hidden;
    background: #dadada;
    padding: 0;
    margin: 0;
    min-height: 320px;
    /* zvýšeno */
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-slider-wrapper {
    width: 100vw;
    overflow: hidden;
    position: relative;
    height: 320px;
    /* zvýšeno */
    display: flex;
    align-items: center;
}

.showcase-slider-track {
    display: flex;
    align-items: center;
    animation: showcase-slider-move 32s linear infinite;
    width: max-content;
}

.showcase-slide-img {
    width: 340px;
    /* zvětšeno */
    height: 240px;
    /* zvětšeno */
    object-fit: cover;
    border-radius: 0;
    margin: 0 22px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    background: ghostwhite;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.showcase-slide-img:hover {
    transform: scale(1.04);
    z-index: 2;
}

@keyframes showcase-slider-move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.showcase-slider-gradient-left,
.showcase-slider-gradient-right {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.showcase-slider-gradient-left {
    left: 0;
    background: linear-gradient(to right, #181818 80%, transparent 100%);
}

.showcase-slider-gradient-right {
    right: 0;
    background: linear-gradient(to left, #181818 80%, transparent 100%);
}

@media (max-width: 900px) {
    .showcase-slider-wrapper {
        height: 180px;
    }

    .showcase-slide-img {
        width: 180px;
        height: 110px;
        margin: 0 8px;
    }
}

@media (max-width: 600px) {
    .showcase-slider-section {
        min-height: 110px;
    }

    .showcase-slider-wrapper {
        height: 90px;
    }

    .showcase-slide_img {
        width: 90px;
        height: 60px;
        margin: 0 4px;
    }
}

/* =========================
   OFFER SEKCE
========================= */
.offer-main-section {
    position: relative;
    width: 100%;
    /* menší výška sekce */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 120%;
}

.offer-main-bg-img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.offer-main-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap:6%;
    justify-content: center;
    align-items: center;
    width: 100%;

}

.offer-main-box {
    position: relative;
    background: rgba(24, 24, 24, 0.6);
    border-radius: 18px;
    min-height: 980px;
    max-width: 500px;
    box-shadow:
        0 16px 64px 0 rgba(58, 58, 179, 0.30),
        0 6px 32px 0 rgba(118, 39, 134, 0.18),
        0 2px 8px 0 rgba(0, 0, 0, 0.18);
    color: ghostwhite;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s cubic-bezier(.4, 0, .2, 1);
}

.offer-main-box:hover,
.offer-main-box:focus-within {
    transform: scale(1.045);
    box-shadow:
        0 24px 80px 0 rgba(58, 58, 179, 0.38),
        0 10px 40px 0 rgba(118, 39, 134, 0.22),
        0 4px 16px 0 rgba(0, 0, 0, 0.22);
}

.offer-main-box h2 {
    margin-top: 0;
    margin: 5%;
    font-size: 30px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.offer-main-box p, ul {
    font-size: 15px;
    font-family: 'Poppins', Arial, sans-serif;
    color: ghostwhite;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .offer-main-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30%;
        /* mezera mezi boxy */
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .offer-main-box {
        margin-top: 0;
        /* odstraní negativní margin */
        margin-bottom: 18px;
        /* dodatečný gap pod boxem */
    }

    .offer-main-box {
        width: 96vw;
        min-width: 0;
        height: auto;
        /* přizpůsobí se obsahu */
        min-height: auto;
        /* zruší pevné min výšky */
        padding: 18px 14px;
        /* více prostoru uvnitř */
        margin-bottom: 18px;
        /* dodatečný gap pod boxem */
        box-sizing: border-box;
    }
    .offer-main-box h3{
        font-size: 20px;
    }
    .offer-main-bg-img{
        height: 60%;
    }
}
@media (min-width: 2000px) {
    .offer-main-box {
        width: 800px;
        height: 1000px;
        padding: 70px;
    }
    .offer-main-container {
        gap: 8%;
    }

    .offer-main-box h2 {
        font-size: 40px;
        margin: 4%;
    }

    .offer-main-box p, ul {
        font-size: 20px;
    }
}


/* =========================
   CONTACT SEKCE
========================= */
.contact-section {
    background: ghostwhite;
    padding: 60px 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    background: rgba(24, 24, 24, 0.92);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
    padding: 40px 32px 32px 32px;
    max-width: 600px;
    width: 50%;
    margin: auto;
    margin-top: 2%;
    z-index: 5;
    text-align: center;
}

.contact-container h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-container p {
    color: #e0e0e0;
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.contact-form input,
.contact-form select {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    background: #f5f5fa;
    color: #181818;
    outline: none;
    width: 100%;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 2px #762786;
}

.contact-form textarea {
    min-height: 110px;
    max-height: 220px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    background: #f5f5fa;
    color: #181818;
    outline: none;
    width: 95.5%;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    resize: none;
}

.contact-form button {
    background: linear-gradient(90deg, ghostwhite 0%, #e0e0e0 100%);
    color: #181818;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 0;
    border: none;
    border-radius: 30px;
    margin-top: 8px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
    transition: background 0.4s cubic-bezier(.4, 0, .2, 1), color 0.4s cubic-bezier(.4, 0, .2, 1), box-shadow 0.4s cubic-bezier(.4, 0, .2, 1);
}

.contact-form button:hover {
    background: #762786;
    color: ghostwhite;
    box-shadow: 0 4px 24px rgba(118, 39, 134, 0.18);
}

@media (max-width: 600px) {
    .contact-container {
        padding: 18px 6px 16px 6px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form button {
        font-size: 1rem;
        padding: 12px 0;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 92%;
    }
}

/* =========================
   FOOTER
========================= */
.footer-container {
    background: #dadada;
    padding: 0;
    color: ghostwhite;
    font-family: 'Poppins', Arial, sans-serif;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 20px 20px;
    gap: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    gap: 12px;
    letter-spacing: 1px;
    color: black;
}

.footer-brand i {
    font-size: 2rem;
    color: black;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1.08rem;
    color: black;
}

.footer-contact i {
    margin-right: 8px;
    color: black;
    font-size: 1.1rem;
    text-decoration: none;
}

.footer-contact a {
    color: black;
    text-decoration: none;
    transition: color 0.2s;
    padding: 2px 6px;
}

.footer-contact a:hover {
    color: ghostwhite;
    background: linear-gradient(90deg, gold 0%, yellow 100%);
    border-radius: 10px;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 18px;
    text-decoration: none;
}

.footer-social a {
    color: black;
    font-size: 1.5rem;
    border-radius: 50%;
    text-decoration: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: linear-gradient(90deg, gold 0%, yellow 100%);
    color: ghostwhite;
}

.footer-bottom {
    text-align: center;
    padding: 12px 0 10px 0;
    font-size: 0.98rem;
    background: ghostwhite;
    color: black;
    letter-spacing: 0.5px;
}

@media (max-width: 700px) {
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 28px 10px 12px 10px;
    }

    .footer-brand {
        font-size: 1.2rem;
    }

    .footer-social a {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }
}

/* =========================
   OSTATNÍ STYLY
========================= */
hr {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, gold 0%, yellow 100%);
    margin: 16px 0;
    border-radius: 5px;
    border: solid 0px;
}

/* Sjednocené a zpomalené animace tlačítek */
.showcase-btn,
.contact-form button {
    transition: background 0.4s cubic-bezier(.4, 0, .2, 1), color 0.4s cubic-bezier(.4, 0, .2, 1), box-shadow 0.4s cubic-bezier(.4, 0, .2, 1);
}

.showcase-btn:hover,
.contact-form button:hover {
    background: linear-gradient(90deg, gold 0%, yellow 100%);
    color: black;
    box-shadow: 0 4px 24px rgba(37, 37, 37, 0.18);
}

@keyframes levitate-shadow {
    0% {
        box-shadow:
            0 8px 32px 0 rgba(58, 58, 179, 2),
            0 1.5px 8px 0 rgba(118, 39, 134, 2),
            0 0.5px 1.5px 0 rgba(0, 0, 0, 2);

    }

    50% {
        box-shadow:
            0 24px 48px 0 rgba(58, 58, 179, 2),
            0 8px 24px 0 rgba(118, 39, 134, 2),
            0 2px 8px 0 rgba(0, 0, 0, 2);

    }

    100% {
        box-shadow:
            0 8px 32px 0 rgba(58, 58, 179, 2),
            0 1.5px 8px 0 rgba(118, 39, 134, 2),
            0 0.5px 1.5px 0 rgba(0, 0, 0, 2);

    }
}

/* =========================
   GALERIE SEKCE (NOVÉ)
========================= */
.nav-link-gallery-wrap {
    position: relative;
    display: inline-block;
}

.gallery-dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 110%;
    min-width: 140px;
    background: #181818;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    z-index: 999;
    flex-direction: column;
    padding: 8px 0;
    text-align: left;
}

.gallery-dropdown a {
    display: block;
    color: ghostwhite;
    padding: 10px 22px;
    text-decoration: none;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.gallery-dropdown a:hover {
    background: linear-gradient(90deg, gold 0%, yellow 100%);
    color: black;
}

.gallery-dropdown.show {
    display: flex;
}

@media (max-width: 700px) {
    .gallery-dropdown {
        left: 0;
        right: auto;
        min-width: 120px;
    }
}



/* CONTACT sekce - optimalizace pro telefony */
@media (max-width: 600px) {
    .contact-section {
        padding: 18px 0 12px 0;
        min-height: 60vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .contact-container {
        padding: 10px 3vw 10px 3vw;
        max-width: 99vw;
        width: 99vw;
        box-sizing: border-box;
        border-radius: 12px;
    }

    .contact-container h2 {
        font-size: 1.08rem;
        margin-bottom: 6px;
    }

    .contact-container p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 8px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        font-size: 0.97rem;
        box-sizing: border-box;
        padding: 10px 10px;
    }

    .contact-form textarea {
        min-height: 60px;
        max-height: 120px;
    }

    .contact-form button {
        font-size: 0.97rem;
        padding: 10px 0;
        width: 100%;
        margin-top: 6px;
    }
}

/* Větší prvky na 2K a 4K monitorech */
@media (min-width: 1800px) {
    .main-title {
        font-size: 5rem;
        padding: 0 40px;
    }

    .contact-container {
        max-width: 900px;
        padding: 60px 48px 48px 48px;
        font-size: 1.18rem;
    }

    .contact-container h2 {
        font-size: 2.6rem;
    }

    .contact-container p {
        font-size: 1.18rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 1.18rem;
        padding: 20px 20px;
    }

    .contact-form button {
        font-size: 1.18rem;
        padding: 20px 0;
    }
}

/* Extra pro 4K */
@media (min-width: 3000px) {
    .main-title {
        font-size: 7rem;
    }

    .contact-container {
        max-width: 1400px;
        padding: 100px 80px 80px 80px;
        font-size: 1.5rem;
    }

    .contact-container h2 {
        font-size: 3.5rem;
    }

    .contact-container p {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 1.5rem;
        padding: 32px 32px;
    }

    .contact-form button {
        font-size: 1.5rem;
        padding: 32px 0;
    }
}

/* Větší text a tlačítka v navigačním menu pro 2K monitory */
@media (min-width: 1800px) {
    .nav-link {
        font-size: 1.1rem;
        border-radius: 28px;
    }

    .nav-links {
        gap: 48px;
    }

    .nav-container {
        height: 100px;
        max-height: 120px;
        padding: 0 48px;
    }
}

/* Ještě větší pro 4K monitory */
@media (min-width: 3000px) {
    .nav-link {
        font-size: 1.5rem;
        border-radius: 40px;
    }

    .nav-links {
        gap: 80px;
    }

    .nav-container {
        height: 140px;
        max-height: 160px;
        padding: 0 80px;
    }
}


/* ABOUT sekce – úpravy pro 2K monitory */
@media (min-width: 1800px) {
    .about-simple-section {
        padding: 140px 0 140px 0;
    }

    .about-row {
        min-height: 700px;
    }

    .about-img-col {
        min-height: 700px;
    }

    .about-img-full {
        min-height: 700px;
        max-height: 900px;
    }

    .about-text-col {
        padding: 0 8vw 0 80px;
        font-size: 1.35rem;
    }

    .about-title {
        font-size: 3rem;
        margin-bottom: 32px;
    }

    .about-desc {
        font-size: 1.35rem;
        max-width: 700px;
    }
}

/* ABOUT sekce – úpravy pro 4K monitory */
@media (min-width: 3000px) {
    .about-simple-section {
        padding: 200px 0 200px 0;
    }

    .about-row {
        min-height: 1100px;
    }

    .about-img-col {
        min-height: 1100px;
    }

    .about-img-full {
        min-height: 1100px;
        max-height: 1400px;
    }

    .about-text-col {
        padding: 0 12vw 0 120px;
        font-size: 1.7rem;
    }

    .about-title {
        font-size: 4rem;
        margin-bottom: 48px;
    }

    .about-desc {
        font-size: 1.7rem;
        max-width: 1100px;
    }
}

/* Větší text v sekcích intro, a showcase pro 2K monitory */
@media (min-width: 1800px) {

    .showcase-section {
        font-size: 1.25rem;
    }

    h3.showcase-title {
        font-size: 2.6rem;
    }

    .showcase-btn {
        font-size: 1.35rem;
        padding: 24px 60px;
    }
}

/* Ještě větší text pro 4K monitory */
@media (min-width: 3000px) {

    .intro-section {
        font-size: 1.7rem;
    }

    .showcase-section {
        font-size: 1.5rem;
    }

    h3.showcase-title {
        font-size: 3.5rem;
    }

    .showcase-btn {
        font-size: 1.7rem;
        padding: 40px 100px;
    }
}

/* Showcase obrázky větší pro 2K monitory */
@media (min-width: 1800px) {
    .showcase-photo img {
        max-width: 600px;
        height: 340px;
        border-radius: 24px;
    }

    .showcase-grid {
        gap: 48px;
    }
}

/* Showcase obrázky ještě větší pro 4K monitory */
@media (min-width: 3000px) {
    .showcase-photo img {
        max-width: 1200px;
        height: 800px;
        border-radius: 40px;
    }

    .showcase-grid {
        gap: 80px;
    }
}

/* Hamburger menu pouze pro mobily */
@media (max-width: 700px) {
    .nav-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 200;
        margin-right: 8px;
    }
    .nav-hamburger span {
        display: block;
        width: 30px;
        height: 10px;
        margin: 4px;
        background: ghostwhite;
        border-radius: 2px;
        transition: 0.3s;
    }
    .nav-links {
        display: none;
    }
    a{text-decoration: none;
        color: black;
        font-size: 25px;
        margin:5%;
    }
    }

    .nav-sidebar {
        display: flex;
        position: fixed;
        text-decoration: none;
        opacity: 80%;
        color: black;
        top: 0%;
        text-align: left;
        right: -100vw;
        width: 80vw;
        max-width: 340px;
        height: 100%;
        background: #dadada;
        box-shadow: -2px 0 24px rgba(0,0,0,0.18);
        z-index: 9999;
        transition: right 0.3s cubic-bezier(.4, 0, .2, 1);
        flex-direction: column;
        padding: 32px 18px 18px 18px;
    }
    .nav-sidebar.open {
        left: 0;
    }
    /* ...další styly sidebaru... */
@media (min-width: 701px) {
/* Desktop hamburger skrytý */
.nav-hamburger {
    display: none;
}

/* Sidebar skrytý na desktopu */
.nav-sidebar {
    display: none;
}
}

@media (max-width: 820px) {
  .mobile-break {
    display: block;
    margin-left: 9%;
  }
}