/* ===== CRITICAL CSS - IBA ZÁKLADY (HEADER, HERO) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #005289;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* Header - LEN DESKTOP verzia */





/* HERO SEKCIA - POSUNUTIE KVÔLI FIXNÉMU HEADERU */
.hero-mapy {
    margin-top: 80px !important;  /* Presne výška headeru */

}

/* Navigácia - DESKTOP */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

/* Dropdown - DESKTOP */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-contact .phone {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.mobile-menu-btn {
    display: none; /* Skryté na desktope */
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero sekcia */
.hero-mapy {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 80px;
    padding: 40px 0;
}

.hero-mapy .container {
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 20px;
}



.hero-mapy .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

/* Základné container */
.container {
    width: 100%;
    max-width: 85vw;
    margin: 0 auto;

    position: relative;
    z-index: 1;
}

/* Sekcie - základ */
.section-full {
    width: 100%;
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.section-title {
    color: #0056b3;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 800;
}

.section-perex {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Pre Font Awesome */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/webfonts/fa-brands-400.woff2') format('woff2');
}

/* ===== MOBILNÉ MENU - KRITICKÉ ŠTÝLY ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    .header-contact {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        min-width: auto;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}