/* Genel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f5efe0; /* Remana.tech bej arka plan */
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 5px solid #a05a2c; /* Remana kahverengi */
}

/* Profil Bölümü */
.profile {
  margin-bottom: 30px;
}

.logo {
  width: 240px;
  height: 240px;
  object-fit: cover;
  margin: 0 auto 0px;
  display: block;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #703f1f; /* Remana koyu kahverengi */
  font-family: "Afacad", sans-serif;
  letter-spacing: 1px;
}

.description {
  font-size: 16px;
  color: #5a3315; /* Remana.tech koyu metin rengi */
  margin-bottom: 10px;
  padding: 0 20px;
  font-style: italic;
  font-family: "Afacad", sans-serif;
  letter-spacing: 0.5px;
}

.services {
  font-size: 14px;
  color: #5a3315; /* Remana.tech koyu metin rengi */
  margin-bottom: 25px;
  padding: 0 20px;
}

/* Linkler */
.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.link i {
  font-size: 20px;
  margin-right: 10px;
}

.link span {
  font-size: 16px;
}

/* Link Renkleri */
.whatsapp {
  background-color: #25d366;
}

.phone {
  background-color: #a05a2c; /* Remana kahverengi */
}

.instagram {
  background-color: #e1306c;
}

.facebook {
  background-color: #3b5998;
}

.linkedin {
  background-color: #0077b5;
}

.website {
  background-color: #a05a2c; /* Remana kahverengi */
  border: 2px solid #f5efe0; /* Remana.tech bej */
}

.email {
  background-color: #703f1f; /* Remana koyu kahverengi */
}

/* Hover ve Tıklama Efektleri */
.link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.link.clicked {
  transform: scale(0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  margin-top: 20px;
  font-size: 14px;
  color: #703f1f; /* Remana koyu kahverengi */
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 30px 15px;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 24px;
  }

  .description {
    font-size: 14px;
  }

  .link {
    padding: 14px;
  }

  .link i {
    font-size: 18px;
  }

  .link span {
    font-size: 14px;
  }
}
