/* 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: #e78c71c2; /* Açık kahve tonu */
  color: #000000; /* Koyu kahve tonu */
  position: relative;
}

/* 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: #ffffff; /* Şeffaf beyaz */
  border-radius: 15px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 42%);
text-align: center;
opacity: 0.9;


}

a {
color: #000000; 
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: #e78c71;
  color: #000000;
  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;
  }
}
