/* ==========================================
   IMPORTS
   ========================================== */
@import url(https://csstools.github.io/normalize.css/);

/* ==========================================
   CSS PREMENNÉ (CUSTOM PROPERTIES)
   ========================================== */

:root {
    /* Hlavné farby */
    --primary-blue: #1E2C75;
    --secondary-blue: #24358C;
    --light-blue: #4F8DBC;
    --accent-blue: #639ECB;
    --hover-blue: #8BB4E0;
    
    /* Zelené farby */
    --accent-green: #3AE2B7;
    
    /* Základné farby */
    --white: #FFF;
    --black: #000;
    --gray: #666;
    --light-gray: #f8f9fa;
    --dark-gray: #495057;
    --medium-gray: #555;
    --border-gray: #ddd;
    --shadow-gray: #D9D9D9;
    
    /* Background farby */
    --bg-light: #f8f9fa;
    --bg-dark: #2F3575;
    --bg-gradient-start: #18235E;
    --bg-gradient-end: #24358C;
    
    /* Text farby */
    --text-white: #FFF;
    --text-dark: #2F3575;
    --text-gray: #666;
    --text-light-gray: #eee;
    --text-muted: #666;
}

/* ==========================================
   ZÁKLADNÉ ŠTÝLY
   ========================================== */

body {
    margin: 0 auto;
    font-family: "Inter", sans-serif;
}

a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
}

a:hover {
    color: var(--hover-blue);
}

/* ==========================================
   HEADER A NAVIGÁCIA
   ========================================== */

header {
    background-color: transparent;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner > a {
    background-color: var(--primary-blue);
    padding: 10px 30px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    height: 70px;
}

nav {
    background-color: var(--primary-blue);
    padding: 10px 30px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    height: 70px;
}

.logo {
    height: 50px;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.logo:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.header-inner a img {
    transition: all 0.3s ease;
}

.header-inner a:hover img {
    filter: brightness(1.2);
    transform: scale(1.05);
}

nav {
    display: flex;
}

.nav-list {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.nav-list li {
    position: relative;
}

.nav-list li:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    display: block;
    transition: all 0.5s ease;
    bottom: -1.3rem;
    left: 0;
}

.nav-list li:hover::after {
    width: 100%;
    height: 1px;
    background-color: var(--accent-blue);
}

.nav-list li:has(#domov):after {
    display: none !important;
}

.nav-list li:has(#domov):hover::after {
    display: none !important;
}

#domov {
    color: var(--light-blue);
    text-decoration: underline;
}

#domov:hover {
    color: var(--accent-blue);
}


.menu-icon {
    display: none;
}

.menu-icon i {
    color: var(--accent-blue);
    font-size: 30px;
}

.lang-menu {
    width: 50px;
    text-align: right;
    font-weight: bold;
    margin-top: 20px;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
}

.lang-menu .selected-lang {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 10px; 
    line-height: 2;
    cursor: pointer;
}

.lang-menu .selected-lang:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/flags/slovakia_flag-png-icon-32.png');
}

