@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ballet:opsz@16..72&family=Cinzel+Decorative:wght@400;700;900&display=swap');

.cinzel-decorative-regular {
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
}

.cinzel-decorative-bold {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-style: normal;
}

.cinzel-decorative-black {
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* UNIKOVA HRA */
/* Intro */
.intro {
    width: 100%;
    height: 100vh;
    background: url(unikovka_promena.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.intro h1 {
    color: #b48328;
    font-size: 80px;
    text-align: center;
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-style: normal;
}

h2 {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-style: normal;
}

.nadpisy {
    padding-top: 300px;
}

.special {
    font-family: 'Limelight', sans-serif;
}

.intro button {
    color: #f9ba47;
    background: #881847;
    border-radius: 20px;
    border: solid 2px #f9ba47;
    font-size: 30px;
    padding: 10px;
}

.intro button:hover {
    background: #881847;
}

.uvedeni {
    width: 100%;
    background: url(bg.png);
    background-size: cover;
}

.informace {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.pulka h2 {
    font-size: 2.4rem;
    color: #f9ba47;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #b48328;
    padding-bottom: 0.5rem;
}

.pulka p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.label {
    color: #f9ba47;
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-style: normal;
}

.info-polozka {
    color: #e6e6e6;
}

.nadpis-sekce {
    color: #f9ba47;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-style: normal;
}

.pulka ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.pulka ul li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e6e6e6;
}

.tema-popis {
    background: #8e174889;
    color: #e6e6e6;
    padding: 1.2rem;
    border-left: 4px solid #f9ba47;
    font-style: italic;
    margin-top: 0.5rem;
    border-radius: 20px;
}

.poznamka {
    font-size: 0.95rem;
    color: #f9ba47;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .informace {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .pulka h2 {
        font-size: 1.6rem;
    }

    .pulka p,
    .pulka ul li {
        font-size: 1rem;
    }
}