@import url("https://fonts.googleapis.com/css2?family=Electrolize&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Electrolize", sans-serif;
}

.container {
  background-color: white;
  color: black;
}

/*!NAVBAR START  */

.navbar {
  background-color: white;
  color: black;
  height: 100px;
  width: 100%;

  position: sticky;
  top: 0;
  z-index: 1;
}
.navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 50px;
}
.logo {
  font-size: 30px;
  color: rgb(255, 70, 70);
}
.menu-list {
  display: flex;
  column-gap: 30px;
  list-style: none;
  align-items: center;
  padding: 0;
}
.menu-list-item {
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
.menu-list-item:hover {
  font-weight: bold;
}
.menu-list-item-active a{
  font-weight: bold;
  text-decoration: none;
  color: black;
}
.menu-list-item a{
  text-decoration: none;
  color: black;
}
.profile-container {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.profile-picture {
  width: 120px;
  height: 90px;
  object-fit: cover;
}
.profile-button .play-button {
  padding: 10px 25px;
  border-radius: 5px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  column-gap: 10px;
  font-size: 16px;
  text-decoration: none;
  background: red;
  color: white;
  transition: ease 0.5s;
}
.profile-button .play-button:hover {
  background-color: #aa0505;
  font-weight: bold;
}
.toogle {
  width: 40px;
  height: 20px;
  background-color:black;
  position: relative;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.toogle-icon {
  color: goldenrod;
}
.toogle-ball {
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  right: 1px;
  transition: 0.5s ease all;
}

/*!NAVBAR END  */

/*SIDEBAR START  */
.sidebar {
  background-color: white;
  
  height: 100%;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  row-gap: 50px;
  position: fixed;
  top: 0;
}
.sidebar i {
  color: black;
  font-size: 20px;
  cursor: pointer;
}
/*SIDEBAR END  */

/*! FEATURED CONTENT START  */
.content-wrapper {
  margin-left: 50px;
}

.featured-content {
  position: relative;
  overflow: hidden;
  padding: 50px;
  height: calc(100vh - 160px);
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


.slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}


.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

/* Aktif olan */
.slide.active {
  opacity: 1;
}


.slide:nth-child(1) {
  background-image: url(./img/featured-1.png);
}
.slide:nth-child(2) {
  background-image: url(./img/featured-2.jpg);
}
.slide:nth-child(3) {
  background-image: url(./img/featured-3.jpg);
}
.slide:nth-child(4) {
  background-image: url(./img/featured-4.jpg);
}


.featured-description,
.featured-buttons {
  position: relative;
  z-index: 0;
}

.featured-description {
  width: 500px;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
  margin: 30px 0;
  text-align: justify;
  line-height: 1.5;
  color: black;

  margin-bottom: 30px;
}
.featured-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.featured-buttons button {
  padding: 10px 25px;
  border-radius: 2px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  column-gap: 10px;
  margin-left: 300px;
  font-size: 16px;
  transition: ease 0.5s;
}
.featured-buttons button:hover {
  font-weight: bold;
}
.featured-buttons .info-button {
  background-color: rgb(145, 142, 142, 0.5);
  color: white;
}

/*! FEATURED CONTENT END  */

/*! ABOUT CONTENT START   */
.row {
  height: 80vh;
  width: 100%;
  background: #f1efef;
  display: flex;
  margin-top: 50px;
}

.col-1 {
  flex-basis: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards {
  margin-left: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 sütun */
  grid-template-rows: repeat(2, auto); /* 2 satır */
  gap: 50px;
  max-width: 450px;
}

.card {
  width: 200px;
  height: 230px;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  cursor: pointer;
  border: 2px solid rgb(67, 114, 21);
  transition: 0.5s ease;
}

.card:hover {
  transform: translateY(-10px);
  border: 2px solid #aa0505;;
}

.card.card-1 {
  background-image: url(./img/card1.jpg);
}
.card.card-2 {
  background-image: url(./img/card2.jpg);
}
.card.card-3 {
  background-image: url(./img/card3.jpg);
}
.card.card-4 {
  background-image: url(./img/card4.jpg);
}

.row .col-2 {
  flex-basis: 60%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 40px 50px;

  font-family: sans-serif;
}

.col-2 h1 {
  font-size: 40px;
  text-align: center;
  color: rgb(100, 174, 25);
  margin: 0;
  margin-top: -30px;
}

.col-2 h2 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  color: black;
}
.col-2 > p {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin: 10px 0 20px;
  color: black;
}
.article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: black;
}

.article p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: black;
}
.article h3,
.article1 h3,
.article2 h3,
.article3 h3 {
  display: flex;
  align-items: center;
  gap: 10px; /* ikon – yazı arası */
}

.article i {
  font-size: 22px;
  color: rgb(67, 114, 21);
}

/*! ABOUT CONTENT END  */

/*! MOVIE LİST START */
.movie-list-container {
  margin-left: 70px;
  padding-top: 70px;
}
.movie-list {
  list-style: none;
  height: 300px;
  display: flex;
  align-items: center;
  column-gap: 30px;
  transform: translateX(0);
  transition: 1s all ease-in-out;
}
.movie-list-title {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 50px;
  letter-spacing: 3px;
}
.movie-list-explanation {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;

  font-size: 20px; 
  font-weight: 400; 
  line-height: 1.6; 
  color: black; 
}

.movie-list-wrapper {
  overflow: hidden;
  position: relative;
}
.movie-item {
  position: relative;
}
.movie-item:hover .movie-item-title {
  opacity: 1;
}

.movie-item:hover .movie-item-image {
  transform: scale(1.2);
  margin: 0 30px;
  opacity: 0.5;
}

.movie-item-image {
  width: 270px;
  height: 200px;
  object-fit: cover;
  border-radius: 40px;
  transition: 1s all ease-in-out;
}
.movie-item-title {
  background-color: rgba(40, 40, 40, 0.5);
  padding: 10px 20px;
  position: absolute;
  color: white;
  bottom: 10px; /* resmin altına yakın */
  left: 50%; /* yatay ortalama */
  transform: translateX(-50%);

  font-size: 24px; /* sp değil px */
  font-weight: bold;
  white-space: nowrap;

  opacity: 0;
  transition: 0.6s ease;
}

.arrow {
  width: 100px;
  display: flex;
  font-size: 120px;
  position: absolute;
  right: 0;
  top: 100px;
  opacity: 0.5;
  transition: 0.5s ease all;
  cursor: pointer;
}
.arrow:hover {
  opacity: 1;
}

/*! MOVIE LİST END */


/*! MAPS START */
.maps-full {
  width: 100%;
  height: 250px;
  padding-left: 50px;   
  box-sizing: border-box;
  overflow: hidden;
}

.maps-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;        /* ekstra boşluk önler */
}


