/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* ===== RESET STAREHO CSS ===== */
body {
    margin: 0;
    padding-top: 140px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* Zrusit stare nastaveni nav z style_column.css */
nav {
    width: auto !important;
    margin: 0 !important;
}
nav ul {
    overflow: visible !important;
    padding: 0 !important;
}
nav li {
    height: auto !important;
    float: none !important;
    padding: 0 !important;
    background: none !important;
    text-align: center !important;
}
nav li a {
    font: normal 12px/1 Montserrat, Helvetica, sans-serif !important;
    border-bottom: none !important;
    color: #555 !important;
}

/* Zrusit stare nastaveni headerwrap z style_column.css */
#headerwrap {
    width: 100% !important;
    float: none !important;
}

/* ===== NOVY HEADER ===== */
#headerwrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    box-sizing: border-box;
}

#header {
    margin: 0 auto;
    max-width: 1200px;
    padding: 18px 40px 0;
    text-align: center;
}

/* ===== LOGO ===== */
.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 16px;
}

#header img.logo-img {
    width: auto;
    height: 90px;
    margin: 0 !important;
}

.logo-text h1 {
    display: block !important;
    color: #1a2a3a;
    font-family: Montserrat, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.logo-text .tagline {
    color: #4ab4e0;
    font-family: Montserrat, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

/* ===== NAVIGACE ===== */
#header nav {
    border-top: 1px solid #e8f0f5;
    padding: 12px 0 14px;
}

#header nav ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center;
    gap: 4px;
    overflow: visible !important;
}

#header nav ul li {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    float: none !important;
}

#header nav ul li h2 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

#header nav ul li h2 a {
    display: block !important;
    padding: 6px 20px !important;
    color: #444 !important;
    text-decoration: none !important;
    font-family: Montserrat, Helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0;
    transition: color 0.2s, border-color 0.2s;
}

#header nav ul li h2 a:hover,
#header nav ul li.active h2 a {
    color: #4ab4e0 !important;
    border-bottom: 2px solid #4ab4e0 !important;
}

.left, .right {
    float: none !important;
    width: auto !important;
}

/* ===== HERO VIDEO SEKCE ===== */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 40px;
}

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

/* Placeholder pozadi kdyz neni video */
#hero .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2a3a 0%, #2d4a62 50%, #1a3a4a 100%);
    z-index: 0;
}

#hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 28, 42, 0.5);
    z-index: 1;
}

#hero .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: 100%;
}

#hero .hero-text h2 {
    font-family: Montserrat, Helvetica, sans-serif;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 8px;
    margin: 0 0 30px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

#hero .hero-text .hero-tagline {
    font-family: Montserrat, Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: 5px;
    color: #4ab4e0;
    text-transform: uppercase;
    display: block;
    margin-bottom: 40px;
}

#hero .hero-text .hero-divider {
    width: 60px;
    height: 2px;
    background: #4ab4e0;
    margin: 0 auto 40px;
}



/* ===== HIDE/SHOW HEADER PRI SCROLLOVANI ===== */
#headerwrap {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#headerwrap.hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

/* ===== FONTY ===== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@600;700&display=swap');

/* Textovy obsah - Open Sans, lepsi citelnost */
#content p, #content li {
    font-family: 'Open Sans', Verdana, sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #444;
}

/* Nadpisy - Raleway, zachovat modrou barvu */
h3 {
    font-family: 'Raleway', Helvetica, sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
}

/* ===== WICHTIG SEKCE ===== */
.wichtig-intro {
    background: #f0f8ff;
    border-left: 4px solid #4ab4e0;
    padding: 12px 16px;
    margin-bottom: 24px;
    border-radius: 0 4px 4px 0;
}

.wichtig-intro p {
    margin: 0;
    padding: 0;
    font-style: italic;
    color: #1a2a3a;
    font-size: 15px;
}

.wichtig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wichtig-item {
    background: #fff;
    border: 1px solid #d0e8f5;
    border-radius: 6px;
    padding: 16px;
}

.wichtig-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4ab4e0;
}

.wichtig-icon {
    font-size: 22px;
    line-height: 1;
}

.wichtig-item h4 {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #049EE5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wichtig-item p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ===== WOHIN FAHREN WIR - vertikalni centrovani textu ===== */
.drive {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 10px 500px 10px 10px !important;
    height: 300px !important;
}

.drive p {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

.drive p:last-child {
    margin-bottom: 0 !important;
}

/* ===== CIRCLE-TRUCK IKONKY ===== */
.circle-truck {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.circle-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    padding: 60px 30px;
}

.circle-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.circle-icon-item svg {
    flex-shrink: 0;
}

.circle-icon-item span {
    font-family: Montserrat, Helvetica, sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    color: #1a2a3a !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
}

/* ===== OFFERS SEKCE - vertikalni centrovani kruhu ===== */
.circle-truck {
    margin-top: 0 !important;
}

/* Wrapper kolo circle-truck a offers - flex container */
.offers-wrap {
    display: flex;
    align-items: center;
}

.dashed.offers {
    flex: 1;
    width: auto !important;
    float: none !important;
}

/* ===== HERO PRES CELOU SIRKU ===== */
#hero {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

/* ===== OPRAVA BILY PRUH A HORIZONTAL SCROLL ===== */
body {
    overflow-x: hidden !important;
}

#wrapper {
    overflow-x: hidden !important;
}

#hero {
    margin-top: -1px !important;
}

/* ===== WRAPPER - nesmí omezovat hero ===== */
#wrapper {
    max-width: 1000px !important;
    width: 100% !important;
    overflow: visible !important;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}
