/* Základní styl stránky v duchu "Geek 2005" */
body {
    background-color: #d8dee9;
    color: #111111;
    font-family: Verdana, Tahoma, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 15px 0;
}

/* Hlavní vycentrovaný obal (kontejner) */
#container {
    width: 760px;
    max-width: 95%;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #778899;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Horní lišta / Header */
header {
    background-color: #003366;
    color: #ffffff;
    padding: 20px 25px;
    border-bottom: 3px solid #0055a5;
}

header h1 {
    margin: 0 0 5px 0;
    font-size: 26px;
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    text-align: left;
    letter-spacing: -0.5px;
}

.subtitle {
    font-style: italic;
    color: #b0c4de;
    font-size: 13px;
    margin-bottom: 12px;
    font-family: Verdana, sans-serif;
}

.intro-bio {
    font-size: 13px;
    text-align: justify;
    margin: 0;
    line-height: 1.5;
    background-color: #002244;
    padding: 10px 12px;
    border: 1px dashed #336699;
    color: #e0e8f0;
}

/* Obsahová část */
.content {
    padding: 25px;
}

/* Nadpisy sekcí */
h2 {
    font-size: 18px;
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    color: #003366;
    border-bottom: 1px solid #003366;
    padding-bottom: 3px;
    margin-top: 25px;
    margin-bottom: 12px;
    text-align: left;
    background-color: #f0f4f8;
    padding-left: 6px;
}

h3 {
    font-size: 15px;
    font-family: "Courier New", Courier, monospace;
    color: #0055a5;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: left;
}

.poddnadpis {
    font-style: italic;
    color: #555555;
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
}

/* Odstavce textu zarovnané do bloku */
p {
    text-align: justify;
    margin-bottom: 12px;
    font-size: 13px;
}

/* Kontaktní seznam */
.contact-list {
    list-style-type: square;
    padding-left: 20px;
    background-color: #f9f9f9;
    border: 1px solid #dddddd;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
}

.contact-list li {
    margin-bottom: 6px;
}

a {
    color: #0000cc;
    text-decoration: underline;
}

a:hover {
    color: #ff0000;
    background-color: #ffffcc;
    text-decoration: underline;
}

/* Patka stránky */
footer {
    background-color: #e6eef5;
    border-top: 1px solid #b0c4de;
    text-align: center;
    padding: 10px;
    font-size: 11px;
    font-family: "Courier New", Courier, monospace;
    color: #444444;
}

/* Mřížka pro 6 fotek */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 15px 0 25px 0;
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #cccccc;
}

.gallery-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border: 1px solid #888888;
    cursor: pointer;
    background-color: #ffffff;
    padding: 2px;
}

.gallery-img:hover {
    border-color: #0000cc;
    outline: 1px solid #0000cc;
}

/* Modal / Lightbox pro zvětšení */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border: 3px solid #ffffff;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #ff3333;
}

/* Styling pro popisek pod fotkou v lightboxu */
#lightbox-caption {
    margin: 12px auto 0 auto;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    font-family: Verdana, sans-serif;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 6px 10px;
    border: 1px solid #555555;
    line-height: 1.4;
}