
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;
}
/* -------------------------------------------------------------- FAQ CONTAINER -------------------------------------------------------------------- */
.faq-container {
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
}

.faq-container h1 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #7A2B42;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

.faq-item h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #7A2B42;
}

.faq-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #d3d3d3;
}

.faq-item a {
    color: #7A2B42;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}