/* Header Layout */
.header-bar {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: #ff0000;
  color: #ffffff;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}

.logo-section { flex: 0 0 10%; }
.nav-section { flex: 0 0 70%; display: flex; flex-direction: column; gap: 5px; }
.action-section { flex: 0 0 10%; display: flex; justify-content: flex-end; }
.fill-section { flex: 0 0 5%; }

.nav-line { display: flex; gap: 20px; }
.line-1 { justify-content: flex-end; }
.line-2 { justify-content: flex-start; }
.nav-line a {color: #fff; font-weight: bold; text-decoration: none;}
.nav-line a:hover { text-decoration: underline; }

.logo-section img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Hide the checkbox globally */
.menu-toggle {
  display: none;
  visibility: hidden;
  position: absolute;
}

.close-menu {
  display: none;
}

.donate-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff0000;        /* Red background */
  color: #ffffff;             /* White text */
  border: 2px solid #ffffff;  /* White border */
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
}
.donate-btn a {
	color: #ffffff;
}

.donate-btn:hover {
  background: #cc0000;        /* Slightly darker red */
  border-color: #ffffff;
  color: #ffffff;
}

/* Language Bar Styling */
.language-bar {
  width: 100%;
  background: #f4f4f4;
  padding: 8px 0;
  display: flex;
  justify-content: left;
  column-gap: 20px;
  border-bottom: 1px solid #ddd;	
}

#language-selector {
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: white;
  cursor: pointer;
  outline: none;
  min-width: 180px;
}

#google_translate_element {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.flag {
  font-size: 1.1rem;
}
	
/* Mobile Toggle Styles */
@media (max-width: 768px) {
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: absolute; 
  right: 20px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 101; /* Ensure it stays above the menu */
}
.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff; /* Your desired color */
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  transform-origin: left center; /* Essential for the rotation point */
}

  .nav-section {
    position: fixed; right: -100%; top: 0; width: 150px; height: 100vh;
    background: #ff0000; padding: 100px 20px; transition: 0.4s; z-index: 99;
	gap:15px;
  }
  .menu-toggle:checked ~ .nav-section { right: 0; }
  .nav-line { flex-direction: column; gap: 15px; }
  .action-section { margin-right: 45px; }
  
  .close-menu {
    display: flex;
    align-items: center;
	font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    padding: 10px 0;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .close-menu span {
    font-size: 16px;
    margin-left: 8px;
  }
  .desktop-only { display: none; }
}