body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    line-height: 1.6;
}

/* HERO */
.hero {
    position: relative;
    height: 55vh;
    background: url("hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    color: white;
    z-index: 2;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* MENU */
.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: #111;
    padding: 10px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* SECTIONS */
.section {
    padding: 35px 20px;
    max-width: 1000px;
    margin: auto;
}

.bg-light {
    background: #f7f7f7;
}

.bg-dark {
    background: #222;
    color: white;
}

.map {
    margin-top: 25px;
    border-radius: 6px;
    overflow: hidden;
}

/* STRIP – uvnitř kontejneru, ne full width */
.strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.strip img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

/* DLAŽDICE – dvě vedle sebe */
.tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Jednotlivá dlaždice */
.tile {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.tile h2 {
    margin-top: 0;
}

/* Hezké odrážky */
.list {
    list-style: disc;
    padding-left: 20px;
}

.list li {
    padding: 4px 0;
    border-bottom: none;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {

    .strip {
        grid-template-columns: 1fr;
    }

    .strip img {
        height: 180px;
    }

    .tiles {
        grid-template-columns: 1fr;
    }
}
