/* ============================================================
   Fundacja ME/CFS Polska — Arkusz stylów główny
   ============================================================ */

/* ---- Zmienne kolorów — tryb ciemny (domyślny) ---- */
:root {
  --color-bg:           #1a1625;
  --color-surface:      #221d30;
  --color-surface-2:    #2a2440;
  --color-accent:       #6B5BA8;
  --color-accent-hover: #8B7DC8;
  --color-text:         #EDEAF5;
  --color-text-muted:   #A89EC0;
  --color-border:       #3a3255;
  --color-warning-bg:   #2d1f3d;
  --color-warning-text: #d4b8ff;
  --color-nav:          #6B5BA8;
  --color-nav-text:     #FFFFFF;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.4);
  --shadow-nav:  0 2px 8px  rgba(0, 0, 0, 0.5);

  --spacing-section: 80px;
  --spacing-card:    32px;
  --max-width:       1120px;
  --text-max-width:  680px;

  --font: 'Inter', 'Source Sans Pro', system-ui, -apple-system, sans-serif;
}

/* ---- Zmienne kolorów — tryb jasny ---- */
html.light {
  --color-bg:           #FDFCFF;
  --color-surface:      #F4F1FF;
  --color-surface-2:    #EAE6FF;
  --color-accent:       #6B5BA8;
  --color-accent-hover: #5a4a97;
  --color-text:         #2D2640;
  --color-text-muted:   #6B5E85;
  --color-border:       #D5CFEE;
  --color-warning-bg:   #F0EBFF;
  --color-warning-text: #4a3580;
  --color-nav:          #6B5BA8;
  --color-nav-text:     #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ---- Linki ---- */
a {
  color: var(--color-accent);
  text-decoration: underline;
}

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

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

/* ---- Skip link (dostępność) ---- */
.skip-link {
  position: absolute;
  left: 0;
  top: -100%;
  background: var(--color-accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  z-index: 9999;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

/* ---- Typografia ---- */
h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.375rem);
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.3rem;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--spacing-section) 0;
}

.section + .section {
  border-top: 1px solid var(--color-border);
}

.text-muted {
  color: var(--color-text-muted);
}

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

/* ---- Logo (CSS mask — kolor przez currentColor) ---- */
.logo-img {
  display: inline-block;
  flex-shrink: 0;
  width: 130px;
  height: 61px;
  background-color: currentColor;
  -webkit-mask-image: url('logo.svg');
  mask-image: url('logo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
}

/* ---- Nawigacja ---- */
.nav {
  background: var(--color-nav);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-nav-text);
  flex-shrink: 0;
}

.nav-logo:hover {
  color: var(--color-nav-text);
  opacity: 0.88;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.1rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-links a {
  color: var(--color-nav-text);
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  white-space: nowrap;
  display: block;
  line-height: 1.4;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-nav-text);
}

/* Przełącznik trybu */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: var(--color-nav-text);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-family: var(--font);
  white-space: nowrap;
  line-height: 1.4;
  margin-left: 2rem;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ---- Karta z ikoną (filary, cechy) ---- */
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(107, 91, 168, 0.15);
  color: var(--color-accent);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

/* ---- Pole z przyciskiem kopiuj ---- */
.copy-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.copy-value {
  font-size: 0.95rem;
  flex: 1;
  word-break: break-all;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  padding: 0.28rem 0.65rem;
  font-size: 0.8rem;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.4;
}

.copy-btn:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.copy-btn.copied {
  background: #2d4a3e;
  color: #7ee8a2;
  border-color: transparent;
}

html.light .copy-btn.copied {
  background: #d0eddf;
  color: #1a3328;
  border-color: transparent;
}

/* ---- Blok disclaimer (kontakt) ---- */
.disclaimer-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-text-muted);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.disclaimer-block p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ---- Blok QR ---- */
.qr-area {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.qr-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  max-width: 220px;
}

.qr-block img {
  display: block;
  border-radius: var(--radius-sm);
  background: #fff;
}

.qr-block p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* ---- Lista forum (spolecznosc) ---- */
.forum-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.forum-features li {
  padding: 0.9rem 1.1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.forum-features li strong {
  color: var(--color-text);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.55rem;
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  margin-left: 0.25rem;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-nav-text);
  border-radius: 2px;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Menu mobilne */
.nav-mobile {
  display: none;
  background: var(--color-nav);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.5rem 1rem;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.nav-mobile li {
  margin: 0;
}

.nav-mobile a {
  display: block;
  color: var(--color-nav-text);
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-nav-text);
}

.nav-mobile .theme-toggle {
  margin-left: 0;
  font-size: 1rem;
  padding: 0.55rem 0.75rem;
}

/* ---- Hero (strona główna) ---- */
.hero {
  padding: var(--spacing-section) 0;
}

.hero h1 {
  margin-bottom: 1.25rem;
  max-width: var(--text-max-width);
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: var(--text-max-width);
  line-height: 1.8;
}

/* ---- Hero podstron ---- */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  margin-bottom: 0.6rem;
}

.page-hero .lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: var(--text-max-width);
  line-height: 1.75;
}

/* ---- Przyciski ---- */
.btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ---- Karty ---- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-card);
  box-shadow: var(--shadow-card);
}

.card h3 {
  color: var(--color-text);
}

/* ---- Siatki ---- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

/* Dokładnie 2 kolumny — 2×2 */
.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .grid-2col {
    grid-template-columns: 1fr;
  }
}

