/* google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400..700;1,400..700&family=Manufacturing+Consent&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Reset + General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
}

ul {
  list-style: none;
}

.new-section {
  min-height: 100vh;
  width: 100%;
}

/* GLOBAL STYLES */
.light-theme {
  background-color: #f8f9fa;
  color: #222;
}

.dark-theme {
  background-color: #121212;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 0;
}

.section-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.section-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.section-flex.reverse {
  flex-direction: row-reverse;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Main navbar wrapper */
.navbar-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1); /* faded white */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Container with max width */
.navbar-container {
  max-width: 1366px;
  min-height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  gap: 20px;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  display: block;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  list-style: none;
}

.social-links a {
  color: navy;
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: orange;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  flex: 1;
  justify-content: center;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: red;
  left: 0;
  bottom: -4px;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdowns */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  border-radius: 6px;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  color: #333;
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Use ::before for pointer/triangle */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 25px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent white transparent;
}

/* Search Box */
.searchBox {
  display: flex;
  align-items: center;
  gap: 5px;
}

.searchBox input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 20px 0 0 20px;
  outline: none;
  font-size: 0.9rem;
}

.searchBox button {
  padding: 6px 10px;
  background: navy;
  color: white;
  border: none;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.searchBox button:hover {
  background: orange;
}

/* DONATE HERO SECTION */
/* === SECTION LAYOUT === */
.donate-hero-section {
  min-height: 80vh;
  background: linear-gradient(to right, #f9f9f9, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* === FADE-IN ANIMATION === */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === CONTAINER === */
.donate-hero-container {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  position: relative;
}

/* === TITLE === */
.donate-hero-container h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  position: relative;
}
.donate-hero-container h1::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #c0392b;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 5px;
}

/* === SUBTEXT === */
.donate-subtext {
  font-size: 1.2rem;
  color: #555;
  margin-top: 1rem;
  line-height: 1.6;
}
.scripture {
  font-style: italic;
  color: #c0392b;
}

/* === BUTTON === */
.donate-btn {
  display: inline-block;
  margin-top: 2rem;
  background: #c0392b;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.donate-btn:hover {
  background: #922b21;
  transform: scale(1.05);
}

/* DONATE IMPACT SECTION */
/* === SECTION BACKGROUND === */
.donate-impact-section {
  background: #fefefe;
  padding: 6rem 1.5rem;
  min-height: 70vh;
  text-align: center;
}

/* === SECTION TITLE === */
.donate-impact-title {
  font-size: 2.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}
.donate-impact-title::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #c0392b;
  display: block;
  margin: 0.5rem auto 1rem;
  border-radius: 4px;
}

/* === INTRO TEXT === */
.donate-impact-intro {
  color: #555;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* === CARD LAYOUT === */
.impact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* === INDIVIDUAL CARD === */
.impact-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  width: 280px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}
.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* === ICONS === */
.impact-card i {
  font-size: 2.5rem;
  color: #c0392b;
  margin-bottom: 1rem;
}

/* === CARD TEXT === */
.impact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}
.impact-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* DONATION METHOD SECTION */
.donation-methods-section {
  background: #f9f9f9;
  padding: 6rem 1.5rem;
  min-height: 70vh;
  text-align: center;
}

/* Title Styling */
.donation-methods-title {
  font-size: 2.4rem;
  color: #34495e;
  margin-bottom: 1rem;
  position: relative;
}
.donation-methods-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #27ae60;
  display: block;
  margin: 0.5rem auto 2rem;
  border-radius: 3px;
}

/* Intro */
.donation-methods-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #555;
}

/* Grid Layout */
.donation-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Card Styles */
.donation-method-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}
.donation-method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Icon */
.donation-method-card i {
  font-size: 2.5rem;
  color: #27ae60;
  margin-bottom: 1rem;
}

/* Text */
.donation-method-card h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.donation-method-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Button */
.donate-btn {
  display: inline-block;
  background: #27ae60;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
  text-decoration: none;
}
.donate-btn:hover {
  background: #1e8449;
}

