/* ==========================================================================
   Barsvet Veteriner Kliniği — Design tokens
   Palette:  Paper #F4F7F3 · Ink #17231F · Petrol #1E4744
             Amber #DD9A34 · Mist #E6EDE8 · Scan #4FAE7C
   Display: Fraunces (soft warm serif) · Body: Manrope · Data: IBM Plex Mono
   Signature: "tanı ekranı" (diagnostic-screen) frame — corner brackets +
   mono scanline tags echo the clinic's own X-ray / ultrasound monitors.
   ========================================================================== */

:root {
  --paper: #f4f7f3;
  --paper-alt: #ffffff;
  --mist: #e6ede8;
  --ink: #17231f;
  --ink-soft: #46554e;
  --petrol: #1e4744;
  --petrol-deep: #12302e;
  --amber: #dd9a34;
  --amber-deep: #b97c1f;
  --scan: #3f9c6d;
  --line: #d3ddd6;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --radius: 6px;
  --radius-lg: 14px;
  --shadow-soft: 0 1px 2px rgba(18, 48, 46, 0.06), 0 12px 32px -16px rgba(18, 48, 46, 0.18);
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.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;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--petrol);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: var(--radius);
}
.skip-link:focus {
  left: var(--gutter);
  top: var(--gutter);
}

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--scan);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--scan) 25%, transparent);
}

h1 { font-size: clamp(2.5rem, 4.6vw + 1rem, 4.1rem); }
h2 { font-size: clamp(1.9rem, 2.4vw + 1rem, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1vw + 1rem, 1.5rem); }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head p {
  margin-top: 0.9rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: var(--petrol-deep); }
.btn-primary:hover { background: var(--amber-deep); }
.btn-outline { border-color: color-mix(in srgb, currentColor 35%, transparent); color: var(--paper); }
.btn-outline:hover { border-color: currentColor; }
.btn-ghost { color: var(--petrol); border-color: var(--line); background: var(--paper-alt); }
.btn-ghost:hover { border-color: var(--petrol); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  padding-block: 0.85rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--petrol-deep);
}
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.brand-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links {
  display: flex;
  gap: 1.9rem;
  font-weight: 600;
  font-size: 0.96rem;
}
.nav-links a {
  position: relative;
  padding-block: 0.3rem;
  color: var(--ink-soft);
  transition: color 0.15s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--petrol-deep); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--petrol-deep);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem 0.65rem;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--petrol-deep);
  color: var(--paper);
  overflow: clip;
  padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, color-mix(in srgb, var(--scan) 35%, transparent) 0%, transparent 68%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-eyebrow { color: color-mix(in srgb, var(--scan) 70%, #fff 30%); }
.hero h1 {
  margin-top: 1rem;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero-lede {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  max-width: 34rem;
  color: color-mix(in srgb, var(--paper) 80%, transparent);
}
.hero-actions {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-meta {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--paper) 70%, transparent);
}
.hero-meta strong {
  display: block;
  font-family: var(--font-body);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
}

/* Diagnostic-screen photo mosaic (signature element) */
.scan-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
  height: clamp(340px, 42vw, 480px);
}
.scan-grid,
.scan-tile,
.hero-copy,
.services-grid > *,
.trust-grid > *,
.gallery-grid > *,
.footer-grid > * {
  min-width: 0;
}

.scan-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--scan) 45%, transparent);
  background: var(--petrol);
}
.scan-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}
.scan-tile.is-tall { grid-row: span 2; }
.scan-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 26, 24, 0.78) 100%);
}
.scan-tag {
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0.65rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--scan) 55%, #fff 45%);
}
.scan-tag b { color: #fff; font-family: var(--font-body); font-size: 0.82rem; display: block; font-weight: 700; }
.scan-corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 1.5px solid color-mix(in srgb, var(--scan) 80%, #fff 20%);
  z-index: 2;
  opacity: 0.85;
}
.scan-corner.tl { top: 0.55rem; left: 0.55rem; border-right: 0; border-bottom: 0; }
.scan-corner.br { bottom: 0.55rem; right: 0.55rem; border-left: 0; border-top: 0; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.section-alt { background: var(--mist); }
.section-petrol {
  background: var(--petrol-deep);
  color: var(--paper);
}
.section-petrol .section-head p { color: color-mix(in srgb, var(--paper) 72%, transparent); }

/* Why-us trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}
.trust-card {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
}
.trust-card .eyebrow { margin-bottom: 0.9rem; }
.trust-card h3 { margin-bottom: 0.6rem; }
.trust-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* Services summary grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.service-card:hover { border-color: var(--scan); transform: translateY(-3px); }
.service-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--scan);
}
.service-card h3 { font-size: 1.18rem; }
.service-card p { color: var(--ink-soft); font-size: 0.94rem; }
.service-card.is-detailed { padding: 2rem; }
.service-card.is-detailed p { font-size: 0.98rem; line-height: 1.65; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-portrait {
  aspect-ratio: 3 / 4;
  border-color: var(--line);
}
.about-title { margin-top: 1rem; }
.about-copy {
  margin-top: 1.1rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 34rem;
}
.about-areas { margin-top: 1.4rem; }
.area-chip-light { color: var(--petrol); border-color: var(--line); }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--mist);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  left: 0.6rem; bottom: 0.6rem;
  right: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.55);
}

/* Service area / GEO block */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.area-chip {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  border: 1px solid color-mix(in srgb, var(--paper) 30%, transparent);
  color: var(--paper);
  padding: 0.5em 1em;
  border-radius: 999px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; max-width: 48rem; }
.faq-item {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--scan);
  transition: transform .2s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
}

/* Map + contact card */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }
.contact-card {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-row { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-row .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--mist);
  color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 0.98rem; }
