@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap'); 
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2 ease;

}

body{
  background-color: #141414;
}

/*! header */

.header .logo img{
    height: 63px;
    padding-top: 3px;
}

.header{
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    height: 70px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: sticky;
    top: 0;
    z-index: 1000;
    
}

.header .menu a{
    margin: 0 10px;
    font-size: 16px;
    color: white;  
    border-bottom: 2px solid transparent;
}

.header .menu a.active,
.header .menu a:hover{
    border-color: #8c2f81
}

/*! anasayfa */

.anasayfa{
    background-color: #212020;
    height: 100vh;
    overflow: hidden;
}

.slider{
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden; 
  text-align: center;
  position: absolute;
}
  
.img-slider {
  position: relative;
  width: 100vw;
  height: 400px;
}
.img-slider .slider-container {
  position: absolute;
  width: 300%;
  top: 0;
  left: 0;
  overflow: hidden;
  animation: slider 26s infinite;
}
.img-slider .slider-container .slide {
    position: relative;
    width: 33.33333333%;
    height: 100%;
    float: left;
    overflow: hidden
}
.img-slider .slider-container .slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.img-slider .slider .slide h3{ 
  position: absolute; 
  color: #fff; 
  top: 470px;
  margin-left: 578px;
  margin-right: 570px;
  font-size: 50px;
}

.img-slider .slider .slide h1{ 
    position: absolute; 
    color: #fff; 
    top: 570px; 
    margin-left: 745px;
    margin-right: 745px;
    font-size: 20px;
}

@keyframes slider {
    0%, 25%, 100%{left: 0}
    
    30%, 55%{left: -100%}
    
    60%, 85%{left: -200%}
}



/*! hakkımızda */
.hakkimizda{
  min-height: 100vh;
  background-image: url("assets/images/hakkimizda-background.jpg");
  background-size: cover;
  background-position: center;

}

.hakkimizda h3{
  font-size: 60px;
  position: absolute;
  margin-left: 890px;
  margin-top: 120px;
  color: #fff;
  text-align: right ;
  
}

.hakkimizda .content{
  max-width: 800px;
  text-align: right;
  position: absolute;
  margin-left: 600px;
  margin-top: 270px;
  color: #fff;

}


/*! Sanatcilar  */

.heading{
    color: #fff;
    text-transform: uppercase;
    font-size: 40px;
    margin-left: 110px;
    margin-right: 110px;
    padding-top: 10px;
    margin-bottom: 35px;
    border-bottom: 1px solid #fff; 
    
}

.sanatcilar .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding-right: 110px;
    padding-left: 110px;
    margin-bottom: 25px;
    
}

.sanatcilar .box-container .box{
    position: relative;
    background-color: #fff;
    border-radius: 30px;
    height: 200px;
    width: 300px;
    box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.46); 

}

.sanatcilar .box-container .box .box-head .images{
    height: 200px;
    overflow: hidden;
    width: %100;
    border-radius: 30px;
    
}

.sanatcilar .box-container .box .box-head .images img{
    height: %100;
    width: %100;
    object-fit: cover;
}

.sanatcilar .box-container .box .box-head{
  position: relative;
  width: 300px;
}
.sanatcilar .box-container .box .box-head:before{
  content: '';
  background-color: #00000087;
  width: 300px;
  height: 200px;
  display: block;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  border-radius: 30px;
  opacity: 0;
}

.sanatcilar .box-container .box .box-head:hover:before{
  opacity: 1;
}

.sanatcilar .box-container .box .box-head .img-title{
  position: absolute;
  color: #fff;
  width: 300px;
  margin-top: -120px;
  margin-left: auto;
  margin-right: auto;
  font-size: 25px;
  text-align: center;
  text-transform: none;
  opacity: 0;
}

.sanatcilar .box-container .box .box-head:hover .img-title{
  opacity: 1;
}


/*! Timeline  */
.timeline{
  min-height: 600px;
  background-image: url(timeline-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.timeline .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  padding-right: 110px;
  padding-left: 110px;
  margin-top: 100px;
  
}

.timeline .box-container .box{
  background-color: transparent;
  border-radius: 3rem;
  height: 350px;
  width: 400px;
  box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.46);
  
}

.timeline .box-container .box .box-text{
  text-align: left;
  margin-left: 25px;
}

.timeline .box-container .box .box-text h3{
  font-size: 50px;
  padding-top: 80px;
  color: rgb(138, 182, 221);
}

.timeline .box-container .box .box-text h2{
  padding-top: 5px;
  font-size: 20px;
  color: rgb(138, 182, 221);
  
}

.timeline .box-container .box .box-text p{
  color: aliceblue;
  font-size: 15px;
  padding-top: 20px;
  text-transform: none;
}

/*! Galeri */
.galeri{
  min-height: 100vh;
}
.gallery {
  width: 1240px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 5px;
  background: #00000085;
  box-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.gallery > div {
  position: relative;
  float: left;
  padding: 5px;
}

.gallery > div > img {
  display: block;
  width: 400px;
  transition: .1s transform;
  transform: translateZ(0); /* hack */
}

.gallery > div:hover {
  z-index: 1;
}

.gallery > div:hover > img {
  transform: scale(1.7,1.7);
  transition: .3s transform;
}

.cf:before, .cf:after {
  display: table;
  content: "";
  line-height: 0;
}

.cf:after {
  clear: both;
}


/*! Bilet Al */
.biletal .text-box{
  color: #fff;
  padding-left: 110px;
  margin-top: 150px;
  position: absolute;
  text-align: left;
  font-size: 15px;

}

.biletal .text-box p{
  margin-top: 20px;
}

.biletal .text-box a{
  color: #fff;
}

.biletal .text-box a:hover{
  color: #8c2f81;
}

.biletal form .rox{
  background-color: #00000085;
  flex: 1 1 45px;
  padding: 50px 20px;
  text-align: center;
}


.biletal form .rox .input-box{
  display: flex;
  align-items: center;
  width: 550px;
  margin-top: 0px;
  margin-bottom: 20px;
  margin-left: 850px;
  border: 1px solid #fff;
}


.biletal form .rox .input-box i{
  color: #fff;
  font-size: 20px;
  padding-left: 20px;
}

.biletal form .rox .input-box input{
  width: 300px;
  padding: 20px;
  font-size: 17px;
  color: #fff;
  text-transform: none;
  background-color: transparent;

}

.biletal form .rox .buton{
  color: #8c2f81;
  background-color: #fff ;
  font-weight: bold;
  margin-top: 10px;
  margin-left: 750px;
  display: inline-block;
  padding: 20px 37.5px;
  border-radius: 300px;
  font-size: 17px;
  cursor: pointer;
}

/*! Footer */
.footer{
  background-color: black;
  text-align: center;
  padding-bottom: 20px;
}

.footer .sosyalmedya{
  padding: 20px 0;
}

.footer .sosyalmedya a{
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  border: 1px solid rgba(255);
  border-radius: 50%;
  margin: 3px;
}

.footer .sosyalmedya a:hover{
  background-color: #8c2f81;
}

.footer .link{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid rgba(255);
}

.footer .link a{
  background-color: #8c2f81;
  padding: 7px 20px;
  color: #fff;
  font-size: 20px;

}

.footer .link a:hover{
  background-color: #000000;
  opacity: 0.7;

}

.footer .link a.active{
  background-color: #8c2f81;
}

.footer .credit{
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  padding-top: 15px;

}

.footer .credit span{
 color: #8c2f81;
}

