/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* POZADÍ STRÁNKY */
.background-page {
    width: 100vw;
    height: 100vh;
    background-image: url("pictures/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
}

/* CENTROVÁNÍ OBSAHU */
.center-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* BOX S OBSAHEM */
.content-box {
    background: rgba(0, 0, 0, 0.65);
    padding: 40px 50px;
    border-radius: 18px;
    text-align: center;
    max-width: 720px;
    color: white;
}

/* HLAVNÍ NADPIS */
.main-title {
    font-size: 36px;
    margin-bottom: 20px;
}

/* PODTITUL */
.subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.4;
    opacity: 0.9;
}

/* TLAČÍTKO */
.explore-btn {
    padding: 20px 45px;
    font-size: 26px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid white;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* HOVER */
.explore-btn:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}