.contact-row span, .contact-row a { color: var(--ink-soft); font-size: 0.94rem; }
.contact-row a:hover { color: var(--petrol); text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours-table td { padding: 0.4rem 0; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; font-family: var(--font-mono); color: var(--ink-soft); }
.hours-table tr.is-today td { color: var(--petrol-deep); font-weight: 700; }

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  background: color-mix(in srgb, var(--scan) 16%, transparent);
  color: var(--scan);
  width: fit-content;
}
.open-badge.is-closed { background: color-mix(in srgb, #b3492f 14%, transparent); color: #b3492f; }
.open-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* Form */
.form-grid { display: grid; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.86rem; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 0.75em 0.9em;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); }
.form-success {
  background: color-mix(in srgb, var(--scan) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--scan) 40%, transparent);
  color: var(--petrol-deep);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.form-error {
  background: color-mix(in srgb, #b3492f 12%, transparent);
  border: 1px solid color-mix(in srgb, #b3492f 35%, transparent);
  color: #8f3a26;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.5em;
  margin-bottom: 1.2rem;
}
.breadcrumb a:hover { color: var(--petrol); }

/* Page hero (services/contact) */
.page-hero {
  background: var(--petrol-deep);
  color: var(--paper);
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.page-hero p { margin-top: 0.9rem; color: color-mix(in srgb, var(--paper) 75%, transparent); max-width: 42rem; }

/* Footer */
.site-footer {
  background: var(--petrol-deep);
  color: color-mix(in srgb, var(--paper) 82%, transparent);
  padding-block: clamp(3rem, 5vw, 4rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
}
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; max-width: 26rem; color: color-mix(in srgb, var(--paper) 68%, transparent); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scan);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--paper) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.footer-social a:hover { border-color: var(--amber); color: var(--amber); }
.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--paper) 55%, transparent);
}

/* WhatsApp floating action */
.fab-whatsapp {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25b26a;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform .2s var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.06); }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: minmax(0, 1fr); }
  .scan-grid { height: clamp(300px, 70vw, 420px); order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-wrap { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  .nav-links, .nav-phone-label { display: none; }
  .brand small { display: none; }
  .nav-primary { gap: 0.9rem; }
  .nav-cta { gap: 0.4rem; }
  .nav-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
  .nav-primary.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper-alt);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1.2rem var(--gutter) 1.6rem;
    gap: 1rem;
  }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .services-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-meta { gap: 1.2rem 1.6rem; }
  .scan-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    height: auto;
  }
  .scan-tile, .scan-tile.is-tall {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
.footer-credit{
    width:100%;
    margin-top:12px;
    text-align:center;
    font-size:.9rem;
    color:rgba(255,255,255,.7);
}

.footer-credit a{
    color:#DD9A34;
    font-weight:600;
    text-decoration:none;
    transition:.2s;
}

.footer-credit a:hover{
    color:#fff;
}
