/* =========================================================
   RESET & GLOBAL
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

/* =========================================================
   CURSOR (Desktop only)
========================================================= */
body {
  cursor: url("/img/cursor-silver.png") 3 2, auto;
  background: #0b0b0b;
  font-family: 'Inter18Bold', sans-serif;
}

/* Metin alanları */
p, h1, h2, h3, h4, h5, h6, span, li {
  cursor: text;
}

/* Tıklanabilirler */
a,
button,
input[type="button"],
input[type="submit"] {
  cursor: pointer;
}

/* Mobilde kapat */
@media (max-width: 768px) {
  body { cursor: auto; }
}

/* =========================================================
   FONTS
========================================================= */
@font-face {
  font-family: 'Inter18Bold';
  src: url('/fonts/Inter_18pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Inter18BoldItalic';
  src: url('/fonts/Inter_18pt-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Inter18Regular';
  src: url('/fonts/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* =========================================================
   TOAST
========================================================= */
#copyToast {
  position: fixed;
  top: 80px; /* Header yüksekliğine göre ayarlanabilir */
  right: 30px;
  background: rgba(0,0,0,0.90);
  color: #fff;
  padding: 20px 26px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(-10px);
  z-index: 5000;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#copyToast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#copyToast:hover { opacity: 1; }

#copyToast.hide {
  opacity: 0;
  transform: translateY(-10px);
}

.toast-number {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  font-family: 'Inter18Bold', sans-serif;
}

.toast-text {
  font-size: 18px;
  font-weight: 500;
  color: #ddd;
  line-height: 1.4;
  font-family: 'Inter18Regular', sans-serif;
}

/* =========================================================
   KONUM / MAP
========================================================= */
.location-section {
  text-align: center;
  padding: 20px 20px;
  margin-top: 40px;
  color: #fff;
}

.location-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.location-section p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
  color: #fff;
}

.map-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* =========================================================
   CONTACT INFO
========================================================= */
.contact-info {
  text-align: center;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 80px;
  padding: 0 20px;
}

.contact-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-line {
  font-size: 18px;
  margin: 8px 0;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  display: block;
}

.contact-linkmail {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.contact-link:hover,
.contact-linkmail:hover {
  opacity: 0.7;
}

/* Contact responsive */
@media (max-width: 600px) {
  .contact-title { font-size: 22px; }
  .contact-line  { font-size: 16px; }
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: #8b1e28;
  padding: 60px 20px;
  margin-top: 80px;
  color: #fff;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.footer-title {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-desc {
  font-size: 13px;
  opacity: 0.9;
  max-width: 500px;
  line-height: 1.6;
}

/* Footer içindeki linkler: görünüm bozulmasın */
.footer-desc a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
}
.footer-desc a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.footer-copy {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  align-items: center;
  height: 10px;
}

.footer-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.footer-social img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
  filter: brightness(1.1) contrast(1.15);
  cursor: pointer;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

/* =========================================================
   FOOTER RESPONSIVE
========================================================= */
@media (max-width: 992px) {
  .site-footer { padding: 50px 20px; margin-top: 70px; }
  .footer-title { font-size: 22px; margin-bottom: 8px; }
  .footer-desc  { font-size: 12px; max-width: 450px; }
  .footer-copy  { margin-top: 30px; font-size: 13px; }
  .footer-social     { gap: 12px; margin-top: 16px; }
  .footer-social a   { width: 32px; height: 32px; }
  .footer-social img { width: 32px; height: 32px; }
}

@media (max-width: 768px) {
  .site-footer { padding: 45px 20px; margin-top: 60px; }
  .footer-title { font-size: 20px; }
  .footer-desc  { font-size: 12px; max-width: 400px; line-height: 1.5; }
  .footer-copy  { margin-top: 25px; font-size: 12px; }
  .footer-social     { gap: 10px; margin-top: 16px; }
  .footer-social a   { width: 28px; height: 28px; }
  .footer-social img { width: 28px; height: 28px; }
}

@media (max-width: 576px) {
  .site-footer { padding: 40px 18px; margin-top: 50px; }
  .footer-content { text-align: center; }
  .footer-title { font-size: 18px; }
  .footer-desc  { font-size: 10px; max-width: 100%; margin: 0 auto; }
  .footer-copy  { margin-top: 20px; font-size: 11px; }
  .footer-social { justify-content: center; gap: 6px; margin-top: 16px; }
  .footer-social a,
  .footer-social img { width: 28px; height: 28px; }
}

/* =========================================================
   SCROLL LOCK
========================================================= */
.scroll-lock {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
}


/* =========================================================
   NOT: Intro/perde/overlay ile ilgili CSS bu dosyadan temizlendi.
   (Bunları bir sonraki adımda TEK bir sistem olarak geri ekleyeceğiz.)
========================================================= */
/* Sadece Ön Kayıt anchor offset */
#onkayit{
  scroll-margin-top: 400px;
}

@media(max-width:768px){
  #onkayit{
    scroll-margin-top: 300px;
  }
}

.seo-h1,
.seo-h2{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.back-home-btn{
  display:inline-block;
  font-size:14px;
  color:#ffffff;
  text-decoration:none;
  transition:.2s;
  margin-top: 1%
}

.back-home-btn:hover{
  color:#a51e0c;
  text-decoration:underline;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}