/* ---- Lista objawów ---- */
.symptom-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0;
}

.symptom-grid li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem 0.8rem 1.25rem;
  margin: 0;
  font-size: 0.95rem;
  position: relative;
}

.symptom-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

/* ---- Tabela ---- */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table-wrapper table {
  border-radius: var(--radius-md);
  overflow: hidden;
}

thead th {
  background: var(--color-accent);
  color: #fff;
  text-align: left;
  padding: 0.8rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

tbody td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: none;
}

/* Wiersze nasilenia — tryb ciemny (kolory zgodnie ze specyfikacją) */
.row-mild        { background: #2d4a3e; }
.row-moderate    { background: #4a3d1e; }
.row-severe      { background: #4a2e1e; }
.row-very-severe { background: #4a1e1e; }

/* Wiersze nasilenia — tryb jasny */
html.light .row-mild        { background: #d0eddf; color: #1a3328; }
html.light .row-moderate    { background: #f0e4b8; color: #3a2800; }
html.light .row-severe      { background: #f0d0b8; color: #3a1800; }
html.light .row-very-severe { background: #f0c0c0; color: #3a0000; }

.severity-label {
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.95rem;
}

/* ---- Blok ostrzegawczy (GET / CBT) ---- */
.warning-block {
  background: var(--color-warning-bg);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  color: var(--color-warning-text);
}

.warning-block p {
  margin-bottom: 0.6rem;
  color: var(--color-warning-text);
}

.warning-block p:last-child {
  margin-bottom: 0;
}

.warning-block strong {
  color: inherit;
}

/* ---- Notatka / callout ---- */
.note {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.note strong {
  color: var(--color-text);
}

/* ---- Tabela danych (klucz-wartość) ---- */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table tr {
  border-bottom: 1px solid var(--color-border);
}

.data-table tr:last-child {
  border-bottom: none;
}

.data-table th {
  text-align: left;
  padding: 0.7rem 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  background: transparent;
  text-transform: none;
  letter-spacing: 0;
  width: 200px;
  white-space: nowrap;
  vertical-align: top;
}

.data-table td {
  padding: 0.7rem 0.75rem;
  background: transparent;
  border-bottom: none;
}

/* ---- Blok przelewu bankowego ---- */
.transfer-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.transfer-block .data-table th,
.transfer-block .data-table td {
  padding: 0.8rem 1.25rem;
}

.transfer-block .data-table tr {
  border-bottom: 1px solid var(--color-border);
}

.transfer-block .data-table tr:last-child {
  border-bottom: none;
}

/* ---- Formularz kontaktowy ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 580px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font);
  font-size: 1rem;
  padding: 0.65rem 0.9rem;
  line-height: 1.5;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 0;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 130px;
}

.form-placeholder-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 0.25rem;
}

/* ---- Źródła ---- */
.sources {
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  margin-top: 1rem;
}

.sources h4 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.sources ol {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-left: 1.5rem;
}

.sources li {
  margin-bottom: 0.2rem;
}

/* ---- Stopka ---- */
footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
}

.footer-logo:hover {
  color: var(--color-text);
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  align-content: flex-start;
}

.footer-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  white-space: nowrap;
}

.footer-nav a:hover {
  color: var(--color-text);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-legal {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: right;
}

.footer-meta a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--color-text);
}

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .nav-links,
  .nav-desktop-toggle {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-section: 48px;
    --spacing-card: 20px;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .page-hero {
    padding: 2.5rem 0 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .data-table th {
    width: 130px;
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  thead th,
  tbody td {
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* ---- Druk (CSS dla lekarzy) ---- */
@media print {
  :root {
    --color-bg:         #fff;
    --color-surface:    #f5f5f5;
    --color-surface-2:  #eee;
    --color-text:       #000;
    --color-text-muted: #444;
    --color-border:     #ccc;
    --color-accent:     #4a3a8a;
    --color-warning-bg: #f0f0f0;
    --color-warning-text: #000;
  }

  .nav,
  .hamburger,
  .nav-mobile,
  .btn-group,
  .theme-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .section {
    padding: 1rem 0;
  }

  .page-hero {
    padding: 0.5rem 0 1rem;
  }

  a {
    color: #000;
    text-decoration: none;
  }

  a[href^="http"]::after,
  a[href^="mailto"]::after {
    content: " <" attr(href) ">";
    font-size: 0.8em;
    color: #555;
  }

  .card,
  .warning-block,
  .note,
  .transfer-block {
    border: 1pt solid #ccc !important;
    background: #f8f8f8 !important;
    box-shadow: none !important;
  }

  .row-mild,
  .row-moderate,
  .row-severe,
  .row-very-severe {
    background: transparent !important;
    border-left: 3pt solid #999;
  }

  .row-mild        { border-left-color: #2d7a5a; }
  .row-moderate    { border-left-color: #7a6a2d; }
  .row-severe      { border-left-color: #7a4a2d; }
  .row-very-severe { border-left-color: #7a2d2d; }

  thead th {
    background: #4a3a8a !important;
    color: #fff !important;
  }

  h1, h2, h3 {
    break-after: avoid;
    color: #000;
  }

  .table-wrapper {
    border: 1pt solid #ccc;
  }

  footer {
    border-top: 1pt solid #ccc;
    padding: 1rem 0;
    background: transparent;
  }

  .footer-nav {
    display: none;
  }
}
