/* adimadimdijital.com — one-pager, theme: “Neon Bosphorus” (ink + electric accents) */

:root {
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-ui: "Figtree", system-ui, -apple-system, sans-serif;

  --bg-base: #080b14;
  --bg-mesh: radial-gradient(120% 90% at 8% 0%, rgba(103, 112, 255, 0.26) 0%, transparent 45%),
    radial-gradient(120% 90% at 95% 10%, rgba(35, 226, 195, 0.18) 0%, transparent 42%),
    radial-gradient(130% 80% at 50% 100%, rgba(255, 80, 198, 0.12) 0%, transparent 52%),
    linear-gradient(180deg, #080b14 0%, #0c1222 52%, #0a1020 100%);
  --surface: rgba(17, 24, 42, 0.84);
  --surface-solid: #101a30;
  --paper: #f6f9ff;
  --paper-edge: #dde7fb;

  --ink: #12182a;
  --ink-soft: #2a3552;
  --muted: #5a6889;

  --accent: #22e2c3;
  --accent-dim: #15b198;
  --teal: #67a5ff;
  --teal-deep: #4f6bff;
  --ember: #ff6288;
  --violet: #8658ff;

  --stroke: rgba(18, 24, 42, 0.1);
  --stroke-strong: rgba(18, 24, 42, 0.18);
  --glow-accent: 0 0 0 1px rgba(103, 112, 255, 0.33), 0 18px 44px rgba(5, 9, 20, 0.42);

  --radius-card: 20px;
  --radius-pill: 999px;
  --radius-chamfer: 6px 22px 6px 22px;
  --space: clamp(1rem, 2.5vw, 1.75rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg-mesh);
  background-color: var(--bg-base);
  min-height: 100vh;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--teal-deep);
  text-underline-offset: 0.18em;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--teal);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-ui);
  border-radius: 0 0 10px 10px;
}

.skip-link:focus {
  left: 1rem;
  top: 0;
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--paper);
  padding: 0.85rem var(--space);
  background: linear-gradient(110deg, rgba(79, 107, 255, 0.96) 0%, rgba(33, 47, 92, 0.95) 45%, rgba(11, 24, 54, 0.95) 100%);
  border-bottom: 1px solid rgba(103, 112, 255, 0.38);
  box-shadow: 0 10px 30px rgba(5, 9, 20, 0.5);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--ember), var(--teal), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.site-header__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 800;
  font-optical-sizing: auto;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.site-title a {
  color: var(--paper);
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.site-title a:hover {
  color: var(--accent);
  text-decoration: none;
}

.site-title__suffix {
  font-weight: 650;
  font-size: 0.78em;
  letter-spacing: 0.01em;
  opacity: 0.92;
}

@media (max-width: 520px) {
  .site-title {
    font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  }

  .site-title__suffix {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72em;
  }
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  align-items: center;
}

.site-nav a {
  color: rgba(250, 246, 239, 0.88);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-chamfer);
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: rgba(34, 226, 195, 0.14);
  border-color: rgba(34, 226, 195, 0.42);
  color: #eafcff;
  text-decoration: none;
}

/* Page shell */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space);
}

/* Layout */
.layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "main"
    "left"
    "right";
  align-items: start;
}

.layout__sidebar--left {
  grid-area: left;
}

.layout__main {
  grid-area: main;
}

.layout__sidebar--right {
  grid-area: right;
}

@media (min-width: 1100px) {
  .layout {
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr) minmax(200px, 240px);
    grid-template-areas: "left main right";
    gap: 1.5rem;
  }
}

.layout__sidebar {
  font-size: 0.9375rem;
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--paper);
  border-radius: var(--radius-card);
  padding: 1.1rem;
  border: 1px solid rgba(178, 203, 255, 0.14);
  box-shadow: var(--glow-accent);
}

.layout__sidebar h2,
.layout__sidebar h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}

.sidebar-banners {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sidebar-banners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 4.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--paper);
  background: linear-gradient(135deg, rgba(103, 112, 255, 0.26) 0%, rgba(16, 26, 48, 0.95) 100%);
  border: 1px solid rgba(103, 112, 255, 0.45);
  border-left: 4px solid var(--teal);
  border-radius: 12px 6px 12px 6px;
  padding: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sidebar-banners__item:hover {
  transform: translateX(4px);
  box-shadow: -4px 10px 24px rgba(6, 13, 32, 0.4);
  border-color: rgba(34, 226, 195, 0.7);
}

.contact-box {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(250, 246, 239, 0.2);
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(250, 246, 239, 0.82);
}

.contact-box strong {
  color: var(--paper);
  font-weight: 600;
}

/* Main column — paper card */
.layout__main {
  background: var(--paper);
  color: var(--ink-soft);
  border-radius: var(--radius-card);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem) 2.25rem;
  border: 1px solid var(--paper-edge);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 24px 52px rgba(6, 13, 32, 0.34),
    0 0 0 1px var(--stroke);
}

