/* ============================================================
   BGC Footer CSS — 4-sütun footer + alt bar
   Live-site: bg=#212121, headings white DM Sans 500 16px,
   links white/90% Hind, social circles 30px
   ============================================================ */

.bgc-footer {
  background: var(--bgc-dark); /* #212121 */
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--bgc-font-body);
}

/* ── Footer top: 4 columns ─────────────────────────────────── */
.bgc-footer__top {
  padding: 60px 0 40px;
}
.bgc-footer__columns {
  max-width: var(--bgc-container);
  margin-inline: auto;
  padding-inline: 16px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* ── Column headings ────────────────────────────────────────── */
.bgc-footer__heading {
  font-family: var(--bgc-font-head);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

/* ── Column 1: Brand ────────────────────────────────────────── */
.bgc-footer__col--brand {}
.bgc-footer__logo { display: block; margin-bottom: 16px; }
.bgc-footer__logo img,
.bgc-footer__logo .custom-logo {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  /* Logo renkli/açık tonlu — koyu footer'da canlı siteyle aynı şekilde görünür */
}
.bgc-footer__brand-title {
  font-family: var(--bgc-font-head);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
}
.bgc-footer__brand-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin: 0 0 8px;
}
.bgc-footer__brand-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #fff; /* canlı: kalın beyaz (italik/caramel değil) */
  margin: 0 0 16px;
}
.bgc-footer__socials { margin-bottom: 14px; }
.bgc-footer__chips {}

/* ── Footer nav (columns 2 + 3) ────────────────────────────── */
.bgc-footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bgc-footer-nav li a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.bgc-footer-nav li a:hover {
  color: var(--bgc-primary);
  padding-left: 6px;
}
/* WordPress nav_menu wraps in a div — flatten */
.bgc-footer__col div:not(.bgc-footer-nav) > .bgc-footer-nav { margin: 0; }

/* ── Contact list (column 4) ─────────────────────────────────── */
.bgc-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bgc-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.bgc-footer__contact-list li .bgc-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--bgc-primary);
}
.bgc-footer__contact-list li span:first-of-type { font-weight: 500; color: rgba(255,255,255,.9); }
.bgc-footer__contact-list a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
}
.bgc-footer__contact-list a:hover { color: var(--bgc-primary); }
.bgc-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.bgc-footer__hours strong { color: #fff; }

/* ── Footer bottom bar ──────────────────────────────────────── */
.bgc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
}
.bgc-footer__bottom-inner {
  max-width: var(--bgc-container);
  margin-inline: auto;
  padding-inline: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bgc-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin: 0;
  text-align: center;
}
.bgc-footer__copy strong { color: rgba(255,255,255,.75); font-weight: 500; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bgc-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .bgc-footer__col--brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .bgc-footer__top { padding: 40px 0 24px; }
  .bgc-footer__columns { grid-template-columns: 1fr; gap: 24px; }
  .bgc-footer__col--brand { grid-column: 1; }
}
