* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto Slab", Roboto Slab;
  font-size: 1.6rem;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}
ul {
  list-style: none;
}
a {
  color: #333;
  text-decoration: none;
}
h1,
h2 {
  font-weight: 300;
  line-height: 1.2;
}
p {
  margin: 1rem 0;
}
img {
  width: 100%;
}
.text-center {
  text-align: center;
}
/* Navbar Genel Stil */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%; /* Tam genişlik */
  /* Navbar genişliğini sınırla */
  margin: 0 auto; /* Ortalamak için */
  padding: 0 2rem; /* Sağdan ve soldan ekstra iç boşluk */
  position: fixed; /* Sayfanın üstünde sabit */
  top: 0;
  left: 0;
  height: 70px;
  padding: 0 3rem; /* İç boşluk */
  background-color: transparent; /* Varsayılan arka plan */
  z-index: 1000; /* Diğer elementlerin üstünde */
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navbar Scroll Olduğunda (Scrolled Sınıfı) */
.navbar.scrolled {
  background-color: #fff; /* Beyaz arka plan */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.navbar.scrolled .navlinks,
.navbar.scrolled .social a {
  color: #000000 !important; /* Turuncu yazı ve ikon renkleri */
}

/* Navbar İçindeki Linkler */
.navbar ul {
  display: flex;
  align-items: center;
  list-style: none; /* Liste işaretlerini kaldır */
  margin: 0;
  padding: 0;
}

.navbar .navlinks {
  color: #fff; /* Varsayılan renk */
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.navbar .navlinks:hover {
  border-bottom: 2px solid #f88c00; /* Hover efekti */
}

/* Sosyal Medya İkonları */
.navbar .social {
  display: flex;
  gap: 15px; /* İkonlar arası boşluk */
}

.navbar .social a {
  color: #fff; /* Varsayılan renk */
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.navbar .social a:hover {
  color: #f88c00; /* Hover rengini turuncu yap */
}

/* Logo */
.navbar .brand img {
  height: 60px;
  width: auto;
}

/* Scroll Durumunda Logo ve Linkler */

.navbar.scrolled .navlinks,
.navbar.scrolled .social a {
  color: #f88c00; /* Scroll olduğunda turuncu renk */
  transition: color 0.3s ease;
}

/* Navbar Scroll Olduğunda Logo ve Linkler */
.navbar.scrolled .brand img {
  content: url("../img/logo.png"); /* Siyah logonun yolu */
  transition: all 0.3s ease;
}

/* header */

.main-header {
  background-image: url("../img/writer5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 110vh;
  color: #fff;
}

.main-header .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background: rgba(0, 0, 0, 0.6);
}
.main-header * {
  z-index: 5;
}
.main-header .content h1 {
  font-size: 5.5rem;
}
.main-header .content p {
  font-size: 2.3rem;
  max-width: 60rem;
  margin: 2rem 0 3rem;
}
/* grid kartları */
.grid-container {
  display: grid;
  position: absolute;
  top: 25%;
  right: 18%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
  width: 32%;
  height: 45%;
}

.card {
  background-color: #fff;
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem;
  text-align: left;
  height: 100%;
}

.card i {
  font-size: 40px;
  color: #ff8c00;
  margin-bottom: 10px;
  align-self: flex-start;
}

.card p {
  font-weight: bolder;
  font-family: "Arial", sans-serif;
  font-size: 2.5rem;
  color: #333;
  margin: 0;
}
/* about me deki kaymış fotolar */
.container2 {
  display: flex;
  justify-content: center;
  align-items: center; /* Dikeyde ortala */
  height: 100vh;
  gap: 40px; /* Sağ ve sol kareler arasındaki boşluk */
}

.about-me {
  height: 700px;
  margin: 0px auto;
  max-width: 1200px;
  z-index: 1;
}

.about-me .container2 {
  display: flex;
  gap: 45px;
  justify-content: center;
  align-items: flex-start;
}

.about-me .left2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 50%; /* Sol taraf küçük kutu */
}

.about-me .about-box {
  background-color: #f8f8f8;
  padding: 50px;
  border-radius: 8px;
  border-left: 3px solid orange;
  text-align: center;
  width: 100%;
  font-style: italic;
  transform: translateY(-15%);
}

.about-me .about-box h2 {
  font-size: 4rem;
  font-weight: bolder;
  margin-bottom: 10px;
  color: #333;
  border-bottom: 3px solid orange;
  display: inline-block;
  padding-bottom: 5px;
}

.about-me .about-box p {
  font-size: 1.7rem;
  line-height: 1.2;
  color: #555;
  text-align: left;
}

.about-me .image-small img {
  width: 100%;
  border-radius: 8px;
}

.about-me .image-large {
  width: 50%; /* Sağ taraf büyük kutu */
  transform: translateY(15%);
}

.about-me .image-large img {
  width: 100%;
  border-radius: 8px;
}
/* dedicated-writer kısmı */
.dedicated-writer {
  background-color: #e9e6e6a0;
  padding-top: 300px;
  flex-direction: column; /* Yönü dikey yap */
  justify-content: center; /* Yatayda ortala */
  align-items: center;
  display: flex;
  transform: translateY(-25%);
  position: relative;
  z-index: -1;
}
.dedicated-writer h2 {
  font-weight: 600;
}
.card2 {
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column; /* Yönü dikey yap */
  justify-content: center; /* Yatayda ortala */
  align-items: center; /* Dikeyde sola hizala */
  padding: 1rem;
  text-align: left; /* Metni sola hizala */
  height: 100%; /* Yüksekliği ayarlayarak içeriğin ortalanmasını sağlar */
}

.card2 i {
  font-size: 40px;
  color: #ff8c00;
  margin-bottom: 10px; /* İkon ile metin arasına boşluk */
  align-self: flex-start; /* İkonu sola hizala */
}

.card2 p {
  font-family: "Arial", sans-serif;
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}
.flex-items {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 60%;
}

/* about my work kısmı */
.about-work {
  padding: 50px 20px;
  background-color: #f9f9f9;
  transform: translateY(-35%);
}

.about-work .container3 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  text-align: left;
}

.about-work h2 {
  font-size: 4.5rem;
  color: #333;
  font-weight: 700;
  text-align: left;
}

.about-work p {
  text-align: center;
  font-size: 1.5rem;
  color: #666;
  margin: 10px 0 30px;
  font-style: italic;
}
.work-button {
  background-color: #f88c00;
  color: #fff;
  border: none;
  padding: 2px 5px;
  font-size: 1.5rem;
  font-weight: 500;

  height: 55px; /* Sabit bir yükseklik belirler */
  cursor: pointer;
  width: 190px;
  border-radius: 5px;
}

.work-button:hover {
  background-color: #e57b00;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 400px;
  text-align: center;
  transform: translateY(-35%);
}

.stat-item h3 {
  font-size: 5rem;
  color: #f88c00;
}

.stat-item p {
  font-size: 2rem;
  color: #666;
  margin-top: 10px;
}
/* why work with me kısmı */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../img/10.jpg") no-repeat center center/cover; /* Tüm bloğu kaplayan arka plan */
  transform: translateY(-20%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Arka planın üstüne hafif karartma */
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  display: flex;
  max-width: 1200px;
  width: 90%;
  justify-content: space-between;
  gap: 30px;
}

.right-box {
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  height: 700px;
  transform: translateY(-15%);
}
.left-box {
  border-radius: 10px;
  flex: 1;
}

.left-box img {
  width: 100%;
  border-radius: 10px;
}

.right-box h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
}