/* CTAs */
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  color: #fff !important;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease, letter-spacing 0.2s ease;
  box-shadow: 0 8px 20px rgba(7, 13, 30, 0.28);
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-link:hover {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1.08);
  letter-spacing: 0.025em;
  box-shadow: 0 14px 32px rgba(7, 13, 30, 0.4);
}

.cta-link--green {
  background: linear-gradient(145deg, #16c2a8 0%, #0d8f86 100%);
}

.cta-link--red {
  background: linear-gradient(145deg, #ff6288 0%, #d73873 100%);
}

.cta-link--purple {
  background: linear-gradient(145deg, #7e6dff 0%, #5a45db 100%);
}

.cta-link .cta-arrow {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.95;
}

.cta-link .cta-text {
  font-size: 0.9rem;
}

/* Partner tags */
.partner-links {
  margin: 1rem 0 1.5rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, #edf3ff 0%, #e2ebff 100%);
  border-radius: 16px;
  border: 1px solid rgba(103, 112, 255, 0.23);
  box-shadow: 0 10px 24px rgba(79, 107, 255, 0.1);
}

.partner-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.partner-links__tag {
  display: inline-block;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(103, 112, 255, 0.24);
  box-shadow: 0 3px 10px rgba(79, 107, 255, 0.14);
}

/* Article typography */
.article-lead {
  text-align: center;
  font-size: 1rem;
  margin: 1rem 0 1.35rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(90deg, transparent, rgba(103, 112, 255, 0.14), rgba(34, 226, 195, 0.12), transparent);
  border-radius: 12px;
  border-left: 4px solid var(--teal-deep);
}

.article-lead em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--ink);
}

.article h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  font-optical-sizing: auto;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--ink);
  background: linear-gradient(118deg, var(--teal-deep) 0%, var(--violet) 45%, var(--accent-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.article h2 {
  margin: 2.25rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  scroll-margin-top: 5.5rem;
  padding-bottom: 0.45rem;
  background: linear-gradient(90deg, var(--teal-deep), var(--accent), var(--ember)) left bottom / 100% 3px no-repeat;
}

.article h3 {
  margin: 1.65rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  font-style: italic;
  color: var(--teal-deep);
  scroll-margin-top: 5.5rem;
}

.article p {
  margin: 0 0 1rem;
  max-width: 68ch;
}

.article ul {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
}

.article li {
  margin-bottom: 0.35rem;
  padding-left: 0.15rem;
}

.article li::marker {
  color: var(--accent-dim);
}

.figure-center {
  text-align: center;
  margin: 1.5rem 0;
}

.article-figure img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid var(--stroke-strong);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 28px rgba(26, 22, 20, 0.12);
}

.article-figure--banner img {
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(14, 18, 24, 0.2);
}

.figure-placeholder {
  aspect-ratio: 1024 / 634;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 22, 20, 0.45);
  background:
    linear-gradient(135deg, rgba(45, 181, 168, 0.12) 0%, transparent 50%),
    linear-gradient(225deg, rgba(232, 168, 56, 0.15) 0%, transparent 45%),
    repeating-linear-gradient(-12deg, transparent, transparent 8px, rgba(26, 22, 20, 0.03) 8px, rgba(26, 22, 20, 0.03) 9px);
  border-radius: 16px;
  border: 1px solid var(--stroke-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Son Yazılar — sidebar, tüm linkler görünür (spoiler yok) */
.recent-posts--sidebar {
  margin-top: 0.75rem;
  padding: 0;
  background: var(--surface-solid);
  color: var(--paper);
  border-radius: 16px;
  border: 1px solid rgba(255, 252, 247, 0.1);
  overflow: hidden;
}

.recent-posts__heading {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 0.95rem;
  color: var(--paper);
  background: linear-gradient(90deg, rgba(126, 109, 255, 0.35), rgba(34, 226, 195, 0.26));
}

.recent-posts__list {
  margin: 0;
  padding: 0.65rem 0.9rem 1rem 1.5rem;
  font-size: 0.8125rem;
  background: rgba(14, 18, 24, 0.35);
  list-style: disc;
}

.recent-posts__list li {
  margin-bottom: 0.35rem;
}

.recent-posts a {
  color: rgba(250, 246, 239, 0.85);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.recent-posts a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  margin-top: 2.5rem;
  padding: 2rem var(--space) 2.5rem;
  background: linear-gradient(180deg, #0d1630 0%, #0a1024 50%, #080d1b 100%);
  color: rgba(250, 246, 239, 0.78);
  text-align: center;
  border-top: 1px solid rgba(103, 112, 255, 0.35);
  font-family: var(--font-ui);
  font-size: 0.9375rem;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.site-footer p {
  margin: 0.4rem 0;
}

.site-footer__domain {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-size: 0.95em;
}

.site-footer__contact {
  margin-top: 1.15rem;
  font-size: 0.875rem;
  color: rgba(250, 246, 239, 0.55);
  letter-spacing: 0.02em;
}
