/* Import písma EB Garamond z Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    font-family: 'EB Garamond', serif;
    background-color: #f5eeda; /* Barva zažloutlého papíru */
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.page {
    background-color: #fff; /* Barva listu papíru */
    max-width: 800px;
    margin: 20px auto;
    padding: 50px 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    position: relative;
    min-height: 1000px; /* Simulace výšky stránky */
}

h1, h2, h3, h4 {
    font-weight: 700;
    text-align: center;
}

h2 {
    margin-top: 40px;
    margin-bottom: 30px;
}

p {
    text-align: justify;
    margin-bottom: 1em;
}

/* Styl pro titulní stranu */
.title-page {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title-page p {
    text-align: center;
    margin-bottom: 0.5em;
}

.title-page strong {
    font-size: 1.4em;
    line-height: 1.2;
}

/* Styl pro obrázky */
.image-placeholder {
    width: 250px;
    height: 250px;
    border: 1px dashed #999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin: 20px auto;
}

.full-width-image .image-placeholder {
     width: 100%;
     height: 300px;
}

/* Číslo stránky */
.page-number {
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-style: italic;
    color: #555;
}

/* Oddělovací čára */
hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}

/* --- NOVÁ PRAVIDLA PRO RESPONZIVNÍ ZOBRAZENÍ NA MOBILNÍCH ZAŘÍZENÍCH --- */
@media only screen and (max-width: 768px) {
    body {
        padding: 0; /* Odstranění vnějšího odsazení */
    }

    .page {
        max-width: 100%; /* Kontejner na plnou šířku */
        margin: 0;
        padding: 30px 20px; /* Zmenšení vnitřního odsazení */
        box-shadow: none;   /* Odstranění stínu */
        border: none;       /* Odstranění rámečku */
        min-height: auto;   /* Automatická výška podle obsahu */
    }

    p {
        text-align: left; /* Lepší čitelnost odstavců */
    }

    .image-placeholder,
    .full-width-image .image-placeholder {
        width: 100%; /* Všechny obrázky na plnou šířku */
        height: auto; /* Zachování poměru stran, pokud bude použit skutečný obrázek */
        min-height: 200px; /* Minimální výška pro placeholdery */
    }

    .page-number {
        right: 20px; /* Úprava pozice čísla stránky */
        bottom: 15px;
    }
}
/* --- KONEC NOVÝCH PRAVIDEL --- */