/* 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;
}

/* 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;
}

/* WHO WE ARE - HERO SECTION */
.who-hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("/images/People11.jpg") center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  text-align: center;
}

.who-hero-container {
  max-width: 900px;
}

.who-hero-heading {
  font-size: 5rem;
  font-weight: 900;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    90deg,
    #a76e06ff,
    #920202ff,
    #916109ff
  ); /* orange to red */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Optional stroke for popping effect */
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);

  /* Optional glow */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);

  transition: all 0.4s ease-in-out;
}

.who-hero-heading::before,
.who-hero-heading::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #8a0505ff, #885903ff);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s ease-in-out;
}

.who-hero-heading::after {
  bottom: -16px;
  background: linear-gradient(90deg, #fdcb6e, #ff4c4c);
}

.who-hero-heading:hover::before,
.who-hero-heading:hover::after {
  width: 100%;
}

.who-hero-subtext {
  text-align: center;
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-top: 1rem;
}

/* Fade in animation */
/* Entry animation */

/* OUR IDENTITY SECTION */
/* OUR IDENTITY SECTION */
.who-identity-section {
  background-color: #fefefe;
  min-height: 70vh;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-identity-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.who-identity-text,
.who-identity-image {
  flex: 1 1 500px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.who-identity-text h2 {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.who-identity-text p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.7;
}

.who-identity-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Fade-in trigger (controlled via JS observer) */
.fade-in-stagger .who-identity-text.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.fade-in-stagger .who-identity-image.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* OUR CALLING SECTION - DARK THEME */
.who-calling-section {
  background: linear-gradient(to right, #0d0d0d, #1a1a1a);
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.who-calling-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}

.who-calling-text,
.who-calling-image {
  flex: 1 1 500px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.who-calling-text h2 {
  font-size: 2.5rem;
  color: #ffffff; /* Bright white for contrast */
  margin-bottom: 1rem;
}

.who-calling-text p {
  font-size: 1.2rem;
  color: #cccccc; /* Light gray for body text */
  line-height: 1.7;
}

.who-calling-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08); /* subtle light shadow for dark background */
}

/* Reveal animation */
.who-calling-text.visible,
.who-calling-image.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered effect */
.who-calling-text {
  transition-delay: 0.3s;
}

.who-calling-image {
  transition-delay: 0.6s;
}

/* TIMELINE SECTION */
.who-timeline-section {
  background-color: #f9f9f9;
  min-height: 70vh;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
}

.who-timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.who-timeline-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.who-timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-timeline-list li {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #d92332;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.who-timeline-list li.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.timeline-year {
  font-weight: bold;
  color: #d92332;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.who-timeline-list li p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Fade in when in view */
.who-timeline-container.fade-in-stagger li.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

/* OUR JOURNEY */
/* Section Base */
.who-journey-section {
  background: #111;
  padding: 5rem 1rem;
  min-height: 70vh;
}

.who-journey-container {
  max-width: 1366px;
  margin: 0 auto;
  text-align: center;
}

.who-journey-heading {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #f9f9f9;
}

/* Card Grid */
.who-journey-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

/* Card Style */
.journey-card {
  position: relative;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 1;
}

/* Hover Elevation */
.journey-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Image */
.journey-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.journey-content {
  padding: 1.5rem;
}

.journey-content h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: #d63333;
}

.journey-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ::before + ::after Hover Overlay */
.journey-card::before,
.journey-card::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: 0;
  z-index: -1;
  transition: all 0.4s ease;
}

.journey-card::before {
  background: linear-gradient(
    135deg,
    rgba(214, 51, 51, 0.05),
    rgba(214, 51, 51, 0.15)
  );
  opacity: 0;
}

.journey-card::after {
  border: 2px solid transparent;
}

/* On Hover */
.journey-card:hover::before {
  opacity: 1;
}

.journey-card:hover::after {
  border-color: #d63333;
  transform: scale(1.02);
}

/* Fade-in Stagger Animation (keep this) */
.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);
}

