body {
    background-color: #faf8f6;
    color: #222;
    font-family: "Open Sans", Arial, sans-serif;
}

/* Hero sekce */
.hero {
    min-height: 75vh;
    background: url("img/hero-bg.jpg") center/cover no-repeat;
    position: relative;
}

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

.text-dark{
    color: #4C4C4C;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Navigace */
.navbar {
    background-color: #faf8f6 !important;

}

.nav-link {
    color: #575757 !important;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: #000 !important;
    border-bottom: 2px solid #000;
}

/* Obrázky */
img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.03);
}

/* Tlačítko */
.btn-dark {
    background-color: #222;
    border: none;
    transition: background 0.3s ease;
}

.btn-dark:hover {
    background-color: #000;
}
