@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap");

@font-face {
  font-family: glacial;
  src: url(/fonts/GlacialIndifference-Regular.otf);
}

@font-face {
  font-family: tugralar;
  src: url(/fonts/fonnts.com-theseasons-reg.otf);
}

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

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f5f5f5;

  /* Üst boşluğu tamamen CSS akışına bıraktık.
     Navbar (fixed) + Social Bar (relative + margin-top) 
     otomatik olarak içeriği aşağı itecek. */
  padding-top: 0;
}

/* Yükleme Ekranı */
.global-loading {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999999;
  font-family: "Cardo", serif;
}

.global-loading .loader {
  width: 40px;
  height: 40px;
  border: 4px solid #e1e1e1;
  border-top-color: #b71c1c;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.link-btn {
  text-decoration: none !important;
  cursor: pointer;
}