/* QUOTE SLIDER SECTION */
.who-quote-section {
  background: #fff;
  padding: 5rem 1rem;
  /* min-height: 70vh; */
}

.who-quote-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.who-quote-heading {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #2d2d2d;
}

.quote-slider {
  position: relative;
  overflow: hidden;
  height: 160px;
}

.quote-slide {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.quote-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.quote-author {
  color: #d63333;
  font-weight: bold;
}

/* Fade-in scroll animation */
.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);
}

/* FAQ SECTION */
.who-faq-section {
  background: #f9f9f9;
  padding: 5rem 1rem;
  /* min-height: 70vh; */
}

.who-faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.who-faq-heading {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #2d2d2d;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.2rem;
  padding: 1.2rem;
  text-align: left;
  font-weight: bold;
  color: #d63333;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question::before {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.2rem 1.2rem 1.2rem;
}

.faq-answer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* PRAYER FORM SECTION */
/* Section styling */
.prayer-section {
  background: #111; /* faded dark */
  color: #fff;
  padding: 4rem 1rem;
  /* min-height: 60vh; */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prayer-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Toggle Button */
.prayer-toggle {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.8rem 2rem;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.prayer-toggle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background: #d63333;
  transition:
    width 0.3s ease,
    left 0.3s ease;
}

.prayer-toggle:hover {
  color: #d63333;
  background: #fff;
}

.prayer-toggle:hover::before {
  width: 100%;
  left: 0;
}

/* Form hidden by default */
.hidden {
  display: none;
}

/* Form styling */
.prayer-form {
  background: #222;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 10px;
  animation: fadeInDown 0.6s ease forwards;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.submit-btn {
  background: #d63333;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #b92727;
}

/* Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------- */
/* ------------- */
/* ----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; /* height of navbar */
    left: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 998;
  }

  .nav-links.active {
    display: flex; /* slide down when active */
    animation: slideDown 0.3s ease;
  }

  @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 – TABLET (<= 992px) */
/* ============================= */
@media (max-width: 992px) {
  /* Navbar */
  .navbar-container {
    flex-wrap: nowrap;
  }

  .searchBox {
    display: none; /* hide search on tablet/mobile */
  }

  .social-links {
    font-size: 0.9rem;
    gap: 10px;
  }

  .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 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
  }

  /* Dropdown menus inside mobile nav */
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 15px;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  /* Hero section */
  .who-hero-heading {
    font-size: 3rem;
  }

  .who-hero-subtext {
    font-size: 1.2rem;
  }

  /* Two-column sections stack */
  .who-identity-container,
  .who-calling-container {
    flex-direction: column;
    text-align: center;
  }

  .who-identity-text,
  .who-calling-text {
    padding: 0 15px;
  }

  .who-identity-image img,
  .who-calling-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* Timeline */
  .who-timeline-list {
    padding: 0 15px;
  }

  /* Journey cards */
  .who-journey-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  /* Quote slider */
  .who-quote-heading {
    font-size: 2rem;
  }

  .quote-text {
    font-size: 1.1rem;
  }
}

/* ============================= */
/* RESPONSIVENESS – MOBILE (<= 768px) */
/* ============================= */
@media (max-width: 768px) {
  /* Hero */
  .who-hero-heading {
    font-size: 2.2rem;
  }

  .who-hero-subtext {
    font-size: 1rem;
  }

  /* Identity & Calling */
  /* .who-identity-section ,
  .who-calling-section  {
    min-height: fit-content;
  } */

  .who-identity-text h2,
  .who-calling-text h2 {
    font-size: 1.6rem;
  }

  .who-identity-text p,
  .who-calling-text p {
    font-size: 0.95rem;
  }

  /* Timeline */
  .timeline-year {
    font-size: 1rem;
  }

  .who-timeline-heading {
    font-size: 1.8rem;
  }

  /* Journey cards */
  .journey-content h3 {
    font-size: 1.2rem;
  }

  .journey-content p {
    font-size: 0.9rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

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

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

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 */
}

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