* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* HLAVIČKA */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 0;
    background-color: #f8f9fa;
}

.logo {
    width: 150px;
    height: auto;
}

.header-text h1 {
    margin: 0;
    font-size: 28px;
    color: #1e3a8a;
}

.header-text p {
    margin: 5px 0 0 0;
    font-size: 16px;
    color: #555;
}

/* NAVIGÁCIA */
nav {
    background: #0f172a;
    text-align: center;
    padding: 10px 0;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* SEKCIE */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

.light {
    background: #f1f5f9;
}

h2 {
    margin-bottom: 15px;
    color: #1e3a8a;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

/* GALÉRIA VOZOVÝ PARK */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vehicle img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.vehicle p {
    text-align: center;
    margin-top: 8px;
    font-weight: bold;
    color: #1e3a8a;
}

/* DOKUMENTY */
#documents a {
    color: #1e3a8a;
    font-weight: bold;
    text-decoration: none;
}

#documents a:hover {
    text-decoration: underline;
}

#documents .icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

/* FOOTER */
footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 15px 0;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

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

    .logo {
        width: 120px;
    }

    .header-text h1 {
        font-size: 24px;
    }

    .header-text p {
        font-size: 14px;
    }
}
