@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

body {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: rgb(0, 0, 0);
    text-align: center;
    margin: 0;
}

img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}


header {
    width: 100%;
    background: white;
    padding: 20px 0 0 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
  
  
.header-container {
    display: flex;
    justify-content: space-between; /* klíčová část! */
    align-items: center;
    padding: 0 40px; /* to ti udělá odsazení zleva a zprava */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
  
  
.header-container .left {
    display: flex;
    align-items: center; /* zarovná text doprostřed obrázku */
    gap: 10px; /* mezera mezi logem a textem */
    justify-content: center;
    align-items: center;
}
  
  
.header-container .left img {
    height: 50px;
    width: auto;
    display: block;
}
  
.header-container .left span.name {
    margin: 0;
    padding-bottom: 18px;
}

.header-container .left span.live{
    min-width: 2px;
    width: 8px;
    height: 8px;
    position: relative;
    background-color: red;
    min-height: 2px;
    padding: 0;
    border-radius: 50px;
    margin-bottom: 30px;
    margin-left: -8px;
}
  
.header-container .right ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0 0 18px 0;
}
  
  
.header-container .right li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.header-container .right li a.active {
    font-weight: 900;
}
  
  
.header-container .hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}


.main{
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 67vh;
}

h1 {
    margin-top: 25px;
    text-align: left;
}

footer {
    background-color: white; /* Dark background */
    color: #323232; /* White text */
    padding: 20px 0;
    width: 100%;
    border-top: rgba(0,0,0,0.05) 1px solid;
    margin-top: 50px;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Ensures proper wrapping on smaller screens */
    gap: 20px; /* Adds spacing between items */
    text-align: center;
    padding: 0 20px;
    max-width: 1200px; /* Ensures it doesn't stretch too wide */
    margin: 0 auto; /* Centers the footer */
}

.footer-layout .left img {
    margin-right: 10px;
}

.footer-layout .right a {
    color: #323232;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-layout .right a:hover {
    color: #4c4c4c; /* Highlight color on hover */
}

.footer-layout .footer-bottom {
    flex: 1; /* Ensures it takes up available space */
    font-size: 0.9em;
    color: #323232; /* Slightly lighter text */
}

.footer-layout .footer-bottom p {
    margin: 5px 0;
}

.partneri {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: minmax(250px, auto); /* Zajistí konzistentní řádky */
    gap: 30px; /* Zvětšení mezery mezi prvky */
}

.partner {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertikální zarovnání */
    align-items: center; /* Horizontální zarovnání */
    min-height: 250px; /* Zajistí rovnoměrnou výšku a zabrání prolínání */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
}



.partner img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.partner h2 {
    font-size: 18px;
    color: #333;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
        padding: 10px;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        text-align: center;
    }

    .right ul {
        flex-direction: column;
        gap: 15px;
        padding: 0;
        text-align: center;
    }

    .hamburger {
        display: block;
        font-size: 28px;
    }

    footer {
        padding: 15px 0;
        text-align: center;
    }

    .footer-layout {
        flex-direction: column;
        gap: 10px;
    }
}
