body {
  background-color: #c186aa;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: #fff8e1;
}

/* Logo */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.logo-container img {
  max-width: 200px;
  height: auto;
}

.renk-sec{
  background-color: #b74e8e;
}

/* Navbar */
.navbar {
  background-color: #946784;
  text-align: center;
}
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.navbar li {
  margin: 10px 15px;
}
.nav-link {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}
.nav-link:hover {
  color: #ffcc80;
  background-color: #3E2723;
  padding: 5px 10px;
  border-radius: 5px;
}

/* Carousel */
.carousel {
  margin: 20px auto;

}
.carousel-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}
.carousel-caption {
  padding: 10px;
  text-align: center;
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .carousel-item img {
    height: 250px;
  }
}

/* İçerik */
.yazi {
  background-color: rgb(61, 37, 37);
  padding: 30px;
}
.baslik {
  background-color: #c88cb1;
  color: aliceblue;
  text-align: center;
  padding: 10px 0;
}

/* Footer */
.footer {
  background-color:#c27aa6;
  color: #fff8e1;
  padding: 40px 0 20px;
}
.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 20px;
}
.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 20px 0;
}
.footer-section h2 {
  color: #ffcc80;
  margin-bottom: 15px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section ul li a {
  color: #fff8e1;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section ul li a:hover {
  color: #ffcc80;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #795548;
  font-size: 14px;
}
