@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:wdth,wght@100..125,100..900&display=swap');

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

html, body {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  font-family: "Mona Sans", Arial, sans-serif;
  background: #f9f9f9;
}

.mobile-navbar,
#burger,
label {
  display: none;
}

.desktop-navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #f9f9f9;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* === Logo === */
.CRC-logo img {
  height: 40px;
  width: auto;
}

/* === Center Nav Menu === */
.nav-center {
  display: flex;
  list-style: none;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* === Menu Items === */
.nav-center li {
  display: flex;
  align-items: center;
}

.nav-center li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-center li a:hover {
  background-color: #eee;
  color: #007acc;

}

.contact-bx a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  padding: 8px 12px;
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-bx a:hover {
  background-color: #eee;
  color: #007acc;
}

.contact-bx a svg {
  fill: currentColor;
  transition: transform 0.3s ease;
}

.contact-bx a:hover svg {
  transform: translateX(4px);
}
