body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e1e1e1;
    
}

/* Header */
header {
    background-color: #e62336;
    /* background-color: black; */
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 20;
    width: 100%;
}

.header-link {
    text-decoration: none;  /* Zruší podtržení odkazu */
    color: inherit;         /* Barva textu zůstane stejná jako barva v headeru */
}
.header-link :hover{
    text-decoration: underline;
}

.h1NadpisHeader{
    margin: 0;
    letter-spacing: 1px;
}

.menu-toggle { /*ikona pro vstup do burger menu*/
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: none;
    position: fixed; /* Umístíme ikonu absolutně */
    top: 15px;  /* Vzdálenost od horního okraje */
    margin-right: 20px; /* Vzdálenost od pravého okraje */
    z-index: 25; /* Aby byla ikona nad obsahem */
}
.hidden-on-large{
    display: none;
}


nav {
    flex-grow: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin-right: 15px;
}

.nav-links li {
    margin: 0 20px;
}


.nav-links a {
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 18px;
    color: white;
    /* background-color: #333; */
    background-color: #e62336;
    text-decoration: none;
    border: 1px solid #e62336;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.4s ease;
}
.nav-links li :hover{
    color: red;
    border: 1px solid #e62336;
    padding: 8px;
    border-radius: 5px;
    background-color: white;
}

.section {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(6, 6, 6, 0.411);
}



.nadpisMain{
    text-align: center;
}
.cervenaCaraNadpisu{
    margin: 0px auto;
    background-color: red;
    height: 3px;
    width: 180px;
    margin-top: -15px;
}

/* Úvodní fotka */

.intro-image {
    margin-top: 80px;
    position: relative;
    width: 100%;
    height: 500px; /* Výška fotky, můžeš upravit podle potřeby */
    overflow: hidden;
    margin-bottom: -20px;
    display: inline-block;
}

.intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Udržuje obrázek, aby zaplnil celé pozadí */
    object-position: center; /* Udrží obrázek zarovnaný ve středu */
    display: block;
}

.intro-text {
    display: block;
    position: relative;
    text-align: center;
    bottom: 31px;
    left: 0;
    color: white;
    font-weight: bold;
    z-index: 2;
    font-size: 44px;
    background-color: rgba(123, 123, 123, 0.818);
    margin-bottom: -20px;
    padding: 20px;
}


/* Úvodní fotka */

.gallery {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.year {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
}

.year-toggle {
    cursor: pointer;
    background-color: #f8f8f8;
    padding: 10px;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.year-toggle:hover {
    background-color: #ccc;
}

.month-list {
    display: none; /* Default to hidden */
    margin-top: 10px;
}

.month {
    margin-bottom: 10px;
}

.month h3 {
    color: red;
    font-size: 16px;
    margin-bottom: 5px;
}

.month ul {
    padding-left: 20px;
}

.month li {
    margin-bottom: 5px;
}

.month a {
    text-decoration: none;
    color: #333;
}

.month a:hover {
    text-decoration: underline;
    color: blue;
}

footer{
    margin-top: 200px; /* SMAZAT AŽ BUDE VÍCE LET */
    text-align: center;
    background-color: black;
    color: white;
    padding: 10px;
    height: 30px;
    display: flex;              /* Používáme flexbox pro lepší zarovnání */
    justify-content: center;    /* Horizontálně centrování */
    align-items: center;        /* Vertikálně centrování */
}


@media (max-width: 768px) {
    .gallery {
        padding: 10px;
    }
}
/* Responsivní menu (hamburger) */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
        top: 8.5px;
        right: -2px;
    }
    .hidden-on-large{
        display: block;
    }
    .intro-image{
        margin-top: 68px;
    }
    .intro-text{
        font-size: 40px;
    }


    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70%;
        right: 0;
        background-color: #e62336;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        z-index: 10;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-underline-position: auto;
    }
}

@media (max-width: 768px) {
    .grid {
        flex-direction: column;
    }

    .intro-image {
        margin-top: 60px;
        height: 300px; /* Změníme výšku pro menší obrazovky */
    }
    .menu-toggle{
        margin-top: 0px;
        margin-right: 10px;
    }

    .intro-img {
        object-position: 65% center; /* Přizpůsobíme zarovnání pro menší obrazovky */
    }

    .sdeleni{
        width: 90%;
    }
    .h1NadpisHeader{
        margin: 0;
        font-size: 25px;
    }

    
    
    
    
}
@media (max-width: 480px) {
    .intro-image{
        margin-top: 50px;
    }
    .menu-toggle{
        margin-top: 0px;
    }
}
