.navbar-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.navbar-header {
  padding-top: 6px;
  padding-bottom: 6px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(18, 7, 112, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar-logo {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.navbar-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}

.navbar-logo-text strong {
  color: #120770;
  font-size: 22px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 0 rgba(253, 210, 185, 0.5);
  white-space: nowrap;
  transition: font-size 0.15s ease;
}

.navbar-contact {
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}

.navbar-contact-box {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease;
}

.navbar-contact-box:hover {
  transform: translateY(-2px);
}

.navbar-contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fefad3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c0788;
  font-size: 24px;
  box-shadow: 0 6px 12px rgba(12, 7, 136, 0.08), inset 0 -2px 0 #fdd2b9;
  border: 1px solid #fdd2b9;
  transition: background 0.2s, color 0.2s;
}

.navbar-contact-box:hover .navbar-contact-icon {
  background: #fdd2b9;
  color: #120770;
}

.navbar-contact-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #120770;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.navbar-contact-box p {
  color: #211c1b;
  opacity: 0.8;
  font-size: 15px;
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.3;
}

.navbar-contact-box p a {
  color: inherit;
  text-decoration: none;
}

.navbar-donate-btn {
  width: 170px;
  height: 54px;
  background: #0c0788;
  color: #fefad3;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 18px -6px rgba(12, 7, 136, 0.35);
  border: 1px solid #fdd2b9;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.navbar-donate-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253, 210, 185, 0.3), transparent);
  transition: left 0.5s ease;
}

.navbar-donate-btn:hover {
  background: #120770;
  transform: translateY(-2px);
  box-shadow: 0 16px 22px -8px rgba(12, 7, 136, 0.5);
  border-color: #fefad3;
}

.navbar-donate-btn:hover::after {
  left: 100%;
}

@media screen and (max-width: 768px) {
  .navbar-container {
    padding: 0 8px;
  }

  .navbar-header {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .navbar-content {
    flex-wrap: nowrap;
  }

  .navbar-logo {
    min-width: 0;
    overflow: hidden;
    gap: 6px;
  }

  .navbar-logo-text {
    min-width: 0;
    overflow: hidden;
  }

  .navbar-logo-image {
    width: 64px;
    height: 64px;
  }

  .navbar-logo-text strong {
    font-size: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
  }

  .navbar-contact-box {
    display: none;
  }

  .navbar-contact {
    gap: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }

  .navbar-donate-btn {
    width: 120px;
    height: 46px;
    font-size: 12px;
    padding: 0 4px;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 420px) {
  .navbar-logo-image {
    width: 54px;
    height: 54px;
  }

  .navbar-logo-text strong {
    font-size: 16px;
  }

  .navbar-donate-btn {
    width: 110px;
    height: 42px;
    font-size: 12px;
  }
}

@media screen and (max-width: 340px) {
  .navbar-logo-image {
    width: 48px;
    height: 48px;
  }

  .navbar-donate-btn {
    width: 100px;
    height: 38px;
    font-size: 10px;
  }
}

