/* Sayfa arka planı */
.contact-background {
  background-image: url("../image/background.jpg"); /* kendi resmini koy buraya */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ortadaki kutu */
.contact-box {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.contact-box h1 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #333;
}

.contact-box p {
  color: #666;
  margin-bottom: 25px;
}

/* Butonlar */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s;
}

.facebook { background-color: #3b5998; }
.facebook:hover { background-color: #2d4373; }

.gmail { background-color: #dd4b39; }
.gmail:hover { background-color: #c23321; }

.instagram { background-color: #e1306c; }
.instagram:hover { background-color: #c72e63; }

.whatsapp { background-color: #25D366; }
.whatsapp:hover { background-color: #1ebe5b; }

.social-button i {
  font-size: 18px;
}
