@charset "UTF-8";
.header {
  /*------------Foto değiştirelecek ------------*/
  background: #151515 url("../images/1.jpeg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.header .text-container {
  z-index: 10;
}

.header .roles {
  font-family: "lora-regular", serif;
}

.header .social {
  bottom: 40px;
}

.about-img {
  border-radius: 50%; /* Yuvarlak */
  object-fit: cover; /* Orantılı kırp */
  object-position: center; /* Ortala */
  border: 2px solid #e1e4e8; /* GitHub’daki açık gri kenar */
  background-color: #fff; /* Arka plan rengi beyaz */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
  width: 325px;
  height: 325px;
}

.about-content {
  margin-top: 4rem; /* bootstrap’te mt-5 ile aynı: 3rem */
}

@media (max-width: 767px) {
  .header .social i {
    font-size: 30px;
  }
  .header .roles {
    font-size: 18px;
  }
  .header a.btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  .header a.btn i {
    font-size: 16px;
    margin-right: 6px;
  }
  .about-content {
    flex-direction: column;
  }
}
/*Icons Hover Section*/
.social a {
  color: #fff;
  transition: all 0.5s ease-in-out;
}

/* Instagram hover */
.social a:hover .fa-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 1s ease;
}

/* LinkedIn hover */
.social a:hover .fa-linkedin {
  background: linear-gradient(45deg, #0077b5, #0e76a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 1s ease;
}

/* GitHub hover */
.social a:hover .fa-github {
  background: linear-gradient(45deg, #8e2de2, #4a00e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 1s ease;
}

/* === Curved Carousel === */
.ls-curved-carousel {
  margin-top: -180px;
  position: relative;
  width: 100%;
  height: 500px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.ls-curved-carousel__stage {
  perspective: 1200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ls-curved-carousel__ring {
  position: absolute;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
}

.ls-curved-carousel__slide {
  position: absolute;
  width: 280px;
  height: 380px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
}

.ls-curved-carousel__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Hover efekti */
.ls-curved-carousel__slide:hover .ls-curved-carousel__media {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

/* Fade kenar efekti */
.ls-curved-carousel.fadeout {
  -webkit-mask-image: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask-image: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

/* === Services Section Background === */
.services {
  background: url("../images/alev.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative; /* ::after için konum referansı oluşturur */
  z-index: 1;
}

/* Karanlık overlay (yazıları öne çıkarmak için) */
.services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* Yazıların overlay'in üstünde görünmesi için */
.services .container {
  position: relative;
  z-index: 10;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent; /* istersen koyu bir renk de verebilirsin */
  color: white;
  text-align: left;
  padding: 10px 30px;
  font-size: 0.9rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
}
