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

@font-face {
  font-family: 'SF Pro Text Medium';
  src: url('img/FontsFree-Net-SFProText-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

html, body {
  height: 100%;
  font-family: 'SF Pro Text Medium', 'Segoe UI', sans-serif;
  background: url('img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  overflow-x: hidden;
}

/* GENEL YAPI */
.container {
  height: 100vh;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* LOGO */
header {
  text-align: center;
  margin-bottom: 40px;
}

.logo {
  width: 220px;
  max-width: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* BUTONLAR */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white;
  background: transparent;
  border-radius: 12px;
  border: 1px solid transparent;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transform-origin: center;
}

.btn i {
  font-size: 22px;
}

/* RENKLİ BUTONLAR */
.btn.telegram {
  background: rgba(0, 136, 204, 0.12);
  border-color: #0088cc;
}

.btn.telegram:hover {
  background: rgba(0, 136, 204, 0.25);
  box-shadow: 0 0 10px rgba(0, 136, 204, 0.4);
}

.btn.whatsapp {
  display: none;
  background: rgba(37, 211, 102, 0.12);
  border-color: #25D366;
}

.btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.btn.call {
  background: rgba(20, 100, 60, 0.12);
  border-color: #14643C;
  flex: 1;
}

.btn.call:hover {
  background: rgba(20, 100, 60, 0.25);
  box-shadow: 0 0 10px rgba(20, 100, 60, 0.4);
}

.btn.support {
  background: rgba(198, 40, 40, 0.12);
  border-color: #c62828;
  flex: 1;
}

.btn.support:hover {
  background: rgba(198, 40, 40, 0.25);
  box-shadow: 0 0 10px rgba(198, 40, 40, 0.4);
}

/* İLETİŞİM KUTULARI */
.contact-options,
.contact-box,
.bottom-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-item {
  background: linear-gradient(145deg, #111, #000);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-left: 4px solid gold;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: none; /* büyüme kaldırıldı */
  background: linear-gradient(145deg, #111, #000); /* şeffaflık kaldırıldı, orijinal arka plan */
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3); /* hafif altın tonlu gölge */
  border-left-color: #ffd700cc;
}

.contact-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.contact-text i {
  font-size: 22px;
  color: gold;
}

.phone-box {
  background: gold;
  color: black;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-box:hover {
  background: #e0c100;
  color: black;
}

/* ALT BUTONLAR */
.bottom-buttons {
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.bottom-buttons .btn {
  flex: 1;
  min-width: 140px;
  margin: 0 10px;
}

.bottom-buttons .btn:hover {
  /* Büyüme kaldırıldı */
  transform: none;
}

.bottom-buttons .btn:active {
  transform: none;
}

/* SOSYAL MEDYA */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-icon {
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon.telegram:hover {
  color: #0088cc;
}
.social-icon.instagram:hover {
  color: #e4405f;
}
.social-icon.twitter:hover {
  color: #1DA1F2;
}

/* FOOTER */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* MOBİL UYUMLULUK */
@media (max-width: 600px) {
  .contact-box {
    align-items: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
  }

  .btn {
    font-size: 15px;
    padding: 12px 15px;
    margin-bottom: 15px;
  }

  .bottom-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .phone-box {
    margin-top: 8px;
  }

  .logo {
    width: 160px;
  }
}