/* BANK DETAILS */
.bank-details-section {
  background: #fff;
  padding: 6rem 1.5rem;
  text-align: center;
  min-height: 70vh;
}
.bank-details-section h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.bank-details-section h2 i {
  color: #2980b9;
  margin-right: 0.5rem;
}
.bank-details-section p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.bank-card {
  background: #ecf0f1;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.bank-card h3 {
  font-size: 1.1rem;
  margin: 1rem 0;
  color: #2c3e50;
}
.bank-card h3 span {
  font-weight: bold;
  color: #27ae60;
}

.bank-note {
  font-style: italic;
  color: #999;
}

/* TESTIMONY ACKNOLEDGEMENT SECTION */
.giving-testimony-section {
  background: #f9f9f9;
  padding: 6rem 1.5rem;
  text-align: center;
  min-height: 70vh;
}

.giving-testimony-section h2 {
  font-size: 2.2rem;
  color: #c0392b;
  margin-bottom: 1rem;
}

.giving-testimony-section h2 i {
  color: #e74c3c;
  margin-right: 0.5rem;
}

.giving-impact-lead {
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.giving-testimony-card {
  background: white;
  padding: 2rem;
  border-left: 6px solid #e74c3c;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
}

.quote-mark {
  font-size: 3rem;
  color: #e74c3c;
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimony-text {
  font-style: italic;
  color: #444;
  font-size: 1.1rem;
  padding-left: 2rem;
}

.testifier {
  text-align: right;
  color: #888;
  margin-top: 1rem;
  font-weight: bold;
}

.btn-share {
  display: inline-block;
  padding: 12px 24px;
  background: #c0392b;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-share:hover {
  background: #e74c3c;
}

/* -------------- */
/* ------------- */
/* ----FOOTER---- */
/* ---------------- */
/* ------------------ */
.site-footer {
  background: #0a0a33;
  color: #f0f0f0;
  padding: 60px 20px 30px;
  font-family: "Lora", serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: orange;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: orange;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
  color: #f0f0f0;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: orange;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* ========== Mobile Navbar ========== */
@media (max-width: 1200px) {
  /* Make social icons smaller */
  .social-links a {
    font-size: 0.9rem;
  }

  /* Hide search box on mobile */
  .searchBox {
    display: none;
  }

  /* Hide nav links by default */
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Hamburger Button */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
  }

  .hamburger span {
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* Animate hamburger to "X" when active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }

  /* Dropdown menus should stack full width */
  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    box-shadow: none;
    padding: 0;
  }

  .dropdown-menu li {
    padding: 12px 20px;
    border-top: 1px solid #eee;
  }

  /* Show when active */
  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 500px; /* large enough to fit content */
  }
}

/* ========================= */
/* RESPONSIVENESS FOR GIVE PAGE */
/* ========================= */

