/* === Saved 2 Serve — Shared Styles === */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --thread-red: #c0392b;
  --thread-red-light: rgba(192, 57, 43, 0.08);
  --bg: #fafafa;
  --bg-warm: #f5f0eb;
  --text: #2c2c2c;
  --text-muted: #777;
  --text-light: #999;
  --white: #ffffff;
  --border: #e8e2dc;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.1);
  --radius: 12px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* === Navigation === */
.s2s-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}


.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: var(--thread-red-light);
}

.nav-link.active {
  color: var(--thread-red);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s;
}

/* === Nav Layout === */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* === Nav Socials === */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-social:hover {
  transform: translateY(-2px);
}

.nav-social svg {
  width: 16px;
  height: 16px;
}

.nav-social.facebook {
  background: #1877F2;
}
.nav-social.facebook:hover {
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.nav-social.youtube {
  background: #FF0000;
}
.nav-social.youtube:hover {
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.4);
}

.nav-social.spotify-icon {
  background: #1DB954;
}
.nav-social.spotify-icon:hover {
  box-shadow: 0 4px 14px rgba(29, 185, 84, 0.4);
}

.nav-social.instagram-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.nav-social.instagram-icon:hover {
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.4);
}

.nav-social.apple-icon {
  background: linear-gradient(135deg, #fc3c44, #fa57c1);
}
.nav-social.apple-icon:hover {
  box-shadow: 0 4px 14px rgba(252, 60, 68, 0.4);
}

/* === Pages === */
.page {
  display: none;
  padding-top: 60px;
}

.page.active {
  display: block;
}

/* === Hero === */
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.hero-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-verse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

.verse-ref {
  font-size: 0.85rem;
  color: var(--thread-red);
  font-style: normal;
}

/* === Page Heroes === */
.page-hero {
  padding: 6rem 2rem 3rem;
  text-align: center;
  background: var(--bg-warm);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* === Sections === */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--thread-red);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* === Mission Statement === */
.mission-statement {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--thread-red);
  box-shadow: var(--shadow);
}

/* === Hub Cards === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hub-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.hub-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--thread-red);
}

.hub-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hub-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === Badges === */
.badge-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.s2s-badge {
  padding: 0.35rem 1rem;
  border: 1px solid var(--thread-red);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--thread-red);
  letter-spacing: 0.5px;
}

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--thread-red);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === DJ Pricing === */
.dj-pricing {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-rate {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--thread-red);
  margin-bottom: 0.5rem;
}

.pricing-rate span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* === CTA Section === */
.cta-section {
  text-align: center;
  background: var(--bg-warm);
  border-radius: var(--radius);
  margin: 2rem auto;
  max-width: 800px;
}

.cta-verse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--thread-red);
  color: white;
}

.btn-primary:hover {
  background: #a93226;
  box-shadow: 0 4px 12px rgba(192,57,43,0.3);
}

/* === Streaming Links === */
.streaming-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.streaming-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  border: 2px solid;
}

.apple-music {
  color: #fc3c44;
  border-color: #fc3c44;
}
.apple-music:hover {
  background: #fc3c44;
  color: white;
}

.spotify {
  color: #1DB954;
  border-color: #1DB954;
}
.spotify:hover {
  background: #1DB954;
  color: white;
}

/* === Podcast === */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.podcast-season {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.podcast-season h3 {
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}

/* === Podcast === */
.podcast-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.podcast-artwork {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.podcast-meta h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.podcast-meta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.podcast-stat {
  font-size: 0.8rem;
  color: var(--thread-red);
  font-weight: 500;
  margin-top: 0.3rem;
}

.podcast-season-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.podcast-season-tab {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}

.podcast-season-tab:hover {
  border-color: var(--thread-red);
  color: var(--text);
}

.podcast-season-tab.active {
  background: var(--thread-red);
  color: white;
  border-color: var(--thread-red);
}

.podcast-episodes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.podcast-ep-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}

.podcast-ep-card:hover {
  border-color: var(--thread-red);
  box-shadow: var(--shadow);
}

.podcast-ep-card.playing {
  border-color: var(--thread-red);
  background: var(--thread-red-light);
}

.podcast-ep-info {
  flex: 1;
  min-width: 0;
}

.podcast-ep-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.podcast-ep-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.podcast-ep-play {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--thread-red);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.podcast-ep-play:hover {
  background: #a93226;
}

.podcast-player {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.podcast-player.hidden {
  display: none;
}

.podcast-loading,
.podcast-error {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

.podcast-error button {
  margin-top: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--thread-red);
  background: var(--white);
  color: var(--thread-red);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.podcast-error button:hover {
  background: var(--thread-red);
  color: white;
}

.podcast-player iframe {
  width: 100%;
  border: none;
}

@media (max-width: 480px) {
  .podcast-header {
    flex-direction: column;
    text-align: center;
  }
  .podcast-ep-title {
    white-space: normal;
  }
}

/* === Ministry Form === */
.ministry-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group > label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--thread-red);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.4rem 0;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--thread-red);
  width: 16px;
  height: 16px;
}

.ministry-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.ministry-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-success {
  color: #27ae60;
}

.form-error {
  color: var(--thread-red);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* === Before/After Gallery === */
.ba-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ba-pair {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.ba-pair img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ba-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.ba-label.ba-after {
  background: var(--thread-red);
}

.work-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.work-carousel {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: workScroll 60s linear infinite;
}

.work-carousel:hover {
  animation-play-state: paused;
}

.work-carousel img {
  flex-shrink: 0;
  width: 260px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

@keyframes workScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .ba-pair img {
    height: 160px;
  }
  .work-carousel img {
    width: 200px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .ba-gallery {
    grid-template-columns: 1fr;
  }
  .fb-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* === Facebook Connect === */
.fb-connect-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.fb-iframe-wrapper {
  max-width: 500px;
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
}

.fb-iframe-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}

.fb-iframe-wrapper iframe {
  display: block;
  width: 100%;
  height: 600px;
  margin-top: -130px;
  border: none;
}

.fb-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-fb-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
  background: #1877F2;
  transition: all 0.2s;
}

.btn-fb-follow:hover {
  background: #1465cc;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.btn-messenger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: #1877F2;
  background: var(--white);
  border: 2px solid #1877F2;
  transition: all 0.2s;
}

.btn-messenger:hover {
  background: #1877F2;
  color: #fff;
}

/* === Contact === */
.contact-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-section-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--thread-red);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-items .contact-link {
  font-size: 0.9rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  .contact-section-card {
    padding: 1.25rem 1rem;
  }
  .contact-items .contact-link {
    font-size: 0.82rem;
  }
  .contact-section-title {
    font-size: 1rem;
    text-align: center;
  }
  .contact-items {
    align-items: center;
    text-align: center;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.contact-link {
  color: var(--thread-red);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

/* === Contact Layout === */
.contact-top-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-left-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-photo-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-owners-photo {
  width: 280px;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .contact-top-row {
    grid-template-columns: 1fr;
  }
  .contact-photo-center {
    order: -1;
  }
}

/* === Placeholder === */
.placeholder-card {
  background: var(--bg-warm);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}

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

/* === Footer === */
.s2s-footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-credit {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.75rem;
}

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

/* === Mobile === */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .card-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .podcast-grid,
  .contact-grid,
  .contact-sections {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 5rem 1.5rem 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 2rem 1.25rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .s2s-nav {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 1.5rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .streaming-links {
    flex-direction: column;
    align-items: center;
  }
}
