@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
/* =========================
   ROOT
========================= */
:root {
  --primary-color: #906e0c;
  --secondary-color: #edce17;
  --gold-light: #f8e27c;
  --gold-soft: #fff6d1;
}
/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
/* =========================
   HEADER
========================= */
.header-bg {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(237, 206, 23, 0.18);
  box-shadow: 0 4px 30px rgba(169, 131, 16, 0.08);
  transition: 0.4s ease;
}
/* =========================
   CONTAINER
========================= */
.header-container {
  max-width: 1280px;
  margin: auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* =========================
   LEFT SIDE
========================= */
.left-side {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* =========================
   LOGO
========================= */
.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  /* Remove circle */
  border-radius: 50;
  /* Remove border */
  border: none;
  /* Remove background gradient */
  background: transparent;
  /* Remove padding */
  padding: 0;
  /* Remove shadow/glow */
  box-shadow: none;
  transition: 0.4s ease;
}
.logo:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 0 5px rgba(237, 206, 23, 0.25),
    0 14px 35px rgba(144, 110, 12, 0.28);
}
/* =========================
   LOGO TEXT
========================= */
.logo-text h1 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.2;
}
.logo-text p {
  font-size: 11px;
  color: #777;
  margin-top: 1px;
}
/* =========================
   DESKTOP MENU
========================= */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* =========================
   NAV LINKS
========================= */
.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  padding: 4px 2px;
  letter-spacing: 0.2px;
}
.nav-link:hover {
  color: var(--primary-color);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--secondary-color), #ffd700);
  transition: 0.35s ease;
}
.nav-link:hover::after {
  width: 100%;
}
/* =========================
   SOCIAL ICONS
========================= */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-icons a {
  color: var(--primary-color);
  font-size: 17px;
  transition: 0.3s ease;
}
.social-icons a:hover {
  transform: translateY(-3px);
  color: #c49a06;
}
/* =========================
   DONATE BUTTON
========================= */
.donate-btn {
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-color), #c79a09);
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: 0.35s ease;
  box-shadow: 0 6px 18px rgba(144, 110, 12, 0.18);
}
.donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(144, 110, 12, 0.28);
}
/* =========================
   MENU BUTTON
========================= */
.menu-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
.menu-btn span {
  width: 27px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  border-radius: 20px;
  transition: 0.35s ease;
}
/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff, var(--gold-soft));
  z-index: 9999;
  padding: 100px 28px 40px;
  transition: 0.45s ease;
  overflow-y: auto;
}
.mobile-menu.active {
  left: 0;
}
/* =========================
   MOBILE CONTENT
========================= */
.mobile-content {
  display: flex;
  flex-direction: column;
}
.mobile-content h2 {
  color: var(--primary-color);
  font-size: 25px;
  line-height: 1.3;
}
.mobile-subtitle {
  color: #666;
  margin-top: 5px;
  margin-bottom: 32px;
  font-size: 14px;
}
/* =========================
   MOBILE LINKS
========================= */
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-links a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
}
.mobile-links a:hover {
  color: var(--primary-color);
  transform: translateX(6px);
}
/* =========================
   MOBILE BUTTON
========================= */
.mobile-donate {
  width: fit-content;
  margin-top: 30px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-color), #c79a09);
  color: white;
  padding: 13px 26px;
  border-radius: 13px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(144, 110, 12, 0.22);
}
/* =========================
   CONTACT
========================= */
.mobile-contact {
  margin-top: 30px;
}
.mobile-contact p {
  margin-bottom: 10px;
  color: #555;
  font-size: 14px;
}
/* =========================
   MOBILE SOCIAL
========================= */
.mobile-social {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}
.mobile-social a {
  color: var(--primary-color);
  font-size: 22px;
  transition: 0.3s ease;
}
.mobile-social a:hover {
  transform: translateY(-3px);
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
}
@media (max-width: 768px) {
  .header-container {
    padding: 10px 16px;
  }
  .logo {
    width: 52px;
    height: 52px;
  }
  .logo-text h1 {
    font-size: 16px;
  }
  .mobile-content h2 {
    font-size: 22px;
  }
}
@media (max-width: 520px) {
  .logo-text {
    display: none;
  }
  .mobile-menu {
    padding: 95px 22px 35px;
  }
  .mobile-links a {
    font-size: 17px;
  }
}