@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&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=Raleway:ital,wght@0,100..900;1,100..900&display=swap"); #loader-intro {
  position: fixed;
  inset: 0px;
  background: rgb(0, 0, 0);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s;
}

.loader-logo {
  color: rgb(252, 185, 0);
  font-size: 48px;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 30px;
  animation: 1.2s ease-out 0s 1 normal none running fadeInLogo;
}

:root {
  --font-heading: 'Poppins', sans-serif , bold;
  --font-body: 'Raleway', sans-serif;
  --font-button: 'Oswald', sans-serif;
}


/* GENEL */
body {
  margin: 0;
  
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: bold;

  background: #fff;
  color: #111;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 30px;
}

/* HEADER */
.site-header {
  background-size: cover;
  padding: 40px 0 100px;
  color: white;
  text-align: center;
  position: relative;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 70px;
}

.navbar a {
  color: white;
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.navbar a.active {
  background: #fcb900;
  color: black;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: bold;
}

.page-title {
  margin-top: 80px;
}

.page-title h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

.page-title p {
  font-size: 14px;
  margin-top: 10px;
}

/* HİZMETLER LAYOUT */
.services-page {
  padding: 80px 0;
  margin-top: 280px;
}

.services-pages {
  padding: 25px 0;
}

.service-layout {
  display: flex;
  gap: 40px;
}

.sidebar {
  flex: 0 0 300px;
  background: #000;
  border-radius: 12px;
  padding: 20px 0;
  height: fit-content;
  max-height: 300px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  padding: 16px 24px;
  font-size: 20px;
  position: relative;

  font-family: var(--font-button);
  font-weight: 700;
  font-style: bold;
}

.sidebar li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  width: 80%;
  border-bottom: 1px solid #333;
}

.sidebar li:last-child {
  border-bottom: none;
}

.sidebar li a {
  color: white;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.sidebar li a:hover {
  color: #fcb900;
}

.sidebar li.active a {
  color: #fcb900;
  font-weight: bold;
}

.service-content {
  flex: 1;
  font-size: 17px;
  line-height: 1.7;
}

.service-content h2 {
  font-size: 30px;
  margin-bottom: 10px;

  font-family: var(--font-heading);
  font-weight: 700;
  font-style: bold;
}

.service-columns {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  gap: 40px;
}

.service-columns .left {
  flex: 1 1 400px;
  min-width: 300px;
  display: flex;
  justify-content: left;
  align-items: center;
  margin-right: 35px;
}

.service-columns .left img {
  width: 115%;
  max-width: 400px;
  border-radius: 10px;
  display: block;
}

.service-columns .right h3 {
  font-size: 18px;
  margin-bottom: 14px;

  font-family: var(--font-heading);
  font-weight: 700;
  font-style: bold;
}

.service-columns .right ul {
  list-style: none;
  padding-left: 0;
}

.service-columns .right li {
  margin-bottom: 10px;
  font-size: 14px;

  font-family: var(--font-body);
  font-weight: 500;
  font-style: medium;
}

.service-content h3 {
  font-size: 18px;
  margin-top: 40px;
  margin-bottom: 10px;

  font-family: var(--font-heading);
  font-weight: 700;
  font-style: bold;
}

/* HİZMETLER ANA */
.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  margin-top: 280px;
}

.card-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.bottom-row {
  justify-content: center;
}

.service-card {
  width: 340px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: black;
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  position: relative;
}

.service-card p {
  text-align: center;
  font-weight: bold;
  padding: 18px;
  font-size: 25px;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: bold;
}

.service-card:hover {
  transform: translateY(-6px);
}

.image-container {
  position: relative;
}

.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 0.8s ease;
}

.service-card:hover .overlay {
  opacity: 0;
}

/* Responsive Tasarım için Medya Sorguları */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }

  .page-title h1 {
    font-size: 28px;
  }

  .page-title p {
    font-size: 13px;
  }

  .services-page,
  .services-section {
    margin-top: 200px;
    padding: 60px 0;
  }

  .service-layout {
    flex-direction: column;
    gap: 30px;
  }

  .sidebar {
    flex: 1 1 100%;
    max-height: none;
    margin-top: 10px;
  }

  .service-columns {
    flex-direction: column;
    gap: 30px;
  }

  .service-columns .left,
  .service-columns .right {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .service-columns .left img {
    max-width: 100%;
  }

  .service-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 20px;
  }

  .navbar a {
    margin-left: 20px;
    font-size: 13px;
  }

  .logo {
    width: 60px;
  }

  .page-title {
    margin-top: 60px;
  }

  .page-title h1 {
    font-size: 24px;
  }

  .page-title p {
    font-size: 12px;
  }

  .services-page,
  .services-section {
    margin-top: 150px;
    padding: 40px 0;
  }

  .service-content h2 {
    font-size: 20px;
  }

  .service-content h3,
  .service-columns .right h3 {
    font-size: 16px;
  }

  .service-card {
    width: 100%;
    max-width: 350px;
  }

  .card-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .site-header {
    padding: 30px 0 60px;
  }

  .navbar a {
    margin-left: 15px;
    font-size: 12px;
    padding: 4px 12px;
  }

  .navbar a.active {
    padding: 4px 12px;
  }

  .page-title {
    margin-top: 40px;
  }

  .page-title h1 {
    font-size: 20px;
  }

  .page-title p {
    font-size: 11px;
  }

  .services-page,
  .services-section {
    margin-top: 240px;
    padding: 30px 0;
  }

  .sidebar li {
    padding: 12px 20px;
    font-size: 14px;
  }

  .sidebar li:not(:last-child)::after {
    left: 20px;
    width: 85%;
  }

  .service-content {
    font-size: 14px;
  }

  .service-content h2 {
    font-size: 18px;
  }

  .service-content h3,
  .service-columns .right h3 {
    font-size: 15px;
  }

  
  .service-columns .right li {
    font-size: 17px;
  }

  .service-columns ul ol li {
    font-size: 17px;
  }

  .service-card p {
    font-size: 15px;
    padding: 15px;
  }

  .service-card img {
    height: 200px;
  }
}