.lang-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    background-color: var(--white);
    position: absolute;
    top: 20px;
    right: 0px;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.lang-menu ul li a {
    text-decoration: none;
    width: 100%;
    padding: 5px 10px;
    display: block;
    color: var(--accent-blue);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-menu ul li:hover {
    background-color: var(--bg-light);
}

.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu:hover ul {
    display: block;
}

.lang-menu.open ul {
    display: block;
}

.lang-menu ul li:first-child:hover {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.lang-menu ul li:last-child:hover {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.lang-arrow {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-left: 2px solid var(--accent-blue);
    border-bottom: 2px solid var(--accent-blue);
    transform: rotate(-45deg); 
    margin-top: -14px;
}

.de:before {
    background-image: url('../images/flags/germany_flag-png-icon-32.png');
}

.en:before {
    background-image: url('../images/flags/united-kingdom_flag-png-icon-32.png');
}

.sk:before {
    background-image: url('../images/flags/slovakia_flag-png-icon-32.png');
}

.lang-menu .selected-lang.sk:before {
    background-image: url('../images/flags/slovakia_flag-png-icon-32.png') !important;
    content: '' !important;
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

.lang-menu .selected-lang.en:before {
    background-image: url('../images/flags/united-kingdom_flag-png-icon-32.png') !important;
}

.lang-menu .selected-lang.de:before {
    background-image: url('../images/flags/germany_flag-png-icon-32.png') !important;
}

/* ==========================================
   HLAVNÝ KONTAJNER
   ========================================== */

.container {
    padding-left: 15%;
    padding-right: 15%;
    box-sizing: border-box;
    width: 100%;
    text-shadow: 2px 2px 2px gray;
}

/* ==========================================
   HERO SEKCIA
   ========================================== */

.hero-sekcia {
    background-image: url("../images/uvodna-fotka.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 600px; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -90px;
    padding-top: 70px;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.hero-sekcia::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid var(--accent-blue);
    animation: bounce 2s infinite;
    z-index: 2;
}

.hero-sekcia .container {
    text-align: left;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    padding-left: 55%;
    padding-top: 7%;
}

.hero-sekcia h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 25px;
}

.hero-sekcia h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Animácia pre šípku */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================
   TLAČIDLÁ
   ========================================== */

.buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-shadow: none;
    transform: scale(1);
}

.btn:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--hover-blue));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 158, 203, 0.3);
    color: var(--text-white);
}

.btn:active {
    transform: scale(0.95) translateY(0px);
    background: linear-gradient(135deg, var(--hover-blue), var(--accent-blue));
    transition: all 0.1s ease;
}

.btn-galeria {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-shadow: none;
    margin-top: 15px;
    display: inline-block;
    transform: scale(1);
}

.btn-galeria:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--hover-blue));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 158, 203, 0.3);
    color: var(--text-white);
}

.btn-galeria:active {
    transform: scale(0.95) translateY(0px);
    background: linear-gradient(135deg, var(--hover-blue), var(--accent-blue));
    transition: all 0.1s ease;
}

/* ==========================================
   SLUŽBY SEKCIA
   ========================================== */

.sluzby-obsah {
    margin-top: 100px;
    text-align: center;
}

.sluzby-obsah h1 {
    font-size: 3rem;
}

.sluzby-obsah h4 {
    padding-bottom: 20px;
    font-weight: none;
}

.flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   
    align-items: flex-start;
    gap: 100px;                 
    max-width: 1200px;
    margin: 0 auto;
}
.kontakt {
    background-color: var(--accent-blue);
}
.preprava-karta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 390px;
    margin-bottom: 20px;
    background-color: var(--shadow-gray);
    border-radius: 50px;
    padding: 60px;
    min-height: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.preprava-karta h4 {
    margin: 0;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: left;
    font-size: 1.32rem;
}

