/* =========================
HEADER.CSS
========================= */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:"Roboto", sans-serif;
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff; /* solid white */
  backdrop-filter: none; /* remove blur effect */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* DESKTOP */
.desktop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 25px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 50px;
  height: 50px;

  border-radius: 50%;

  overflow: hidden;

  background: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo-circle img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.title-box h1 {
  font-size: 17px;
  color: #111;
  font-weight: 700;
}

.title-box p {
  font-size: 11px;
  color: #666;
}

.desktop-nav {
  display: flex;
  gap: 22px;
}

.desktop-nav a {
  text-decoration: none;

  color: #222;
  font-size: 14px;
  font-weight: 500;

  transition: 0.3s;
}

.desktop-nav a:hover {
  color: #00b7ff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 35px;
  height: 35px;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #f0f4ff;

  text-decoration: none;
  color: #00b7ff;
}

.donate-btn {
  border: none;

  padding: 10px 20px;

  border-radius: 40px;

  background: linear-gradient(135deg, #00b7ff, #ffa000);

  color: #fff;

  font-weight: 600;
  cursor: pointer;
}

/* MOBILE */

.mobile-header {
  display: none;

  justify-content: space-between;
  align-items: center;

  padding: 12px 18px;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-title h2 {
  font-size: 14px;
  color: #111;
}

.mobile-title p {
  font-size: 10px;
  color: #666;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;

  border: none;
  border-radius: 50%;

  background: #f0f4ff;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;
  color: #00b7ff;

  font-size: 18px;

  cursor: pointer;
}

/* HAMBURGER */

.hamburger {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: linear-gradient(135deg, #00b7ff, #ffa000);

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

.hamburger i {
  color: #fff;
  font-size: 24px;
}

/* SEARCH POPUP */

.search-popup {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background: rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(8px);

  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding-top: 120px;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;

  z-index: 999999;
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
}

.search-content {
  width: 92%;
  max-width: 650px;

  background: #fff;

  border-radius: 28px;

  padding: 35px 30px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.search-content h2 {
  text-align: center;

  font-size: 32px;
  color: #111;
}

.search-content p {
  text-align: center;

  margin-top: 10px;

  color: #666;
  font-size: 14px;
}

/* SEARCH INPUT */

.search-input-box {
  margin-top: 28px;

  display: flex;
  align-items: center;

  background: #f4f7fb;

  border-radius: 60px;

  padding: 8px;
}

.search-input-box input {
  flex: 1;

  border: none;
  outline: none;

  background: transparent;

  padding: 16px 20px;

  font-size: 15px;
}

.search-input-box button {
  width: 55px;
  height: 55px;

  border: none;
  border-radius: 50%;

  background: linear-gradient(135deg, #00b7ff, #ffa000);

  color: #fff;

  font-size: 22px;

  cursor: pointer;
}

/* SEARCH CLOSE */

.search-close {
  position: absolute;

  top: 35px;
  right: 35px;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;

  background: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 28px;

  cursor: pointer;
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;

  top: 0;
  right: -100%;

  width: 85%;
  max-width: 360px;
  height: 100vh;

  background: #fff;

  z-index: 99999;

  transition: 0.4s ease;
}

.mobile-menu.active {
  right: 0;
}

.menu-content {
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 50px 25px 25px;
}

/* CLOSE MENU */

.close-menu {
  position: absolute;

  top: 15px;
  right: 15px;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 50%;

  background: #ffffff;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

.close-menu i {
  font-size: 24px;
}

/* BRAND */

.mobile-brand h1 {
  font-size: 24px;
  line-height: 1.3;

  color: #111;
}

.mobile-brand p {
  margin-top: 8px;

  font-size: 13px;
  color: #666;
}

/* NAV */

.mobile-nav {
  margin-top: 28px;

  display: flex;
  flex-direction: column;

  gap: 2px;
}

.mobile-nav a {
  text-decoration: none;

  padding: 11px 0;

  color: #222;
  font-size: 15px;

  border-bottom: 1px solid #eee;
}

/* SOCIAL */

.mobile-socials {
  display: flex;
  gap: 10px;

  margin-top: 22px;
}

.mobile-socials a {
  width: 40px;
  height: 40px;

  border-radius: 50%;

  background: linear-gradient(135deg, #00b7ff, #ffa000);

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;
  color: #fff;
}

/* DONATE */

.mobile-donate-btn {
  margin-top: 22px;

  text-decoration: none;

  background: linear-gradient(135deg, #00b7ff, #ffa000);

  color: #fff;

  text-align: center;

  padding: 14px;

  border-radius: 40px;

  font-weight: 600;
}

/* CONTACT */

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  font-size: 13px;
  color: #555;

  margin-bottom: 10px;
}

/* OVERLAY */

.overlay {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background: rgba(0, 0, 0, 0.4);

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;

  z-index: 9999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
  }
}

@media (min-width: 993px) {
  .mobile-menu,
  .overlay {
    display: none !important;
  }
}
