* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

html {
  font-size: 62.5%;
}

@font-face {
  font-family: texgyreadventor;
  font-weight: normal;
  font-style: normal;
  src: url(../fonts/texgyreadventor-regular.otf);
}

@font-face {
  font-family: texgyreadventor;
  font-weight: 600;
  src: url(../fonts/texgyreadventor-bold.otf);
}

body {
  background: rgb(255, 255, 255);
  min-height: 100vh;
  
}
:root {
  --num-cols: 3;
}

/*NAVIGATION*/
#header {
  position: fixed;
  width: 100%;
  background: rgb(211, 210, 210);
  box-shadow: 0rem .5rem 1rem rgba(0,0,0,0.6);
  border-radius:0px 0px 30px 30px ;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3%;
}

.nav-items {
  display: flex;
}
.nav-items li {
  list-style: none;
  margin: 0rem 1rem;
 
}

.nav-items li a {
  text-decoration: none;
  font-family: texgyreadventor;
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  transition: 0.8s;
}
.nav-items li a:hover,.nav-items li a.active {
  font-weight: 600;
  color: #2b2358;
  transition: 0.8s;
}

.nav-button {
  display: inline;
  cursor: pointer;
}

.bar, .bar1, .bar2 {
  width: 4rem;
  height: 0.5rem;
  background: #2b2358;
  margin: 0.5rem;
  border-radius: 0.5rem;
  transition: 0.3s;
}

.change .bar {
  transform: translate(0,0.9rem) rotate(-45deg);
}
.change .bar1 {
  opacity: 0;
  width: 0;
}
.change .bar2 {
  transform: translate(0,-0.9rem) rotate(45deg);
}

.nav-button {
display: none;
}

/*END NAVIGATION*/



/*GOLUBKA CONTENT*/
.section {
  position: relative;
  top: 6.5rem;
   background:#2b2358;        
  min-height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0rem .5rem 1rem rgba(0,0,0,0.6);
  border-radius: 30px 30px 30px 30px ;
}
  
.section .content { 
  font-family: texgyreadventor;
  color: #ffffff;
 text-align: center;
}

.section .content h1 {
  font-weight: 100;
  font-size: 4.8rem;
  margin-bottom: 2rem;
}
.section .content p {
  font-weight: 100;
  font-size: 3rem;
  margin-bottom: 2rem;
}

/*GOLUBKA CONTENT END*/



/*vernastaltungen*/
.veranstaltungen {
  box-shadow: 0rem .5rem 1rem rgba(0,0,0,0.6);
  border-radius: 30px 30px 30px 30px ;
  position: relative;
  top: 6.5rem;
}
.container-gallery {

  width: 900px;
  display: flex;
  overflow-x: scroll;
}
.container-gallery .gallery {
  width: 100%;
  display: flex;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
  padding: 10px;
  flex: none;
}

.container-gallery .gallery img{
  width: 100%;
  height: 100%;
}
.container-gallery::-webkit-scrollbar {
  display: none;
}
.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto;
}
.controls #rightBtn, .controls #leftBtn {
  width: 50px;
  cursor: pointer;
  margin: 30px;
  
}


.veranstaltungen2 {
  box-shadow: 0rem .5rem 1rem rgba(0,0,0,0.6);
  border-radius: 30px 30px 30px 30px ;
  position: relative;
  top: 6.5rem;
  display: none;
}
.container-gallery2 {

  width: 400px;
  display: flex;
  overflow-x: scroll;
}
.container-gallery2 .gallery2 {
  width: 100%;
  display: flex;
  grid-template-columns: auto;
  grid-gap: 0px;
  padding: 5px;
  flex: none;
}

.container-gallery2 .gallery2 img{
  width: 100%;
  height: 100%;
}
.container-gallery2::-webkit-scrollbar {
  display: none;
}
.controls2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto;
}
.controls2 #rightBtn2, .controls2 #leftBtn2 {
  width: 15px;
  cursor: pointer;
  margin: 5px;
  
}
/*End veranstaltungen*/

/*LANGUAGE MENU*/
.langs {
  background: #bdbbdd;
  text-align: center;
  margin: 10px 10px;
  padding: 6px 12px;
  border-radius: 50%;
}
.langs a {
  color: #ffffff;
  text-decoration: none;
  padding: 12px;
  background: #27235e ;
  font-weight: 650;
  transition: .3s linear;
  border-radius: 10%;
}
.langs a:hover {
  background: #6d68b4 ;
}
.langs a.active {
  background: rgb(0, 0, 0) ;
}