/* Tablet adjustments */
@media (max-width: 992px) {
  .impact-cards,
  .donation-methods-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .giving-testimony-card {
    padding: 25px;
    font-size: 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  /* Hero section */
  .donate-hero-container {
    padding: 80px 20px;
    text-align: center;
  }
  .donate-hero-container h1 {
    font-size: 1.8rem;
  }
  .donate-subtext {
    font-size: 1rem;
  }

  /* Impact cards stack */
  .impact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .impact-card {
    text-align: center;
    padding: 20px;
  }

  /* Donation methods stack */
  .donation-methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .donation-method-card {
    text-align: center;
    padding: 20px;
  }

  /* Bank details */
  .bank-card {
    padding: 20px;
    font-size: 0.95rem;
  }

  /* Testimony card */
  .giving-testimony-card {
    margin: 20px 0;
    padding: 20px;
    text-align: center;
  }
  .giving-testimony-card .quote-mark {
    font-size: 2rem;
  }
  .giving-testimony-card .testimony-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

.dropdown-toggle .fa-sort-down {
  margin-left: 6px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  /* padding-bottom: 12px; */
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  /* background-color: gray; */
}

mark.search-highlight {
  background: rgba(255, 243, 128, 0.95); /* soft yellow */
  color: #111;
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 600;
  transition: background 1s ease;
}

/* wrapper used to replace original text nodes */
.search-wrapper {
  /* no extra styles needed, but kept for clarity */
}

/* =========================
   DONATION MODAL
========================= */

.donation-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.donation-modal.active {
  display: flex;
}

.donation-modal-content {
  position: relative;

  width: 100%;
  max-width: 600px;
  max-height: 90vh;

  padding: 40px;

  overflow-y: auto;

  background: #ffffff;
  border-radius: 20px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

  animation: donationModalAppear 0.3s ease;
}

@keyframes donationModalAppear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 18px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: #f1f1f1;
  color: #333;

  font-size: 1.6rem;
  cursor: pointer;

  transition: all 0.3s ease;
}

.close-modal:hover {
  background: #d32f2f;
  color: #ffffff;
}

.donation-modal-header {
  margin-bottom: 30px;
  text-align: center;
}

.donation-modal-header > i {
  margin-bottom: 12px;

  color: #d32f2f;
  font-size: 2.5rem;
}

.donation-modal-header h2 {
  margin: 0 0 10px;

  color: #0a0a33;
  font-size: 1.8rem;
}

.donation-modal-header p {
  margin: 0;

  color: #666;
  line-height: 1.6;
}

/* =========================
   DONATION OPTIONS
========================= */

.donation-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.donation-option {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 20px;

  border: 1px solid #eeeeee;
  border-radius: 14px;

  background: #fafafa;
}

.donation-option-icon {
  width: 55px;
  height: 55px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 1.4rem;
}

.zelle-icon {
  background: #f3e8ff;
  color: #6d28d9;
}

.cashapp-icon {
  background: #e8f8ee;
  color: #16a34a;
}

.donation-option-details {
  flex: 1;
}

.donation-option-details h3 {
  margin: 0 0 5px;

  color: #0a0a33;
}

.donation-option-details p {
  margin: 0 0 8px;

  color: #666;
  font-size: 0.9rem;
}

.donation-option-details strong {
  display: block;
  margin-bottom: 12px;

  color: #0a0a33;
  font-size: 0.95rem;
  word-break: break-word;
}

/* =========================
   PAYMENT BUTTONS
========================= */

.copy-payment-btn,
.cashapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 9px 14px;

  border: none;
  border-radius: 6px;

  font-size: 0.85rem;
  font-weight: 600;

  cursor: pointer;
  text-decoration: none;

  transition: all 0.3s ease;
}

.copy-payment-btn {
  background: #0a0a33;
  color: #ffffff;
}

.copy-payment-btn:hover {
  background: #17175a;
}

.cashapp-btn {
  background: #16a34a;
  color: #ffffff;
}

.cashapp-btn:hover {
  background: #128139;
}

.paypal-icon {
  background: #e8f0ff;
  color: #003087;
}

/* =========================
   MOBILE MODAL
========================= */

@media (max-width: 600px) {
  .donation-modal-content {
    padding: 35px 20px 25px;
  }

  .donation-option {
    align-items: flex-start;
  }

  .donation-option-icon {
    width: 45px;
    height: 45px;

    font-size: 1.1rem;
  }

  .donation-modal-header h2 {
    font-size: 1.5rem;
  }
}

/* ========================= */
/* BANK TRANSFER SECTION */
/* ========================= */

.bank-details-section {
  padding: 70px 20px;
  background: #f8f9fc;
}

.bank-details-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.bank-details-section h2 {
  text-align: center;
  color: #0a0a33;
  margin-bottom: 15px;
}

.bank-details-section > .container > p {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 30px;
  color: #666;
}

/* The actual bank information card */
.bank-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Bank contact box */
.bank-contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 25px;
  margin-top: 20px;
  background: #f5f7fb;
  border-left: 4px solid #0a0a33;
  border-radius: 10px;
  text-align: left;
}

.bank-contact-box > i {
  color: #0a0a33;
  font-size: 1.3rem;
}

.bank-contact-box div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bank-contact-box span {
  font-size: 0.9rem;
  color: #666;
}

.bank-contact-box a {
  color: #0a0a33;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}

.bank-contact-box a:hover {
  color: #d94a36;
}

@media (max-width: 900px) {
  .navbar-container {
    min-height: 75px;
    padding: 10px 18px;
    gap: 0;
    flex-wrap: nowrap;
  }

  .logo {
    flex: 1;
  }

  .logo img {
    width: 110px;
  }

  .social-links,
  .searchBox {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
  }

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