footer {
    box-shadow: 0px 10px 40px 7px rgba(0, 0, 0, 0.6);
}

/* -------------------------------------------------------------- HEADER -------------------------------------------------------------------- */
.hero {
    position: relative;
    max-width: 100%;  /* Hero banner pokryje celou šířku viewportu */
    height: 68vh;
    max-height: 650px; /* Výšku můžeš přizpůsobit */
    background-image: url('/img/otazky.jpg'); /* Cesta k obrázku */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 40px 7px rgba(0, 0, 0, 0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #0000009c; /* Černá clona s průhledností */
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 50px 50px rgba(0, 0, 0, 1), inset 0 -50px 50px rgba(0, 0, 0, 1);
}

.nazev_firma {
    font-family: 'MadameCosmetics', sans-serif;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 48px;
    margin: 0;
    padding: 7px;
}

.hero-overlay p {
    color: #ffffff;
    font-size: 2em;
    margin: 20px 0;
}

.btn {
    padding: 15px 30px;
    background-color: #7A2B42;
    color: #FAF9F6;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* -------------------------------------------------------------- CENIK CONTAINER -------------------------------------------------------------------- */
.pmu-container {
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
}

.pmu-container h1 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #7A2B42;
    text-align: center;
}

.pmu-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

.pmu-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #d3d3d3;
}

/* -------------------------------------------------------------- TETOVANI CONTAINER -------------------------------------------------------------------- */
.tetovani-container {
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
}

.tetovani-container h1 {
    font-size: 40px;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #7A2B42;
    text-align: center;
}

.tetovani-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

.tetovani-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #d3d3d3;
}

.pmu-item, .tetovani-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
}

.nazev {
    font-size: 18px;
    color: #d3d3d3;
    flex: 1; /* Zajistí, že názvy služeb budou mít pružnou šířku */
    text-align: left;
}

.cena {
    font-size: 18px;
    color: #7A2B42;
    text-align: right;
    flex: 0; /* Zajistí, že ceny nebudou měnit velikost */
    white-space: nowrap;
}

