body {
    font-family: Arial, sans-serif;
    background: #fefefe;
    color: #333;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
}

/* ------------------------------- Blog Post ------------------------------------- */
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
  
.blog-post h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}
  
.meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
  
.cover-image {
    width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 6px;
}
  
section {
    margin-bottom: 35px;
}
  
section h2 {
    font-size: 1.2rem;
    color: #e91e63;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
  
section p {
    font-size: 1rem;
    color: #555;
}
  
.back-link {
    margin-top: 40px;
    text-align: left;
}
  
.back-link a {
    text-decoration: none;
    color: #e91e63;
    font-weight: bold;
}
  
.back-link a:hover {
    text-decoration: underline;
}
  
  /* Responsive */
@media (max-width: 768px) {
    .blog-post h1 {
      font-size: 1.6rem;
    }
  
    section h2 {
      font-size: 1.1rem;
    }
  
    section p {
      font-size: 0.95rem;
    }
}
  
/* ----------------------------- Footer alanı ------------------------------- */

.background-footer {
    background-color: #937dd3;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 2 sütun: sol logo, sağ ikonlar */
    align-items: center;
    margin-top: 20px;
    padding: 10px;
    width: auto;
}

.footer-logo {  
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-nav ul li {
    display: inline;
}

.footer-nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #c13584; /* Instagram rengi gibi */
}

.social-icons {
    padding-right: 50px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    color: #333;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #c13584; /* Instagram rengi gibi */
}

footer p {
    text-align: center;
    font-size: 12px;
    color: #333;
    margin: 20px 0;
}

@media (max-width: 768px) {
    
    .background-footer {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 10px;
        row-gap: 15px;
    }

    .footer-nav {
        justify-content: center;
        margin-bottom: 10px;
    }

    .social-icons {
        justify-content: center;
        padding-right: 0;
    }
}