:root {
    --violet: #be4be6;
    --white: #eff3f6;
    --brownish: #e87181;
    --cyan: #00ffd1;
    --pink: #ff00a8;
    --orange: #ff7300;
    --red: rgb(234, 51, 68);
}
body {
    font-family: 'Bebas Neue';
    height: 100vh;
    background-color: rgb(12, 12, 12);
    color: var(--white);
    transition: all 1s;
}
a {
    all: unset;
}



#menuToggle{
    display: none;
}
.space-menu{
    margin-top: 43px;
    margin-left: 60px;
}
/*Navigace mobile*/
@media (max-width:900px) {
    .navbar{
        display: none;
    }
    #menuToggle{
    display: block;
    position: relative;
    width: 50%;
    top: 50px;
    left: 60px;
    z-index: 2;
    -webkit-user-select: none;
    user-select: none;
    }

    #menuToggle a
    {
    text-decoration: none;
    color: #232323;
    text-align: center;
    transition: color 0.3s ease;
    }

    #menuToggle a:hover
    {
    color: tomato;
    }


    #menuToggle input
    {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    
    cursor: pointer;
    
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    
    -webkit-touch-callout: none;
    }
    #menuToggle span{
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    
    background: #fff;
    border-radius: 3px;
    
    z-index: 1;
    
    transform-origin: 4px 0px;
    
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
    }

    #menuToggle span:first-child{
    transform-origin: 0% 0%;
    }
    #menuToggle span:nth-last-child(2){
    transform-origin: 0% 100%;
    }
    #menuToggle input:checked ~ span{
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
    }
    #menuToggle input:checked ~ span:nth-last-child(3){
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
    }
    #menuToggle input:checked ~ span:nth-last-child(2){
    transform: rotate(-45deg) translate(0, -1px);
    }
    #menu{
    position: absolute;
    width: 100%;
    height:100vh;
    margin: -100px 0 0 -70px;
    padding-top: 125px;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    #menu li{
    padding: 10px 0;
    font-size: 22px;
    }
    #menuToggle input:checked ~ ul{
    transform: none;
    }
}
.homepage-parent-container {
    margin: 1.8cm;
    height: calc(95vh - 2*1.8cm);
    width: calc(100vw - 2*1.8cm);
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 15% 85%;
    grid-template-areas:
        "navbar navbar"
        "left-main right-main ";
}
.list-parent-container {
    margin: 1.8cm;
    height: calc(95vh - 2*1.8cm);
    width: calc(100vw - 2*1.8cm);
    display: grid;
    grid-template-columns: 33% 66%;
    grid-template-rows: 15% 85%;
    grid-template-areas:
        "navbar navbar"
        "list list";
}
.content-parent-container {
    margin: 1.8cm;
    height: calc(95vh - 2*1.8cm);
    width: calc(100vw - 2*1.8cm);
    display: grid;
    grid-template-columns: 33% 66%;
    grid-template-rows: 15% 85%;
    grid-template-areas:
        "navbar navbar"
        "content content";
}
.contacts-container {
    grid-area: content;
    display: flex;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: 50% 50%;
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    top: 50px;
    position: relative;
}

.contact-article {
    font-size: 31px;
}

.contact-article-first {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px 50px;
    padding-top: 31px;
}

.contact-article p {
    padding: 0px;
    margin: 0px;

}

.navbar {
    grid-area: navbar;
    font-size: 52.6px;
}

.navbar a {
    opacity: 0;
    transition: opacity 0.6s ease 0s;
    cursor: pointer;
}

.navbar:hover a {
    opacity: 1;
    transition: opacity 0.6s ease 0s;
}

.navbar a:hover {
    color: var(--red);
    transition: color 0.2s ease 0s;
}
.navbar .active{
    color: var(--white);
}
.navbar .active::after{
    content: " /";
    color: var(--white);
}
.navbar a::after{
    content: " /";
    color: var(--white);
}
.navbar .span-class::after{
    content: " /";
    color: var(--white);
}

.left-main-area {
    grid-area: left-main;
}

