/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s ease;
}

#cursor svg {
  animation: cursorSpin 8s linear infinite;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 32, 53, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 154, 60, .12);
}

.navbar-logo {
  font-family: var(--ff);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.navbar-logo span {
  font-size: 11px;
  font-style: normal;
  font-family: var(--fs);
  color: var(--moss);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-left: 6px;
}

.navbar-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.navbar-links a {
  display: block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248, 242, 232, .80);
  padding: 8px 12px;
  transition: color .3s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}

/* Hamburger (mobil) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--cream);
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s, opacity .3s;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: rgba(10, 20, 40, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(196, 154, 60, .12);
  padding: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-brand h6 {
  font-family: var(--ff);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 400;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(248, 242, 232, .85);
  max-width: 340px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-col h7 {
  display: block;
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }

.footer-cats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.footer-col li {
  font-family: var(--ff);
  font-size: 17px;
  padding: 4px 0;
  color: rgba(248, 242, 232, .85);
  cursor: pointer;
  transition: color .25s;
}

.footer-col li:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  font-size: 15px;
  color: rgba(248, 242, 232, .85);
  text-decoration: none;
  transition: color .2s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(196, 154, 60, .1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(248, 242, 232, .55);
}

/* ─────────────────────────────────────────
   RESPONSIVE — NAV & FOOTER
───────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; height: 60px; }

  .navbar-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(13, 10, 7, 0.97);
    padding: 20px;
    border-top: 1px solid rgba(196, 154, 60, .15);
    border-bottom: 1px solid rgba(196, 154, 60, .15);
    gap: 0;
  }

  .navbar-links.open { display: flex; }
  .navbar-links a { padding: 14px 16px; border-bottom: 1px solid rgba(196, 154, 60, .08); }
  .nav-toggle { display: flex; }

  .site-footer { grid-template-columns: 1fr; padding: 36px 20px 20px; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-brand h6 { font-size: 22px; }
  .footer-brand p { font-size: 14px; }
}

@media (max-width: 480px) {
  .site-footer { grid-template-columns: 1fr; }
}

/* Arama butonu */
.nav-search-btn {
  font-size: 15px !important;
  padding: 0 12px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  border: 1px solid rgba(196,154,60,0.3) !important;
  border-radius: 8px !important;
  transition: border-color .2s, background .2s !important;
}

.nav-search-btn:hover {
  border-color: var(--gold) !important;
  background: rgba(196,154,60,0.1) !important;
}
