html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    text-decoration: none;
    color: black;
    background-color: gray;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 4rem;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../resources/poppins2.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../resources/poppins.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.header {
    position: fixed;
    top: 0;
    box-sizing: border-box;
    z-index: 1000;
}

.flex {
    display: flex;
    gap: var(--gap, 2rem);
}

.align-items {
    display: flex;
    align-items: center;
}

.bold {
    font-weight: 1000;
}

a.filldiv {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
}

.headline {
    padding: 1em;
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: clamp(1.5vw, 1.75vw, 2vw);
    font-style: normal;
    line-height: normal;
}

.headline h2 {
    font-size: 1em;
}

.underline {
    width: auto;
    height: 0.4rem;
    border-radius: 50px;
}

.bg-yellow {
    background-color: #FFE9AC;
}

.bg-white {
    background-color: white;
}

.not-found {
    font-size: 2vw;
}

@media (max-width: 55em) {
    .headline {
        font-size: clamp(3vw, 5vw, 9vw);
    }

    .underline {
        height: 0.15rem;
    }

    .not-found {
        font-size: 5vw;
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .headline {
        font-size: clamp(2.5vw, 3.5vw, 4.5vw);
    }

    .underline {
        height: 0.2rem;
    }

    .not-found {
        font-size: 4vw;
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    .headline {
        font-size: clamp(2vw, 3vw, 4vw);
    }

    .underline {
        height: 0.3rem;
    }

    .not-found {
        font-size: 3vw;
    }
}

.header {
    padding-inline: clamp(2rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    height: 4rem;
    background-color: white;
    border-bottom: 1px solid #fed65d;
}

.navigation {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.navigation li {
    display: flex;
    align-items: center;
}

.navigation a {
    text-decoration: none;
}

.navigation a:link {
    color: black;
}

.navigation a:visited {
    color: black;
}

.mobile-nav-toggle-button {
    display: none;
}

.logo {
    width: fit-content;
    cursor: pointer;
}

.logo img {
    height: 4rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-right: 2rem;
    font-weight: 400;
}

.logo-text span {
    font-style: normal;
    line-height: 100%;
}

@media (max-width: 55em) {
    .navigation {
        --gap: 2em;
        position: fixed;
        z-index: 999;
        inset: 0 0 0 30%;
        flex-direction: column;
        align-items: center;
        padding: min(20vh, 10rem) 2em;
        background: hsla(0, 0%, 100%, 0.5);
        backdrop-filter: blur(0.5rem);
        border-left: #fed65d solid 1px;
        transform: translateX(100%);
        transition: transform 300ms ease-out;
    }

    .navigation[data-visible="true"] {
        transform: translateX(0%);
    }

    .mobile-nav-toggle-button {
        display: flex;
        position: absolute;
        z-index: 9999;
        background-color: transparent;
        background-image: url("../resources/icon-hamburger-menu-closed.svg");
        background-repeat: no-repeat;
        width: 1.5rem;
        border: 0;
        aspect-ratio: 1;
        top: 1.5rem;
        right: 2rem;
    }

    .mobile-nav-toggle-button[aria-expanded="true"] {
        background-image: url("../resources/icon-hamburger-menu-oppened.svg");
    }

    .logo img {
        display: none;
        width: 100%;
    }

    .logo-text {
        display: flex;
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .logo-text {
        display: flex;
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    .logo-text {
        display: none;
    }
}

.bigbutton {
    border-radius: 30px;
    background-color: hsl(45, 99%, 68%);
    padding: 0.5em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    color: black;
}

.bigbutton-white {
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: hsl(0, 0%, 100%);
    padding: 0.5em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    color: black;
}

h1 {
    margin: 0;
    padding: 0;
}

.start {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('../resources/blur-mainpicture.webp');
    background-size: cover;
    background-repeat: no-repeat;
    white-space: nowrap;
    font-size: clamp(2vw, 5vw, 7vw);
    font-weight: 400;
    color: white;
}

.start h1 {
    margin-top: -10px;
    margin-bottom: -10px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.50);
    font-style: normal;
    font-size: 0.6em;
    font-weight: 100;
    line-height: 100%;
}

h3 {
    margin: 0;
}

#jb-bold {
    font-size: 0.7em;
    font-weight: 1000;
}

.start img {
    display: none;
}

@media (max-width: 55em) {
    .start h1 {
        display: none;
    }

    .start img {
        display: flex;
        width: 50%;
    }
}

.about-us {
    height: 40vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    background-color: white;
}

.about-us-text {
    width: 50vw;
    padding-bottom: 1rem;
    font-size: clamp(0.5vw, 1vw, 1.5vw);
    font-weight: 500;
}

@media (max-width: 55em) {
    .about-us-text {
        width: 80vw;
        font-size: clamp(2vw, 3vw, 4vw);
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .about-us-text {
        width: 70vw;
        font-size: clamp(1.5vw, 2vw, 2.5vw);
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    .about-us-text {
        width: 60vw;
        padding-bottom: 2rem;
        font-size: clamp(0.5vw, 1vw, 1.5vw);
    }
}

.events {
    height: 80vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    background-color: #FFE9AC;
}

.event-wrapper {
    width: 50vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

.event {
    width: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 1em;
    margin-bottom: 1.5em;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: white
}

.event-description {
    display: flex;
    flex-direction: column;
    text-align: start;
    padding-right: 2em;
}

.event-details {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: start;
}

@media (max-width: 55em) {
    .event-wrapper {
        width: 90vw;
    }

    .event-description {
        font-size: clamp(2vw, 3vw, 4vw);
    }

    .event-details {
        font-size: clamp(2.5vw, 3.5vw, 4.5vw);
    }

    .event {
        margin-bottom: 0.5em;
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .event-wrapper {
        width: 70vw;
    }

    .event-description {
        font-size: clamp(1vw, 1.5vw, 2vw);
    }

    .event-details {
        font-size: clamp(2vw, 3vw, 4vw);
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    .event-wrapper {
        width: 70vw;
    }

    .event-description {
        font-size: clamp(1vw, 1.5vw, 2vw);
    }

    .event-details {
        font-size: clamp(1.5vw, 2.5vw, 3.5vw);
    }
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: #FFE9AC;
}

.subpage-background {
    width: 100vw;
    padding-top: 5rem;
    padding-bottom: 3rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

.subpage-content {
    width: 50vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

.event {
    width: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 1em;
    margin-top: 1.5em;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: white
}

.event-description {
    display: flex;
    flex-direction: column;
    text-align: start;
    padding-right: 1em;
}

.event-details {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}

@media (max-width: 55em) {
    .subpage-content {
        width: 90vw;
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .subpage-content {
        width: 70vw;
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    .subpage-content {
        width: 70vw;
    }
}

.clubs {
    height: 80vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    background-color: white;
}

.clubs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
}

.clubs-item {
    width: 23vw;
    aspect-ratio: 56/31;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: rgba(0, 0, 0, 0.20);
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFF;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.50);
}

.clubs-name {
    font-size: clamp(1vw, 2vw, 3vw);
}

.clubs-date {
    font-size: clamp(0.5vw, 1vw, 1.5vw);
}

@media (max-width: 55em) {
    .clubs-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .clubs-item {
        width: 40vw;
        border-radius: 30px;
    }

    .clubs-name {
        font-size: clamp(2.5vw, 3.5vw, 4.5vw);
    }

    .clubs-date {
        font-size: clamp(2vw, 2.5vw, 3vw);
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .clubs-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px;
    }

    .clubs-item {
        width: 30vw;
    }

    .clubs-name {
        font-size: clamp(2vw, 3vw, 4vw);
    }

    .clubs-date {
        font-size: clamp(1.5vw, 2vw, 2.5vw);
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    .clubs-item {
        border-radius: 40px;
    }

    .clubs-name {
        font-size: clamp(1.5vw, 2.5vw, 3.5vw);
    }

    .clubs-date {
        font-size: clamp(1vw, 1.5vw, 2vw);
    }
}

#nedelky {
    background-image: url('../resources/blur-nedelky.webp');
}

#klubko {
    background-image: url('../resources/blur-klubko.webp');
}

#rcdum {
    background-image: url('../resources/blur-rcdum.webp');
}

#dorost {
    background-image: url('../resources/blur-dorost.webp');
}

#mladez {
    background-image: url('../resources/blur-mladez.webp');
}

#klub-sen {
    background-image: url('../resources/blur-klub-sen.webp');
}

.gathering {
    height: 80vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    background-color: #FFE9AC;
}

#map {
    border-radius: 30px;
    width: 50vw;
    aspect-ratio: 5/2;
}

@media (max-width: 55em) {
    #map {
        width: 90vw;
        border-radius: 30px;
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    #map {
        width: 80vw;
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    #map {
        width: 70vw;
        border-radius: 40px;
    }
}

.album {
    margin: 15px;
    cursor: pointer;
    display: inline-flex;
    text-decoration: none;
    color: inherit;
}

.album a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h2 {
    margin: 0;
    font-size: clamp(1vw, 1vw, 2vw);
}

@media (max-width: 55em) {
    h2 {
        font-size: clamp(1.5vw, 2.5vw, 3.5vw);
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    h2 {
        font-size: clamp(1vw, 2vw, 3vw);
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    h2 {
        font-size: clamp(1vw, 1.5vw, 2.5vw);
    }
}

.gallery {
    height: 80vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    background-color: white;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
}

.gallery-item {
    width: 23vw;
    aspect-ratio: 56/31;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: rgba(0, 0, 0, 0.20);
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFF;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.gallery-name {
    font-size: clamp(1vw, 2vw, 3vw);
}

@media (max-width: 55em) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .gallery-item {
        width: 40vw;
        border-radius: 30px;
    }

    .gallery-name {
        font-size: clamp(2.5vw, 3.5vw, 4.5vw);
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px;
    }

    .gallery-item {
        width: 30vw;
    }

    .gallery-name {
        font-size: clamp(2vw, 3vw, 4vw);
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    .gallery-item {
        border-radius: 40px;
    }

    .gallery-name {
        font-size: clamp(1.5vw, 2.5vw, 3.5vw);
    }
}

.contact {
    height: 80vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    background-color: #FFE9AC;
}

.contact-cards {
    width: 50rem;
    height: 60vh;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    text-align: center;
}

.contact-card {
    width: 100vw;
    height: 65vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    font-size: clamp(1vw, 1.5vw, 2vw);
    white-space: nowrap;
}

.contact-image {
    width: 16vw;
    border-radius: 30px;
    aspect-ratio: 3/4;
    background-color: lightgray;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.warden {
    background-image: url('../resources/image-warden.webp');
}

.housekeeper {
    background-image: url('../resources/image-housekeeper.webp');
}

@media (max-width: 55em) {
    .contact-cards {
        width: 100vw;
        height: 60vh;
    }

    .contact-card {
        width: 40vw;
        height: 65vh;
        font-size: clamp(2.5vw, 3.5vw, 4.5vw);
    }

    .contact-image {
        width: 35vw;
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .about-us-text {
        width: 70vw;
        font-size: clamp(0.5vw, 1vw, 1.5vw);
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    .about-us-text {
        width: 60vw;
        padding-bottom: 2rem;
        font-size: clamp(0.5vw, 1vw, 1.5vw);
    }
}

.sponsors {
    height: 80vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    background-color: white;
}

.sponsors-images {
    width: 80vw;
    height: 60vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.sponsors-container {
    display: grid;
    place-items: center;
    grid-gap: 2vh;
}

.row1 {
    grid-template-columns: repeat(3, 1fr);
}

.row2 {
    grid-template-columns: repeat(2, 1fr);
}

.row3 {
    grid-template-columns: repeat(1, 1fr);
    padding: 1em;
}

#mb {
    width: 20vw;
    height: 20vh;
    background-image: url('../resources/logo-mlada-boleslav.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#skoda {
    width: 20vw;
    height: 20vh;
    background-image: url('../resources/logo-skoda.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#jb {
    width: 20vw;
    height: 20vh;
    background-image: url('../resources/logo-jednota-bratrska.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#racek {
    width: 20vw;
    height: 20vh;
    margin-inline: 2em;
    background-image: url('../resources/logo-racek.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 70%;
}

#wienerberger {
    width: 20vw;
    height: 20vh;
    margin-inline: 2em;
    background-image: url('../resources/logo-wienerberger.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#sk {
    width: 70vw;
    height: 10vh;
    background-image: url('../resources/logo-stredocesky-kraj.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 35%;
}

@media (max-width: 55em) {
    .sponsors-images {
        width: 90vw;
    }

    #mb {
        width: 20vw;
    }

    #skoda {
        width: 30vw;
    }

    #jb {
        width: 20vw;
    }

    #racek {
        width: 30vw;
    }

    #wienerberger {
        width: 30vw;
    }

    #sk {
        width: 90vw;
    }
}

.footer {
    padding-inline: clamp(2rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-around;
    white-space: nowrap;
    flex-direction: row;
    height: 4rem;
    background-color: white;
    border-top: 1px solid #000;
    grid-template-columns: repeat(3, 1fr);
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
}

@media (max-width: 55em) {
    .footer {
        padding-inline: clamp(2rem, 5vw, 3rem);
        display: flex;
        align-items: center;
        justify-content: space-around;
        white-space: nowrap;
        flex-direction: column;
        height: auto;
        background-color: white;
        border-top: 1px solid #000;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-column {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-around;
        text-align: center;
        font-size: clamp(2vw, 2.3vw, 3vw);
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .footer {
        padding-inline: clamp(2rem, 5vw, 3rem);
        display: flex;
        align-items: center;
        justify-content: space-around;
        white-space: nowrap;
        flex-direction: row;
        height: 4rem;
        background-color: white;
        border-top: 1px solid #000;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-column {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: space-around;
        text-align: center;
        font-size: clamp(1.5vw, 1.5vw, 2vw);
        ;
    }
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #FFE9AC;
}

.subpage-background {
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.subpage-center-white {
    width: 52vw;
    aspect-ratio: 205/154;
    padding-bottom: 2em;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: white;
    color: black;
    text-decoration: none;
}

.subpage-content {
    width: 50vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}

.subpage-image {
    width: 35vw;
    aspect-ratio: 13/5;
    border-radius: 30px;
    background-position: center;
    background-size: cover;
}

.subpage-description {
    width: 35vw;
    padding-block: 1.5em;
}

@media (max-width: 55em) {
    .subpage-center-white {
        width: 90vw;
        font-size: clamp(2vw, 2.5vw, 3vw);
    }

    .subpage-content {
        width: 90vw;
    }

    .subpage-image {
        width: 70vw;
    }

    .subpage-description {
        width: 70vw;
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .subpage-center-white {
        width: 70vw;
        font-size: clamp(1.5vw, 2vw, 2.5vw);
    }

    .subpage-content {
        width: 70vw;
    }

    .subpage-image {
        width: 60vw;
    }

    .subpage-description {
        width: 60vw;
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    .subpage-center-white {
        width: 70vw;
        font-size: clamp(1vw, 1.3vw, 2vw);
    }

    .subpage-content {
        width: 70vw;
    }
}

.klubko-image {
    background-image: url('../resources/image-klubko.webp');
}

.rcdum-image {
    background-image: url('../resources/image-rcdum.webp');
}

.dorost-image {
    background-image: url('../resources/image-dorost.webp');
}

.mladez-image {
    background-image: url('../resources/image-mladez.webp');
}

.klubsen-image {
    background-image: url('../resources/image-klub-sen.webp');
}

.nedelky-row {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 0.5em;
}

.nedelky-image {
    width: 20vw;
    aspect-ratio: 20/11;
    border-radius: 30px;
    background-position: center;
    background-size: cover;
}

.nedelky-text {
    width: 25vw;
    font-weight: bold;
    padding-inline: 1em;
}

.nedelky-description {
    font-size: clamp(0.5vw, 1vw, 1.5vw);
    font-weight: normal;
}

.nedelky-mala {
    background-image: url("../resources/image-nedelkamala.webp");
}

.nedelky-stredni {
    background-image: url("../resources/image-nedelkastredni.webp");
}

.nedelky-velka {
    background-image: url("../resources/image-nedelkavelka.webp");
}

.nedelky-nejklub {
    background-image: url("../resources/image-nejklub.webp");
}

.album-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-image {
    width: 150px;
    height: 150px;
    cursor: pointer;
    margin: 5px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lightbox {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox img {
    margin: auto;
    display: block;
}

.close-btn {
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    cursor: pointer;
}

#image-counter {
    color: white;
    font-size: 18px;
    margin-top: 10px;
}

.nav-arrow {
    font-size: 70px;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav-arrow.left {
    left: 10px;
}

.nav-arrow.right {
    right: 10px;
}

@media (max-width: 55em) {
    .lightbox img {
        max-width: 80%;
        max-height: 80%;
    }
}

@media (max-width: 55em) and (min-width: 35em) {
    .lightbox img {
        max-width: 90%;
        max-height: 90%;
    }
}

@media (min-width: 55em) and (max-width: 70em) {
    .lightbox img {
        width: 100%;
        height: 100%;
    }
}