* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f7;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: white;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
  }

  .logo-nav img {
    height: 140px;
    width: 140px;
  }
  .navbar-menu {
    display: flex;
    list-style-type: none;
  }

  .navbar-menu li {
    position: relative;
  }

  .navbar-menu li a {
    display: block;
    color: #333;
    padding: 25px 18px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .navbar-menu li a:hover {
    color: #4CAF50;
  }

  .nav-contact-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }

  .hamburger {
    width: 30px;
    height: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  /* Mobil */
  @media (max-width: 992px) {
    .hamburger {
      display: flex;
    }

    .navbar-menu {
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: white;
      transform: translateY(-200%);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      z-index: 999;
      padding: 1rem 0;
    }

    .navbar-menu.active {
      transform: translateY(0);
      opacity: 1;
    }

    .navbar-menu li {
      width: 100%;
      text-align: center;
      border-bottom: 1px solid #eee;
    }

    .navbar-menu li a {
      padding: 15px;
      width: 100%;
    }

    .nav-contact-btn {
      display: none;
    }
  }

.blog-header {
    text-align: center;
    padding: 60px 0 30px;
}

.blog-header h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.blog-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222;
}

.blog-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #555;
}

.blog-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.blog-excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.blog-detail-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #222;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: #777;
}

.blog-detail-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.blog-detail-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content h2 {
    margin: 35px 0 15px;
    color: #333;
}

.blog-detail-content ul, .blog-detail-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

.back-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3a3a3a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #555;
}

.hidden {
    display: none;
}

footer {
    background-color: #333;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1 1 250px;
    text-align: left;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #b85c38;
}

.footer-column p, .footer-column a {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #b85c38;
}

.footer-column i {
    margin-right: 0.5rem;
    color: #b85c38;
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #ccc;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .blog-header h1 {
        font-size: 40px;
    }
    
    .blog-detail-container {
        padding: 25px;
    }
    
    .blog-detail-title {
        font-size: 28px;
    }
}
.copyright-container {
    display: inline-block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); /* Instagram renk geçişi */
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .copyright-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  }
  
  .copyright-container:active {
    transform: scale(0.97);
  }
  