/* === GLOBÁLNÍ RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000; /* Černé pozadí podle obrázku */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* Font pro nadpisy */
    margin-bottom: 20px;
}

/* === FIXNÍ HEADER === */
.fixed-header {
    position: fixed; /* Klíčové: drží header na místě */
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(122, 19, 19, 0.95);
    z-index: 1000; /* Aby byl vždy nad obsahem */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px); /* Rozmazání pozadí za headerem */
}

.header-content {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease; /* Plynulý hover */
}

.icons a:hover {
    color: #a8c0ff; /* Barva při najetí */
    transform: translateY(-3px); /* Ikonka lehce poskočí */
}

/* === HLAVNÍ OBSAH (Odsazení odshora kvůli headeru) === */
main {
    padding-top: 80px; 
}

/* === PANELY (SEKCE) === */
.panel {
    min-height: 80vh; /* Každá sekce zabere většinu obrazovky */
    display: flex;
    align-items: center; /* Vertikální centrování */
    justify-content: center;
    padding: 50px 10%;
    gap: 50px; /* Mezera mezi textem a fotkou */
    border-bottom: 1px solid #222; /* Jemná linka mezi sekcemi */
}

/* Třída pro obrácené pořadí (Fotka vlevo, text vpravo) */
.panel.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1; /* Zabere polovinu */
    text-align: center; /* Zarovnání textu na střed (podle obrázku) */
}

.motto {
    font-style: italic;
    color: #ccc;
    margin-bottom: 15px;
}

.image-content {
    flex: 1; /* Zabere druhou polovinu */
    display: flex;
    justify-content: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px; /* Jemné zaoblení */
}

/* Speciální styl pro kruhovou fotku */
.circle-img {
    width: 300px;
    height: 300px;
    border-radius: 50% !important; /* Udělá kruh */
    border: 5px solid rgba(255,255,255,0.1); /* Jemný rámeček */
}

/* === FOOTER === */
footer {
    background-color: rgba(122, 19, 19, 0.95);
    color: #fff; /* Černý text, aby byl čitelný na zelené */
    text-align: center;
    padding: 60px 20px;
}

footer h3 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

footer p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

footer .email {
    font-weight: bold;
    margin-top: 10px;
    opacity: 1;
}

/* === RESPONZIVITA (MOBIL) === */
@media (max-width: 768px) {
    .panel, .panel.reverse {
        flex-direction: column; /* Všechno pod sebe */
        text-align: center;
        padding: 50px 20px;
    }

    .circle-img {
        width: 200px;
        height: 200px;
        margin-top: 30px;
    }

    .text-content {
        margin-bottom: 30px;
    }
}