.right-main-area {
    grid-area: right-main;
    display: flex;
    justify-content: end;
    align-items: self-end;
}
.left-main-area .left-main-area-header{
    position: absolute;
    width: 100%;
    top: 30%;
}

.left-main-area h1 {
    position: absolute;
    left: auto;
    top: -10px;
    font-size: 77px;
}


.left-main-area h2 {
    position: absolute;
    left: auto;
    font-size: 50.4px;
    /*font-size: clamp(1rem, -2.4375rem + 11vw, 3.75rem);*/
}

.left-main-area p {
    position: relative;
    top: 3em;
    font-size: 26.1px;
    line-height: 1.4;
}

.footer-slogan {
    position: absolute;
    bottom: 10%;
    text-align: right;
    font-size: 50.4px;
    background-color: var(--brownish);
    padding: 10px;
}


.list-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.list-item {
    padding-right: 4em;
    transition: scale 0.5s ease;
    cursor: pointer;
    width: 300px;
}

.list-item:hover {
    scale: 1.01;
    transition: scale 0.5s ease;

}

.list-item>.play {
    font-size: 43.4px;
    padding: 0px;
    margin: 0px;
}

.list-item>.time-place {
    font-size: 27.4px;
    padding: 0px;
    margin: 0px;
}

.list-item>img {
    width: 100%;
}
.project-container{
    position: relative;
    background-color: rgba(0,0,0,0.8);
    padding: 50px;
    border-radius: 20px;
    left: 8%;
    height: 50%;
    top: 5%;
    width: 100%;
    -webkit-box-shadow: 4px 40px 47px 8px rgba(0,0,0,0.75);
-moz-box-shadow: 4px 40px 47px 8px rgba(0,0,0,0.75);
box-shadow: 4px 40px 47px 8px rgba(0,0,0,0.75);
overflow-y: auto;
}

.team {
    display: grid;
    grid-auto-flow: row;
    row-gap: 5px;
}

.team p {
    text-align: left;
    line-height: 1.2;
    font-size: 27.4px;
    padding: 0px;
    margin: 0px;
}

.accent{
    color: var(--pink);
}

.accent-red {
    color: var(--red);
}

.image-fade {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    
}
.image-fade.people-detail{
    margin: 0;
}

