/* ===========================
   Global Reset ve Temel Ayarlar
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Sofia Sans', sans-serif;
  background-color: #f8fafc;
  color: #111827;
  line-height: 1.6;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Görseller */
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Bağlantılar */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Başlıklar ve Paragraflar */
h1, h2, h3, h4, h5, h6,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* ===========================
   Sayfa Konteyneri
=========================== */
.page-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   Başlıklar
=========================== */
.vb-title {
  font-size: 2.25rem;         /* 36px */
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #212529;
}

.vb-subtitle {
  font-size: 1.125rem;        /* 18px */
  color: #4b5563;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ===========================
   Buton (Genel Kullanım)
=========================== */
.vb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #d97706, #f59e0b);
  border: none;
  border-radius: 999px;
  min-width: 140px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.vb-button:hover {
  background: linear-gradient(90deg, #b45309, #d97706);
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.18);
}
/* ===========================
   Whatsapp İletişim Barı
=========================== */
.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 32px;
  z-index: 9999;
  background: #25d366;
  border-radius: 50%;
  padding: 13px;
  box-shadow: 0 6px 22px #25d36645, 0 1.5px 8px #2223;
  transition: box-shadow 0.19s, background 0.16s, transform 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-whatsapp:hover {
  background: #128c7e;
  box-shadow: 0 10px 32px #128c7e54;
  transform: scale(1.08) translateY(-2px);
}
.floating-whatsapp img {
  display: block;
}
@media (max-width: 700px) {
  .floating-whatsapp {
    right: 12px;
    bottom: 16px;
    padding: 8px;
  }
  .floating-whatsapp img {
    width: 32px;
    height: 32px;
  }
}



/* ===========================
   Anasayfa Duyuru Barı
=========================== */
#fixed-announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  /* Canlı turuncu + daha güçlü transparanlık */
  background: linear-gradient(
    90deg,
    rgba(239,129,17,0.76) 0%,
    rgba(239,129,17,0.60) 100%
  );
  /* Cam efekti */
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  animation: barSlideDown 0.45s cubic-bezier(.6,.1,.3,1);
  transition: background 0.23s, box-shadow 0.23s;
}

@keyframes barSlideDown {
  0%   { opacity: 0; transform: translateY(-38px);}
  100% { opacity: 1; transform: translateY(0);}
}
.fixed-announcement-inner {
  max-width: 1700px;
  margin: 0;
  padding: 12px 40px 12px 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  font-weight: 600;
  position: relative;
  gap: 18px;
}

.fixed-announcement-message {
  flex: 1;
  text-align: center;
  line-height: 1.3;
}
.fixed-announcement-message a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.17s;
}
.fixed-announcement-message a:hover {
  color: #fff7d6;
  background: rgba(0,0,0,0.10);
  border-radius: 7px;
  padding: 3px 7px;
}
.fixed-announcement-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  margin-left: 12px;
  opacity: .7;
  border-radius: 7px;
  transition: background 0.15s, color 0.18s, opacity 0.18s;
}
.fixed-announcement-close:hover {
  background: rgba(255,255,255,0.14);
  color: #222;
  opacity: 1;
}
@media (max-width: 700px) {
  .fixed-announcement-inner {
    padding: 11px 7px 11px 9px;
    font-size: 0.98rem;
  }
}

/* ===========================
   Responsive Küçük Başlıklar
=========================== */
@media (max-width: 992px) {
  .vb-title {
    font-size: 1.75rem; /* 28px */
  }

  .vb-subtitle {
    font-size: 1rem; /* 16px */
  }

  .vb-button {
    padding: 10px 22px;
    font-size: 14px;
    min-width: 120px;
  }
}
