/* mobile-nav.css - Mobil çekmece menü + tema değişkenleri */

/* ─── MOBILE DRAWER ─── */
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(2px);
}
.mob-overlay.open { opacity: 1; pointer-events: all; }

.mob-drawer {
  position: fixed; top: 0; left: 0;
  width: 300px; max-width: 85vw; height: 100vh;
  background: var(--navy-dark);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto; overflow-x: hidden;
  box-shadow: 4px 0 32px rgba(0,0,0,.4);
}
.mob-drawer.open { transform: translateX(0); }

.mob-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.2);
}
.mob-logo {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 18px; color: var(--white); text-decoration: none;
}
.mob-logo span { color: var(--gold); }
.mob-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mob-close:hover { background: rgba(255,255,255,.2); }

.mob-body { flex: 1; padding: 8px 0; }

.mob-sec-title {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,.35); text-transform: uppercase;
  letter-spacing: 1.5px; padding: 14px 20px 6px;
}

.mob-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; color: rgba(255,255,255,.78);
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
  border-left: 3px solid transparent; position: relative;
}
.mob-link:hover, .mob-link.active {
  background: rgba(255,255,255,.07);
  color: var(--white); border-left-color: var(--gold);
}
.mob-link i {
  font-size: 18px; color: rgba(255,255,255,.35);
  width: 22px; flex-shrink: 0; transition: color .18s;
}
.mob-link:hover i, .mob-link.active i { color: var(--gold); }

.mob-footer {
  flex-shrink: 0; padding: 16px 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
}
.mob-phone {
  display: flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--navy-dark);
  padding: 13px 18px; border-radius: 9px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  margin-bottom: 9px; justify-content: center;
  transition: filter .2s;
}
.mob-phone:hover { filter: brightness(1.08); }
.mob-wp {
  display: flex; align-items: center; gap: 9px;
  background: #25d366; color: #fff;
  padding: 11px 18px; border-radius: 9px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  justify-content: center; margin-bottom: 14px;
  transition: filter .2s;
}
.mob-wp:hover { filter: brightness(1.08); color: #fff; }
.mob-social {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.mob-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 16px;
  transition: border-color .2s, color .2s;
}
.mob-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── HAMBURGER ANIMATION ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}

/* ─── SEO PAGE STYLES ─── */
.seo-article { max-width: 860px; margin: 0 auto; }
.seo-article h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin: 2rem 0 0.8rem; font-weight: 700; }
.seo-article h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin: 1.5rem 0 0.6rem; font-weight: 600; }
.seo-article p { font-size: 15px; line-height: 1.85; color: #374151; margin-bottom: 1rem; }
.seo-article ul { margin: 0.5rem 0 1rem 0; padding: 0; list-style: none; }
.seo-article ul li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14px; color: #374151; }
.seo-article ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.seo-article .highlight-box { background: var(--gold-light); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 1.5rem 0; }
.seo-article .highlight-box p { margin: 0; font-weight: 500; color: var(--navy); }
.seo-article table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 14px; }
.seo-article table th { background: var(--navy); color: white; padding: 10px 14px; text-align: left; }
.seo-article table td { padding: 10px 14px; border-bottom: 1px solid #e5e7eb; }
.seo-article table tr:nth-child(even) td { background: #f9fafb; }
.article-toc { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; padding: 20px 24px; margin-bottom: 2rem; }
.article-toc h4 { font-size: 13px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.article-toc ol { margin: 0; padding-left: 1.2rem; }
.article-toc li { margin-bottom: 6px; font-size: 13px; }
.article-toc a { color: var(--gold); text-decoration: none; }
.article-toc a:hover { text-decoration: underline; }
.faq-item { border: 1px solid #e5e7eb; border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; cursor: pointer; background: white; font-weight: 600; font-size: 14px; color: var(--navy); transition: background .2s; }
.faq-q:hover { background: #f9fafb; }
.faq-q i { color: var(--gold); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 18px 14px; font-size: 13px; color: #6b7280; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ─── THEME SWATCHES ─── */
.theme-swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-bottom: 20px; }
.swatch { border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; transition: border-color .2s, transform .15s; }
.swatch:hover { transform: scale(1.04); }
.swatch.selected { border-color: var(--gold); }
.swatch-colors { height: 44px; display: flex; }
.swatch-primary { flex: 2; }
.swatch-accent { flex: 1; }
.swatch-name { padding: 6px 8px; font-size: 11px; font-weight: 600; text-align: center; color: var(--navy); background: white; border-top: 1px solid #f0f0f0; }
