/* Genel Ayarlar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  background-color: #0d0d0d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #222;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}
.center-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 80%;
  height: auto;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff33cc;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}



/* Sayfa Başlığı */
.blog-page-header {
  text-align: center;
  font-size: 36px;
  margin: 40px 0 20px;
  background: linear-gradient(to right, #ffffff, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: fadeInSlide 1s ease;
}

/* Kart Konteyneri */
.blog-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Blog Kart */
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%; 
}

.read-more {
  align-self: flex-end;
  font-size: 13px;
  color: #ff66cc;
  margin-top: 15px;
  font-weight: bold;
  transition: color 0.3s;
}

.blog-card-link:hover .read-more {
  color: #fff;
  text-decoration: underline;
}

.blog-card {
  background-color: #141414;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  height: 100%;
}

.blog-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.blog-card img {
  width: 100%;
  max-height: 190px;
  object-fit: cover;
}

.blog-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.blog-card .content h3 {
  font-size: 20px;
  background: linear-gradient(to right, #ff66cc, #0fffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  line-height: 1.5;
  display: inline-block;
}

.blog-card .content p {
  font-size: 18px;
  color: #ccc;
  flex-grow: 1;
}

.read-more {
  align-self: flex-end;
  font-size: 13px;
  color: #ff66cc;
  text-decoration: none;
  margin-top: 15px;
  font-weight: bold;
  transition: color 0.3s;
}

.read-more:hover {
  color: #fff;
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #0d0d0d;
  text-align: center;
  padding: 30px 10px 20px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #222;
}

footer::before {
  content: "🎵";
  margin-right: 5px;
}

footer a {
  color: hotpink;
  text-decoration: none;
  margin-left: 10px;
}

/* Animasyon */
@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .center-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  nav {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .logo-wrapper {
    margin-bottom: 10px;
  }

  nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  nav a {
    font-size: 13px;
  }

  .blog-page-header {
    font-size: 26px;
    padding: 0 10px;
  }

  .blog-card img {
    height: 150px;
  }

  .blog-container {
    padding: 0 10px;
  }

  .logo-wrapper img {
    max-height: 50px;
  }
}