/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #f6f7fb;
}

/* ===============================
   PROMO BAR
================================ */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ccff00;
  color: #1b1b1b;
  z-index: 2000;
}

.promo-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}

.promo-time {
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ===============================
   HEADER
================================ */
.header {
  position: fixed;
  top: 32px;
  width: 100%;
  height: 88px;
  background: transparent;
  z-index: 1500;
  transition: background .25s ease, box-shadow .25s ease;
}

.header.header-solid {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  height: 100%;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.header.header-solid .logo {
  color: #111;
}

.header-center {
  display: flex;
  gap: 32px;
}

.header-center a {
  text-decoration: none;
  font-weight: 500;
  color: #ffffff;
}

.header.header-solid .header-center a {
  color: #111;
}

/* ===============================
   BUTTONS
================================ */
.btn-outline {
  padding: 10px 18px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.header.header-solid .btn-outline {
  border-color: #111;
  color: #111;
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
}

/* ===============================
   PROMO BAR – MOBILE (KONTROLLÜ)
================================ */
@media (max-width: 768px) {

  .promo-bar {
    height: 56px;
    padding: 4px 0;   
  }

  .promo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;        
    text-align: center;
  }

  .promo-text {
    font-size: 13px;
    line-height: 1.2;
    transform: translateY(-6px);
  }

  .promo-time {
    font-size: 18px;
    font-weight: 650;
    line-height: 1.1;
    transform: translateY(4px);
  }
}
/* ===============================
   HEADER – MOBILE FIX (KİLİTLİ)
================================ */
@media (max-width: 768px) {

  /* Masaüstü menü ve butonlar GİZLENSİN */
  .header-center,
  .btn-outline,
  .btn-primary {
    display: none !important;
  }

  /* Hamburger GÖRÜNSÜN */
  .mobile-only {
    display: block !important;
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
  }

  /* Header beyaz olunca hamburger rengi */
  .header.header-solid .mobile-only {
    color: #111;
  }

  /* Header yüksekliği mobil */
  .header {
    height: 84px;
  }
  .header-inner {
    padding-top: 24px;
}
