.page-title {
  text-align: center;
  margin-bottom: 50px;
}
.page-title h2 {
  margin-bottom: 20px;
}
.page-title .text {
  margin: 0 auto;
  width: 50%;
}

@media (max-width: 768px) {
  .page-title .text {
    width: 75%;
  }
}

.category {
  background-color: #ffe871;
  padding: 5px 10px;
  font-weight: bold;
}
.see-detail {
  background-color: #ffe871;
  padding: 5px 10px;
  font-weight: bold;
}

.category a {
  text-decoration: none;
  color: black;
}

main section.want-to-work {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 100px 0;
}
main section.want-to-work .left {
  flex: 1;
}
main section.want-to-work .left .title h1 {
  font-size: 44px;
  font-weight: bolder;
}
main section.want-to-work .right {
  flex: 1;
}

@media (max-width: 768px) {
  main section.want-to-work {
    flex-direction: column;
    gap: 0;
    padding: 50px 0;
  }
  main section.want-to-work .right {
    display: block;
  }
}

.how-it-works {
  padding: 60px 20px;
  color: #333;
}

.how-it-works h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.how-it-works .image {
  flex: 1 1 300px;
  max-width: max-content;
  text-align: center;
  margin-bottom: 50px;
}

.how-it-works .image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .how-it-works-content {
    flex-direction: column;
    align-items: center;
  }

  .how-it-works h2 {
    font-size: 1.5rem;
  }

  .how-it-works .text {
    padding: 0 10px;
  }
}

/*hero*/
.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin: 50px 0;
}
.hero .content {
  width: 50%;
  z-index: 0;
}
main section.hero .content .title {
  font-size: 44px;
  font-weight: bolder;
}
main section.hero .content .text {
  padding: 20px 0;
}
main section.hero .content .buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

@media (max-width: 768px) {
  main section.hero {
    margin: 25px 0;
  }
  main section.hero .content {
    width: 70%;
  }
  .buttons {
    flex-direction: column;
  }
  a.button {
    font-size: 19.4px;
  }
}

/*what-i-do*/
section.what-i-do {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}
section.what-i-do .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.what-i-do .left h1 {
  font-size: 44px;
  font-weight: bolder;
}
section.what-i-do .left .categories {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
section.what-i-do .left .categories span {
  background-color: #ffe871;
  padding: 5px 10px;
  font-weight: bold;
}
section.what-i-do .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section.what-i-do .right a {
  text-decoration: none;
  color: unset;
}
section.what-i-do .right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/*what-i-do page*/
section.what-i-do-page-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
section.what-i-do-page-title h2 {
  margin-bottom: 50px;
}
section.what-i-do-page-title .text {
  width: 50%;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  main section.what-i-do {
    flex-direction: column;
    gap: 0;
    margin-bottom: 25px;
  }
  main section.what-i-do .right {
    display: block;
  }
}

/*hamburger*/

/* Base menu styles */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

/* Hamburger button (hidden by default on desktop) */
.hamburger-toggle {
  background: none;
  border: none;
  font-size: 24px;
  display: none;
  cursor: pointer;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .hamburger-toggle {
    display: block;
    position: relative;
    z-index: 1001;
  }

  /* Menü varsayılan olarak gizli */
  .menu ul {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%; /* hamburger'in hemen altı */
    right: 0; /* sağa yasla */
    width: max-content;
    min-width: 200px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    z-index: 1000;
  }

  /* Menü görünür hale geldiğinde */
  .menu.open ul {
    display: flex;
  }

  /* X ikonu */
  .hamburger-toggle.open i::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }
}

/* .current-menu-item,
.current_page_item,
.current_page_parent {
  background: gold;
} */

/* .filled efektini uygula */
nav ul li.current-menu-item > a span.filled,
nav ul li.current_page_item > a span.filled,
nav ul li.current_page_parent > a span.filled {
  background: gold;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover efekti */
nav ul li a:hover span {
  color: #000;
  opacity: 0.8;
}

.blog-sidebar {
  flex: 30%;
}

/*works*/
section.work {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 50px 0;
}

section.work .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section.work .left h1 {
  font-size: 44px;
  font-weight: bolder;
}

section.work .left .categories {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

section.work .right {
  flex: 1;
}

section.work .right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.work-text ul {
  list-style: none;
}

@media (max-width: 768px) {
  @media (max-width: 768px) {
    section.work {
      margin: 40px 0;
    }
  }
  section.work .right {
    display: none;
  }

  section.work .left h1 {
    margin: 0;
  }
}

.google-reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
