/* Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f5e6d3; /* Açık kahve tonu */
  color: #173C57; /* Koyu kahve tonu */
  position: relative;
}

/* Arka Plan Çekirdek Efekti (Tüm Sayfaya) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('coffee.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.9; /* Çok hafif */
  z-index: -1;
object-fit: fill;
}

/* Header ve Logo */
header {
  text-align: center;
  padding: 30px 20px;
}

.logo {
  max-width: 300px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(139, 69, 19, 0.3); /* Kahverengi gölge */
  transition: transform 0.3s;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}




/* İçerik Bölümleri */
section {
  
max-width: 800px;
  margin: 15px auto;
  padding: 20px;
  background: #faeedb; /* Şeffaf beyaz */
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
text-align: center;
opacity: 0.9;


}

a {
color: #173C57; 
text-decoration: underline;
text-decoration: none;

}

/* Sosyal Medya İkonları */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.social-icons img {
  width: 45px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: translateY(-5px);
}

/* Footer */
footer {
  margin-top: auto; /* Footer'ı en alta yapıştırır */
  background: #E4CCA4;
  color: #173C57;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  nav ul {
      flex-direction: column;
      gap: 10px;
  }

  .logo {
      max-width: 200px;
  }

  section {
      margin: 15px;
      padding: 20px;
  }
}