.right-box p {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.feature {
  background-color: #fff;
  height: 250px;
  margin-top: 50px;
}

.feature h3 {
  font-size: 3rem;
  padding: 10px;
  font-weight: 700;
  margin: 10px 0;
  color: #333;
}

.feature p {
  padding: 20px;
  font-size: 2rem;
  color: #666;
}
/* what clıent say kısmı */

.container4 {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
  transform: translateY(-35%);
}

/* Başlık ve Altbaşlık */
.container4 h2 {
  font-size: 5rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}

.subtitle {
  font-size: 2rem;
  color: #777;
  margin-bottom: 30px;
}

/* Yorum Kutusu Alanı */
.testimonial-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Tek Yorum Kutusu */
.testimonial-box {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Alıntı ve Yıldızlar */
.quote {
  font-size: 2rem;
  color: #555;
  font-style: italic;
  margin-bottom: 15px;
}

.stars {
  font-size: 1.2rem;
  color: #f9a602; /* Yıldızlar için altın rengi */
  margin-bottom: 15px;
}

/* Müşteri Görseli ve İsmi */
.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 10px;
  border: 2px solid #f9a602;
}

h3 {
  font-size: 1.2rem;
  color: #333;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  transform: translateY(-15%);
}

/* Üstteki Büyük Fotoğraf ve Başlık */
.header {
  position: relative;
  text-align: center;
  color: white;
}

.header-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.header h1 {
  font-size: 36px;
  margin: 0;
}

.header p {
  font-size: 16px;
  margin-top: 10px;
}

/* Blog Kartları */
.blog-cards3 {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.card3 {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
}

.card3-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card3-content {
  padding: 15px;
}

.category {
  color: orange;
  font-size: 14px;
  font-weight: bold;
}

.card3 h3 {
  font-size: 18px;
  margin: 10px 0;
}

.date {
  font-size: 12px;
  color: gray;
}

.excerpt {
  font-size: 14px;
  color: #555;
}

/* lets Genel Stil */
.lets {
  background-image: url("../img/footer.jpg"); /* Arka plan resmi */
  background-size: cover; /* Resmi tam kapla */
  background-position: center; /* Resmi ortala */
  background-repeat: no-repeat; /* Tekrar etmesin */
  position: relative;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  height: 332px;
}

/* Şeffaf Katman */
.lets::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Esnek Düzen */
.lets .content {
  display: flex; /* Flex düzen aktif */
  justify-content: space-between; /* Elemanları dağıt */
  align-items: center; /* Dikeyde ortala */
  position: relative;
  z-index: 2; /* Üst katmana yerleştir */
  max-width: 1200px;
  margin: 0 auto; /* Ortala */
}

/* Footer Metin */
.lets-text {
  max-width: 60%; /* Metin genişliği */
  text-align: left; /* Metni sola yasla */
}

.lets-text h2 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.lets-text p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: white;
}

/* Buton */
.contact-btn {
  background-color: orange;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  height: 60px;
  width: 180px;
}

.contact-btn:hover {
  background-color: #ff8800;
}

/* Footer Ana Konteyner */

/* Footer Ana Konteyner */
.footer-container {
  background-color: #111; /* Arkaplan rengi */
  color: #fff; /* Yazı rengi */
  padding: 20px 0;
  font-family: Arial, sans-serif;
  text-align: center;
  width: 100%; /* Tam genişlik */
  position: relative;
}

/* Sosyal Medya Linkleri */
.social-links {
  display: flex;
  justify-content: center; /* Ortaya hizala */
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.social-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ff7a00;
}

/* Telif Hakkı */
.copyright {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

.copyright a.designer {
  color: #ff7a00;
  text-decoration: none;
}

.copyright a.designer:hover {
  color: #e56b00;
}

/* Yukarı Çık Butonu */
.scroll-top {
  position: absolute; /* Footer içerisindeki belirli bir noktaya yerleştir */
  bottom: 20px; /* Footer'ın altından 20px yukarıda */
  right: 20px; /* Footer'ın sağından 20px içeride */
}

.scroll-top a {
  display: inline-block;
  background-color: #ff8800; /* Turuncu arkaplan */
  color: #fff; /* Beyaz ikon rengi */
  padding: 10px;
  border-radius: 5px; /* Köşeleri yumuşat */
  text-align: center;
  font-size: 20px; /* İkon büyüklüğü */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-top a i {
  display: block; /* İkonu dikey ortala */
}

.scroll-top a:hover {
  background-color: #e56b00; /* Hover durumunda koyu turuncu */
  transform: translateY(-5px); /* Hover durumunda hafif yukarı kalkma efekti */
}

/* mobile */
@media (max-width: 768px) {
  html {
    font-size: 9px;
  }
  .navbar {
    flex-direction: column;
    height: 120px;
    padding: 20px;
  }
  .navbar a {
    padding: 10px;
    margin: 0 3px;
  }
  .teams img {
    width: 60%;
  }
}