/*! MAPS END */

/*! FOOTER START */

.footer {
  background-image: url(./img/footer.bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 40px 20px;
  font-family: sans-serif;
}

.footer-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}



.footer-box {
  flex: 1;
  margin-left: 70px;
   
}

.footer-box h3 {
  margin-bottom: 25px;
  color: white;
  align-items: center;

}
.footer-box p > i,
.footer-box li > i,
.footer-box h3 > i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: rgb(100, 174, 25);
}
.footer-box p {
  position: relative;
  padding-left: 30px;   
  margin-bottom: 10px;
  color: #ccc;
  font-size: 16px;
}


.footer-box span {
  display: block;
  line-height: 1.5;
}

/* SERVICE START*/

.footer-services {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-services li {
  display: flex;
  align-items: center;
  gap: 10px;           
  margin-bottom: 12px;
  font-size: 16px;
  color: #ccc;
}

.footer-services li i {
  position: static ;
  display: inline-block ;
  opacity: 1 ;
  visibility: visible ;
  color: rgb(100, 174, 25);
  font-size: 16px 
}

.footer-services li span {
  line-height: 1.4;
}
 
/* SERVICE END*/

/* İLETİŞİM BİLGİLERİ START*/

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-address i {
  margin-top: 3px; 
}


/* İLETİŞİM BİLGİLERİ END*/



/* FORM START*/

.working-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.working-hours li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.working-hours span {
  display: inline-block;
  width: 120px; /* sabit kolon */
  color: #ccc;
}

.working-hours strong {
  color: #ccc;
  font-weight: 600;
}

/* FORM END*/

/* SOCİAL START*/
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;

  margin: 20px 0 10px;   /* footer-bottom öncesi boşluk */
}
.footer-social i {
  position: static !important;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.footer-social i:hover {
   color: rgb(100, 174, 25);
}




/* SOCİAL END*/


/* FOOTER BOTTOM START */


.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;

  font-size: 14px;
  color: white;
}

/*! FOOTER END */



/*! DARK MODE START */

.container.active {
  background-color: black;
  color: white;
}
.navbar.active {
  background-color: black;
  color: white;
}
.menu-list-item-active a{
  color: inherit;
}
.menu-list-item a{
  color: inherit;
}

.sidebar.active {
  background-color: black;
}
.sidebar i.active {
  color: white;
}
.movie-list-title.active {
  color: white;
}
.movie-list-explanation.active {
  color: white;
}
.toogle.active {
  background-color: white;
}
.toogle-ball.active {
  background-color: black;
  transform: translate(-20px);
}


/*! DARK MODE END */

/* RESPONSIVE START */
@media only screen and (max-width: 800px) {
  .menu-container {
    display: none;
  }
  .featured-content {
    height: 50vh;
  }
  .featured-title {
    width: 200px;
  }
  .featured-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    max-width: 200px;
    padding: 0;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .footer-wrapper {
    flex-direction: column;
  }
}

/* RESPONSIVE END */