.text-fade {
    transition: opacity 0.9s;
    opacity: 0;
}
.people-detail.klara{
    background-image: url("/img/people/test.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    
}
.people-detail.tereza-agelova{
    background-image: url("/img/people/tereza-agelova.jpg");
    background-size: cover;
    background-repeat: no-repeat; 
}
.people-detail.daniel-gajdos{
    background-image: url("/img/people/daniel-gajdos.jpg");
    background-size: cover;
    background-repeat: no-repeat; 
}
.people-detail.vendula-holcakova{
    background-image: url("/img/people/vendula-holcakova.jpg");
    background-size: cover;
    background-repeat: no-repeat; 
}
.people-detail.vojtech-lukas{
    background-image: url("/img/people/vojtech-lukas.jpg");
    background-size: cover;
    background-repeat: no-repeat; 
}
.people-detail.vojtech-smid{
    background-image: url("/img/people/vojtech-smid.jpg");
    background-size: cover;
    background-repeat: no-repeat; 
}
.people-detail .left-main-area{
    position: relative;
    background-color: rgba(0,0,0,0.7);
    padding: 50px;
    height: 50%;
    top: 5%;
    width: 100%;
    -webkit-box-shadow: 4px 40px 47px 8px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 40px 47px 8px rgba(0,0,0,0.75);
    box-shadow: 4px 40px 47px 8px rgba(0,0,0,0.75);
    overflow-y: auto; /* Umožní posouvání, pokud text přesáhne výšku */
}
@media (max-width: 1600px) {
    .people-detail .left-main-area{
       left: 0;
    }
    .people-detail .left-main-area p{
        font-size: 22px;
        top: 0em;
    }
    
}
@media (max-width: 1230px) {
    .people-detail.klara{
        background-image: url("/img/people/test-res.jpg"); 
    }
    .people-detail.klara{
        background-image: url("/img/people/test-res.jpg"); 
    }
    .people-detail.klara{
        background-image: url("/img/people/test-res.jpg"); 
    }
    .people-detail .left-main-area{
        width: 80%;
    }

}
@media (max-width: 900px) {
    .people-detail.klara{
        background-image: unset;

    }
    .homepage-parent-container {
        grid-template-columns: 100% 0%;
    }
    .left-main-area .skryt-nadpis{
        position: relative;
        text-align: center;
    }
    .image-res-people.klara{
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url("/img/people/res/kpavlistikova_sq.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .image-res-people.daniel-gajdos{
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url("/img/people/res/daniel-gajdos.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .image-res-people.tereza-agelova{
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url("/img/people/res/tereza-agelova.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .image-res-people.vendula-holcakova{
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url("/img/people/res/vendula-holcakova.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .image-res-people.vojtech-lukas{
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url("/img/people/res/vojtech-lukas.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .image-res-people.vojtech-smid{
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url("/img/people/res/vojtech-smid.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .image-fade{
        overflow: scroll;
    }
    .left-main-area h1{
        top: 20px;
    }
    
}

.body{
    min-height: 100vh;
}
.slide-container{
    width: 100%;
    margin-top: 50px;
}
.slide-content{
    padding: 45px 20px;
    margin: 0 40px;
    overflow: hidden;
}

.card{
    border-radius: 25px;
    background-color: #181818;
}
.image-content,
.card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;

}
.image-content{
    position: relative;
    row-gap: 5px;
    padding: 0;
}
.overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 25px 25px 25px 25px;
}

.card-image{
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0;
    transition:0.4s;
}
.card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.name{
    font-size: 34px;
    font-weight: 500;
    color: #fff;
}
.description{
    font-size: 22px;
    font-weight: 100;
    color: #fff;
    text-align: center;
}
.button{
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: #4070f4;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3 ease;
}
.button:hover{
    background: #365df2;
}

.swiper-navBtn{
    color:var(--violet);
    transition: color 0.3s ease;
}

.swiper-navBtn:hover{
    color: #555;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
    font-size: 40px;
}
.swiper-button-next{
    right: 0;
}
.swiper-button-prev{
    left: 0;
}
.swiper-pagination-bullet{
    background-color:#fff;
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background-color: var(--brownish);
}

@media screen and (max-width: 768px) {
    .slide-content{
        margin: 0 10px;
    }
    .swiper-navBtn{
        display: none;
    }
}
.card.swiper-slide:hover .card-image{
    transform: scale(1.1);
    
}

@media (max-width: 900px) {
    .people-detail .left-main-area {
        width: 100%;
        top: 40%;
        padding: 12px;
    }
}
@media (min-width: 900px) {
    .left-main-area .skryt-nadpis{
        display: none;
    }
    .people-detail .left-main-area p {
        font-size: 22px;
        top: 0;
    }
}
.active.pink{
    color: #FF00A7;
}
.image-fade.dve-carky{
    background-image: url("/img/Dve_carky_1.png");
    background-size: cover;
    background-repeat: no-repeat; 
}
.image-fade.kapni-bozskou {
    background-image: url("/img/kapni_ln.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

.image-fade.do-nemoty {
    background-image: url("/img/do_nemoty_ln.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

.image-fade.nesmrtelne-cteni {
    background-image: url("./img/nesmrtelnecteni-ln-2.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

.footer {
    /*background-color: #121212;*/
    padding: 50px;
    text-align: center;
    position: relative;
  }
  
  .sponsor-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .sponsor-link {
    display: inline-block;
  }
  
  .sponsor-logo {
    max-width: 150px;
    max-height: 80px;
    transition: transform 0.3s ease-in-out;
  }
  
  .sponsor-logo:hover {
    transform: scale(1.1);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .sponsor-logo {
      max-width: 120px;
      max-height: 70px;
    }
  }
  
  @media (max-width: 480px) {
    .sponsor-logo {
      max-width: 100px;
      max-height: 60px;
    }
  }
  