/*LANGUAGE MENU*/




/* FOOTER */
  .footer {
    position: relative;
    top: 6.5rem;
    box-shadow: 0rem .5rem 1rem rgba(0,0,0,0.6);
    border-radius:30px 30px 0px 0px ;
    background: rgb(211, 210, 210);
    width: 100%;
  
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer h1 {
    font-family: texgyreadventor;
    color: #000000;
    font-size: 48px;
    margin-bottom: 40px;
  }
  .grid-footer {
    display: grid;
    grid-template-columns: repeat(var(--num-cols),1fr);
    grid-auto-rows: 350px;
    grid-auto-flow: column;
    grid-gap: 10px;
  }
  .grid-footer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .grid-footer iframe {
    width: 100%;
    height: 100%;
  }
  .iframe-col-2 {
    grid-column: span 2;
    transition: 0.5s;
  }
  .footer-contacts {
    position: relative;
  }
  .footer-contacts .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    transition: 0.5s;
  }
  .footer-contacts:hover .overlay {
    display: block;
  }
  iframe:hover {
    filter:invert(100%);
  }
  .footer-contacts .overlay .social-links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
  }
.social-links h3 {
  font-family: texgyreadventor;
  font-size: 24px;
  margin-bottom: 20px;
}
.social-links a i {
  margin-left: 10px;
  font-size: 40px;
  color: white;
  transition: .8s;
}
.social-links a i:hover {
  transform: scale(1.3);
  transition: .8s;
}

.footer-contacts .overlay .footer-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: white;
}

.footer-content h3{
  font-family: texgyreadventor;
  font-size: 24px;
  margin-bottom: 16px;
}
.footer-content p{
  font-family: texgyreadventor;
  margin-bottom: 10px;
}
.footer-content a {
  font-family: texgyreadventor;
  line-height: 2;
  color: #ffffff;
}

/*END FOOTER*/


@media screen and (max-width: 1024px){
  .social-links h3, .social-links i, .footer-content h3 {
    font-size: 24px;
  }

}

@media screen and (max-width: 440px){
/*FOOTER*/
  .footer {
    padding: 20px;
  }

  .grid-footer {
    --num-cols: 2;
    grid-auto-flow: row;
  }
  .grid-footer {
    grid-auto-rows: 130px;
    grid-auto-columns: 100px;
 
  }
  .social-links h3{
    font-size: 9px;
    margin-bottom: 8px;
    margin-left: 6px;
  }
  .footer-content h3 {
    font-family: texgyreadventor;
    margin-bottom: 2px;
    font-size: 10px;
  }
  .footer-content p {
    font-family: texgyreadventor;
    margin-bottom: 1px;
    font-size: 6px;
  }
  .footer-content a {
    font-family: texgyreadventor;
    margin-bottom: 1px;
    font-size: 6px;
    line-height: 2;
    color: #ffffff;
  }
  .social-links a i {
    font-size: 12px;
    transition: .8s;
  }

  .social-links a i:hover {
    transform: scale(1.5);
    transition: .8s;
  }
  
  .footer h1 {
    font-family: texgyreadventor;
    color: #000000;
    font-size: 24px;
    margin-bottom: 20px;
  }
/*FOOTER END*/

/*NAVIGATION*/
  .nav-items {
    position: fixed;
    left: 0;
    top: 6.5rem;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background: rgb(215, 215, 215);
    align-items: center;
    padding-top: 10rem;
    border-radius: 20px 20px;
    transition: .5s;
    transform: translateX(100%);
    z-index: 1000;
    cursor: pointer;
  }

  .nav-items.hide-show {
    transform: translateX(0%);
  }

  .nav-items li {
    margin: 1.5rem 0rem;
  }
  .nav-items li a {
    display: block;
    font-size: 3rem;
  }
  .nav-button {
    display: block;
    padding: 0rem 2.5rem;
  }
  #header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

  }
/*NAVIGATION END*/

 
  .section {
    padding: 2rem 2rem;
  }
 
  .section .content h1 {
  
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .section .content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
  .veranstaltungen {
    display: none;
   }

   .veranstaltungen2 {
    display: block;
   }
}


