/* --- Modern Avukat Kartvizit --- */
:root {
  --bg: #fafaf9;
  --bg-card: #ffffff;
  --text: #1c1917;
  --text-muted: #57534e;
  --accent: #a16207;
  --accent-light: #eab308;
  --border: #e7e5e4;
  --shadow: 0 1px 3px rgba(0,0,0,.06);
  --shadow-hover: 0 10px 40px -15px rgba(0,0,0,.15);
  --radius: 12px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow-x: hidden;
}

/* Subtle background texture */
.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.header {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease-out;
}

.logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.25rem;
  color: var(--text);
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.logo-svg path {
  transition: opacity 0.2s ease;
}

.name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.35em;
  color: var(--text);
}

.tagline {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.divider {
  width: min(280px, 80%);
  margin: 0 auto 2.5rem;
  color: var(--border);
  animation: fadeUp 0.8s ease-out 0.15s both;
}

.divider svg {
  width: 100%;
  height: 12px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 420px;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.contact-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.contact-card .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-top: 0.1rem;
}

.contact-card .icon svg {
  width: 100%;
  height: 100%;
}

.contact-card .label {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 4.5rem;
}

.contact-card .value {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  text-align: left;
}

.footer {
  margin-top: 2.5rem;
  animation: fadeUp 0.8s ease-out 0.45s both;
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin: 0;
}

/* --- Mac UYAP rehberi sayfası yerleşimi --- */
.page-macuyap {
  align-items: stretch;
  justify-content: flex-start;
  padding: 2rem 1.5rem 3rem;
}

.page-macuyap .header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 720px;
}

.page-macuyap .logo {
  margin: 0;
}

.page-macuyap .divider {
  width: 100%;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
}

.macuyap-main {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.macuyap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.macuyap-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 1rem;
}

.macuyap-card h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.macuyap-card p {
  margin: 0 0 0.75rem;
}

.macuyap-card ol {
  margin: 0 0 0.75rem 1.25rem;
  padding: 0;
}

.macuyap-card li {
  margin-bottom: 0.4rem;
}

.macuyap-card a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Kendi logonuzu kullanmak için: .logo içine img ekleyip .logo-svg'yi gizleyin */
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
