@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap"); html, body {
  max-width: 100%;
  overflow-x: hidden;
}

: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 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

* 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;
  text-align: center;
  margin-bottom: 25px;
}

.page-title h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

.page-title p {
  font-size: 14px;
  margin-top: 10px;
  color: white;
}

/* === BLOG CONTENT === */
.blog-content {
  padding: 60px 0;
  margin-top: 300px; /* header yüksekliğine göre */
}

.blog-main {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 390px;
}

.blog-image {
  flex: 1;
  min-width: 300px;
}

.blog-image img {
  width: 100%;
  border-radius: 8px;
}

.blog-text {
  flex: 2;
  min-width: 300px;
}

.blog-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #000;
}

.blog-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* === WHATSAPP BOX === */
.whatsapp-box {
  text-align: center;
  margin-top: 40px;
}

.whatsapp-box h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* === RELATED POSTS === */
.related-posts {
  margin: 60px 0;
  text-align: center;
}

.related-posts h4 {
  background: #fcb900;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.related-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.blog-card {
  width: 300px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-title h4 {
  font-size: 18px;
  padding: 15px;
  font-weight: bold;
  text-align: left;
}

/* === FOOTER === */
.site-footer {
  background: url('../images/footerBg.jpg') no-repeat center center / cover;
  padding: 60px 0;
  color: #fff;
  margin-top: 80px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-column .line {
  width: 80px;
  height: 4px;
  background: #fcb900;
  margin-bottom: 20px;
}

.footer-column p {
  margin-bottom: 15px;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 32px;
  height: 32px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #fcb900;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    padding: 20px;
    border-radius: 10px;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .blog-main {
    flex-direction: column;
    gap: 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .blog-title h1 {
    font-size: 28px;
  }

  .blog-title span {
    font-size: 12px;
  }

  .whatsapp-box h4 {
    font-size: 18px;
  }

  .whatsapp-btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .related-posts h4 {
    font-size: 25px;
  }
}