.preprava-obrazok {
    background-image: url("../images/karta.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.preprava-obrazok img {
    display: none;
}

.o-nas-obrazok {
   background-image: url("../images/karta-3.jpg");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
}

.objednajte-obrazok {
   background-image: url("../images/karta-2.jpeg");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
}

/* ==========================================
   O NÁS SEKCIA
   ========================================== */



/* ==========================================
   O NÁS SEKCIA
   ========================================== */

.o-nas-sekcia {
    background-color: var(--white);
    min-height: 500px;
    color: var(--text-white);
    padding: 80px 0;
}

.o-nas-obsah {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15%;
}

.o-nas-karta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 390px;
    margin-bottom: 20px;
    border-radius: 50px;
    padding: 60px;
    min-height: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.o-nas-text {
    background-color: var(--primary-blue);
    color: var(--text-white);
}

.o-nas-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.o-nas-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.o-nas-obrazok {
   background-image: url("../images/karta-3.jpg");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
}

/* ==========================================
   OBJEDNAJTE SEKCIA
   ========================================== */

.objednajte-sekcia {
    background-color: var(--secondary-blue);
    min-height: 500px;
    color: var(--text-white);
    margin-top: 40px;
    padding: 80px 0;
}

.objednajte-obsah {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15%;
}

.objednajte-karta {
    background-color: var(--primary-blue);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 390px;
    margin-bottom: 20px;
    border-radius: 50px;
    padding: 60px;
    min-height: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.objednajte-text {
    color: white;
}

.objednajte-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.objednajte-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.objednajte-obrazok {
   background-image: url("../images/karta-2.jpeg");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
}

/* ==========================================
   KONTAKT SEKCIA
   ========================================== */

.kontakt-sekcia {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.kontakt-sekcia * {
    text-shadow: none !important;
}

.kontakt-sekcia h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
}

.kontakt-obsah {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.kontakt-form {
    flex: 2;
    min-width: 300px;
}

.kontakt-formular {
    background: var(--text-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.rychly-kontakt {
    flex: 1;
    min-width: 300px;
}

.rychly-kontakt h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.kontakt-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.kontakt-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--text-light-gray);
}

.kontakt-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.kontakt-item i {
    color: var(--hover-blue);
    font-size: 1.2rem;
    width: 20px;
}

.kontakt-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontakt-item a:hover {
    color: var(--light-blue);
}

.kontakt-item span {
    color: var(--text-gray);
}

/* Kontakt mapa */
.kontakt-map {
    flex: 1;
    min-width: 300px;
}

.kontakt-map h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ==========================================
   TÍM SEKCIA
   ========================================== */

.tim-sekcia {
    padding: 80px 0;
    background: var(--text-white);
    text-align: center;
}

.tim-sekcia h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.tim-sekcia p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.tim-clenovia {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.tim-clen {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 250px;
}

.tim-clen:hover {
    transform: translateY(-5px);
}

.tim-clen img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.tim-clen h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tim-clen .pozicia {
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.tim-clen .email,
.tim-clen .telefon {
    color: var(--text-gray);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* ==========================================
   FAKTURAČNÉ ÚDAJE SEKCIA
   ========================================== */

.fakturacne-udaje {
    padding: 80px 0;
    background: var(--secondary-blue);
    color: var(--text-white);
    text-align: center;
}

.fakturacne-udaje * {
    text-shadow: none !important;
}

.fakturacne-udaje h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.udaje-obsah {
    max-width: 600px;
    margin: 0 auto;
}

.udaje-obsah p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.udaje-obsah strong {
    color: var(--accent-blue);
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    height: 50px;
    background-color: var(--secondary-blue);
}
footer p {
    margin-top: 0;
    color: var(--text-white);
    text-shadow: none;
}

/* ==========================================
   MEDIA QUERIES - VEĽKÉ OBRAZOVKY
   ========================================== */

@media (min-width: 1700px) {
    .hero-sekcia {
        min-height: 700px;
    }
}

@media (min-width: 2000px) {
    .hero-sekcia {
        min-height: 800px;
    }
}

@media (min-width: 2300px) {
    .hero-sekcia {
        min-height: 900px;
    }
}

@media (min-width: 2560px) {
    .hero-sekcia {
        min-height: 900px;
    }
    
    .hero-sekcia h2 {
        font-size: 4rem;
    }
    
    .hero-sekcia h4 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
}

@media (min-width: 2760px) {
    .hero-sekcia {
        min-height: 1000px;
    }
}

@media (min-width: 3100px) {
    .hero-sekcia {
        min-height: 1200px;
    }
}

@media (min-width: 3400px) {
    .hero-sekcia {
        min-height: 1300px;
    }
}

@media (min-width: 3800px) {
    .hero-sekcia {
        min-height: 1500px;
    }
}

/* ==========================================
   MEDIA QUERIES - STREDNÉ OBRAZOVKY
   ========================================== */

@media (max-width: 1250px) {
    .logo {
        height: 35px;
        padding-left: 5px;
    }
    
    .header-inner img {
        width: 300px !important;
        height: auto !important;
    }
}

@media (max-width: 1118px) {
    .logo {
        height: 35px;
        padding-left: 5px;
    }
    
    .header-inner img {
        width: 200px !important;
        height: auto !important;
    }
}

@media (max-width: 1000px) {
    .logo {
        height: 35px;
        padding-left: 5px;
    }
    
    .header-inner img {
        width: 190px !important;
        height: auto !important;
    }
}

/* ==========================================
   MEDIA QUERIES - TABLET
   ========================================== */

@media (max-width: 903px) {
    .nav-list {
        font-size: 14px;
    }
    
    .lang-menu {
        margin-top: 15px;
    }
    
    .hero-sekcia h2 {
        font-size: 2rem;
    }
    
    .hero-sekcia h4 {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 847px) {
    .nav-list {
        font-size: 12px;
    }
    
    .lang-menu {
        margin-top: 12px;
    }
    
    .hero-sekcia h2 {
        font-size: 1.8rem;
    }
    
    .hero-sekcia h4 {
        font-size: 0.8rem;
    }
    
    .buttons {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .btn {
        padding: 20px 20px;
        font-size: 1rem;
    }
}

/* ==========================================
   MEDIA QUERIES - MOBILNÉ ZARIADENIA
   ========================================== */

@media (max-width: 800px) {
    .header-inner {
        padding: 0 10px;
        gap: 10px;
    }
    
    .header-inner > a {
        padding: 5px 15px;
        height: 60px;
    }
    
    nav {
        padding: 5px 15px;
        height: 60px;
        border-radius: 0 0 20px 20px;
    }
    
    nav ul {
        z-index: 2;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: var(--bg-dark);
        gap: 0;
        overflow: hidden;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
        border-radius: 0 0 20px 20px;
    }
    
    nav ul li {
        padding: 20px;
        padding-top: 10px;
    }
    
    .nav-list li:after {
        display: none !important;
    }
    
    .nav-list li:hover::after {
        display: none !important;
    }
    
    .menu-icon {
        display: block;
    }
    
    #menuList {
        transition: all 0.5s;
    }
    
    /* Jazykové menu */
    .lang-menu ul {
        top: 18px;
        width: 120px;
    }
    
    .lang-menu ul li a {
        font-size: 0 !important;
        padding: 12px 10px !important;
        position: relative;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .lang-menu ul li a::before {
        display: inline-block !important;
        width: 20px !important;
        height: 20px !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        vertical-align: middle !important;
        margin: 0 !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    .lang-menu ul li a.de::after {
        content: 'DE' !important;
        font-size: 0.9rem !important;
        color: var(--accent-blue);
        position: relative;
    }
    
    .lang-menu ul li a.en::after {
        content: 'EN' !important;
        font-size: 0.9rem !important;
        color: var(--accent-blue);
        position: relative;
    }
    
    .lang-menu ul li a.sk::after {
        content: 'SK' !important;
        font-size: 0.9rem !important;
        color: var(--accent-blue);
        position: relative;
    }
    
    /* Hero sekcia */
    .hero-sekcia h4 {
        margin-bottom: none;
    }
    
    .hero-sekcia .container {
        padding-left: 35%;
        padding-top: 10%;
    }
    
    /* Služby sekcia */
    .flexbox {
        gap: 50px;
    }
    
    .preprava-karta {
        padding: 40px;
        width: 320px;
    }
    
    .preprava-obrazok,
    .o-nas-obrazok,
    .objednajte-obrazok {
        background-size: cover;
        background-position: center;
        min-height: 250px;
    }
    
    /* O nás sekcia */
    .o-nas-karta {
        padding: 40px;
        width: 320px;
    }
    
    /* Objednajte sekcia */
    .objednajte-karta {
        padding: 40px;
        width: 320px;
    }
    
    /* Kontakt sekcia */
    .kontakt-obsah {
        flex-direction: column;
        gap: 30px;
    }
    
    .form-fields {
        grid-template-columns: 1fr;
    }
    
    .tim-clenovia {
        gap: 30px;
    }
}

/* ==========================================
   MEDIA QUERIES - EXTRA MALÉ ZARIADENIA
   ========================================== */

@media (max-width: 550px) {
    /* Navigácia */
    nav ul {
        z-index: 2;
        position: absolute;
        top: 105px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: var(--bg-dark);
        gap: 0;
        overflow: hidden;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
    }
    
    nav ul li {
        padding: 20px;
        padding-top: 0;
    }
    
    .nav-list li:after {
        display: none !important;
    }
    
    .nav-list li:hover::after {
        display: none !important;
    }
    
    .menu-icon {
        display: block;
    }
    
    #menuList {
        transition: all 0.5s;
    }
    
    /* Jazykové menu */
    .lang-menu {
        width: 50px;
    }
    
    .lang-menu .selected-lang {
        justify-content: flex-end;
        gap: 10px;
    }
    
    .lang-menu ul {
        top: 18px;
        width: 120px;
    }
    
    .lang-menu ul li a {
        font-size: 0 !important;
        padding: 12px 10px !important;
        position: relative;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .lang-menu ul li a::before {
        display: inline-block !important;
        width: 20px !important;
        height: 20px !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        vertical-align: middle !important;
        margin: 0 !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    .lang-menu ul li a.de::after {
        content: 'DE' !important;
        font-size: 0.85rem !important;
        color: var(--accent-blue);
        position: relative;
    }
    
    .lang-menu ul li a.en::after {
        content: 'EN' !important;
        font-size: 0.85rem !important;
        color: var(--accent-blue);
        position: relative;
    }
    
    .lang-menu ul li a.sk::after {
        content: 'SK' !important;
        font-size: 0.85rem !important;
        color: var(--accent-blue);
        position: relative;
    }
    
    .lang-arrow {
        display: none;
    }
    
    /* Hero sekcia */
    .hero-sekcia .container {
        padding-left: 25%;
    }
    
    /* Služby sekcia */
    .flexbox {
        gap: 30px;
    }
    
    .preprava-karta {
        padding: 30px;
        width: 280px;
    }
    
    .preprava-obrazok,
    .o-nas-obrazok,
    .objednajte-obrazok {
        background-size: cover;
        background-position: center;
        min-height: 200px;
    }
    
    /* O nás sekcia */
    .o-nas-karta {
        padding: 30px;
        width: 280px;
    }
    
    /* Objednajte sekcia */
    .objednajte-karta {
        padding: 30px;
        width: 280px;
    }
    
    /* Kontakt sekcia */
    .kontakt-sekcia {
        padding: 60px 0;
    }
    
    .kontakt-sekcia h1 {
        font-size: 2.2rem;
    }
    
    .kontakt-formular {
        padding: 25px;
    }
    
    .tim-sekcia {
        padding: 60px 0;
    }
    
    .tim-sekcia h2 {
        font-size: 2rem;
    }
    
    .fakturacne-udaje {
        padding: 60px 0;
    }
    
    .fakturacne-udaje h2 {
        font-size: 2rem;
    }
}

/* ==========================================
   DOKUMENTY - HERO SEKCIA
   ========================================== */

.dokumenty-hero {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 50%, var(--secondary-blue) 100%);
    min-height: 400px;
    padding: 80px 0;
}

.dokumenty-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.dokumenty-hero .hero-text {
    flex: 1;
    color: white;
}

.dokumenty-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dokumenty-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.dokumenty-hero .hero-image {
    flex: 1;
    text-align: center;
}

.dokumenty-hero .hero-image img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* ==========================================
   DOKUMENTY - HLAVNÁ SEKCIA
   ========================================== */

.dokumenty-sekcia {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.dokumenty-sekcia * {
    text-shadow: none !important;
}

.dokumenty-sekcia h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary-blue);
}

.dokumenty-obsah {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.dokumenty-list {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.dokument-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.dokument-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dokument-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dokument-icon i {
    font-size: 2rem;
    color: white;
}

.dokument-info {
    flex: 1;
}

.dokument-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.dokument-info p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-download {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--secondary-blue));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 141, 188, 0.3);
    color: var(--text-white);
}

.btn-download:active {
    transform: scale(0.95) translateY(0px);
    transition: all 0.1s ease;
}

.btn-download i {
    font-size: 1rem;
}

.dokumenty-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ==========================================
   DOKUMENTY - INFO BOXY
   ========================================== */

.info-box,
.kontakt-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-box h3,
.kontakt-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2F3575;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.info-item i {
    width: 20px;
    height: 20px;
    color: var(--accent-blue);
    font-size: 1.2rem;
    text-align: center;
}

.info-item span {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.4;
}

.kontakt-box p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, #18235E, #24358C);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #24358C, #4F8DBC);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 53, 94, 0.3);
    color: white;
}

.btn-primary:active {
    transform: scale(0.95) translateY(0px);
    transition: all 0.1s ease;
}

/* ==========================================
   DOKUMENTY - RESPONZÍVNE ŠTÝLY
   ========================================== */

@media (max-width: 1200px) {
    .dokumenty-obsah {
        flex-direction: column;
        gap: 40px;
    }
    
    .dokumenty-list {
        order: 1;
    }
    
    .dokumenty-info {
        order: 2;
        flex-direction: row;
        gap: 30px;
    }
}

@media (max-width: 800px) {
    .dokumenty-hero .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .dokumenty-hero h1 {
        font-size: 2.5rem;
    }
    
    .dokumenty-sekcia h2 {
        font-size: 2.2rem;
    }
    
    .dokument-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .dokumenty-info {
        flex-direction: column;
    }
}

@media (max-width: 550px) {
    .dokumenty-hero {
        padding: 60px 0;
    }
    
    .dokumenty-hero h1 {
        font-size: 2rem;
    }
    
    .dokumenty-sekcia {
        padding: 60px 0;
    }
    
    .dokumenty-sekcia h2 {
        font-size: 1.8rem;
    }
    
    .dokument-item {
        padding: 20px;
    }
    
    .info-box,
    .kontakt-box {
        padding: 20px;
    }
}

/* ==========================================
   GALÉRIA - BACK TO HOME
   ========================================== */

.back-to-home {
    padding: 30px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-gray);
}

.back-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 25px;
    background: var(--text-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-link:hover {
    color: var(--accent-blue);
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-3px);
}

/* ==========================================
   GALÉRIA - HLAVNÁ SEKCIA
   ========================================== */

.gallery-section {
    padding: 40px 0;
    background-color: var(--text-white);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--black);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-white);
    opacity: 0.9;
}

/* ==========================================
   GALÉRIA - MODAL
   ========================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.modal[style*="display: flex"] {
    display: flex !important;
}

.modal.show {
    background-color: rgba(0, 0, 0, 0.75);
}

.modal-content {
    position: relative;
    background-color: var(--text-white);
    padding: 20px;
    border-radius: 15px;
    max-width: 600px;
    max-height: 80vh;
    width: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.7) translateY(-50px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal.show .modal-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.modal-content img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.modal-caption {
    text-align: center;
    color: var(--primary-blue);
    padding: 15px 0 5px 0;
    opacity: 0;
    transition: opacity 0.3s ease 0.3s;
}

.modal.show .modal-caption {
    opacity: 1;
}

.modal-caption h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--primary-blue);
    font-size: 35px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: rotate(0deg);
    z-index: 1001;
    line-height: 1;
}

.modal.show .close {
    opacity: 1;
}

.close:hover,
.close:focus {
    color: var(--accent-blue);
    transform: rotate(90deg) scale(1.1);
    text-decoration: none;
}

/* ==========================================
   GALÉRIA - RESPONZÍVNE ŠTÝLY
   ========================================== */

@media (max-width: 768px) {
    .back-to-home {
        padding: 20px 0;
    }
    
    .back-link {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .gallery-section {
        padding: 30px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .back-to-home {
        padding: 15px 0;
    }
    
    .back-link {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .gallery-section {
        padding: 20px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
