.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  padding: 2rem 2rem 1.5rem 2rem;
  z-index: 1000;
}

.nav-container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0.25rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-title img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.nav-title img:hover {
  transform: scale(1.05);
}

.nav-title-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-acronym {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--fw-extra-bold);
  color: var(--neutral-light);
  letter-spacing: 0.05rem;
  line-height: 1.2;
}

.nav-full-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--primary-2);
  line-height: 1.3;
  letter-spacing: 0.02rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-actions button {
  font-family: var(--font-heading);
  background: var(--primary-2);
  border: 2px solid var(--primary-1);
  color: var(--neutral-dark);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-actions button:hover {
  background: var(--primary-1);
  border-color: var(--primary-1);
  color: var(--neutral-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 92, 222, 0.4);
}

.nav-actions button:focus {
  outline: 2px solid var(--primary-2);
  outline-offset: 2px;
}

.donate-btn {
  border-color: var(--primary-2);
  color: var(--primary-2);
}

.donate-btn:hover {
  background: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--neutral-light);
  box-shadow: 0 4px 12px rgba(200, 178, 115, 0.4);
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0.5rem 3rem 1.25rem 3rem;
  }

  .nav-container {
    padding: 0.25rem 0;
  }

  .nav-title img {
    height: 2rem;
  }

  .nav-title {
    gap: 0.65rem;
  }

  .nav-actions {
    gap: 0.65rem;
  }

  .nav-actions button {
    padding: 0.5rem 0.875rem;
  }

  .nav-actions button span {
    display: none;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.5rem 2.9rem 1.1rem 2.9rem;
  }

  .nav-title img {
    height: 1.85rem;
  }

  .nav-title {
    gap: 0.6rem;
  }

  .nav-actions {
    gap: 0.6rem;
  }

  .nav-actions button {
    padding: 0.5rem 0.75rem;
  }

  .nav-actions button span {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 2.8rem 1rem 2.8rem;
  }

  .nav-container {
    padding: 0.25rem 0;
  }

  .nav-title img {
    height: 1.75rem;
  }

  .nav-title {
    gap: 0.5rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions button {
    padding: 0.5rem 0.65rem;
  }

  .nav-actions button span {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 1.8rem 1rem 2rem;
  }

  .nav-container {
    padding: 0.25rem 0;
  }

  .nav-title img {
    height: 1.5rem;
  }

  .nav-title {
    gap: 0.5rem;
  }

  .nav-title-text {
    gap: 0.1rem;
  }

  .nav-full-name {
    max-width: 10rem;
    font-size: 0.65rem;
  }

  .nav-acronym {
    display: none;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .nav-actions button {
    padding: 0.65rem;
    min-width: 3rem;
    min-height: 3rem;
  }

  .donate-btn,
  .watch-btn {
    display: none;
  }
}

@media (max-width: 400px) {
  .navbar {
    padding: 0.5rem 1.2rem 1rem 1.5rem;
  }

  .nav-full-name {
    font-size: 0.5rem;
    max-width: 25ch;
  }

  .nav-actions button {
    padding: 0.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    font-size: 0.75rem;
  }

  .nav-actions button i {
    font-size: 0.8rem;
  }
}

@media (max-width: 375px) {
  .nav-full-name {
    font-size: 0.5rem;
  }

  .nav-actions button {
    min-width: 2.25rem;
    min-height: 2.25rem;
  }
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: rgba(20, 30, 48, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-close-btn {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: 2px solid var(--primary-2);
  color: var(--primary-2);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 10001;
}

.menu-close-btn:hover {
  background: var(--primary-2);
  color: var(--neutral-dark);
}

.menu-content {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.menu-nav {
  flex: 1;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.menu-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.menu-link:hover {
  color: var(--primary-2);
}

.menu-social {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}

.menu-social-link {
  background: transparent;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.menu-social-link.facebook {
  border: 2px solid #1877f2;
  color: #1877f2;
}

.menu-social-link.facebook:hover {
  background: #1877f2;
  color: var(--neutral-light);
}

.menu-social-link.youtube {
  border: 2px solid #ff0000;
  color: #ff0000;
}

.menu-social-link.youtube:hover {
  background: #ff0000;
  color: var(--neutral-light);
}

.menu-item-with-dropdown {
  position: relative;
}

.menu-link-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dropdown-toggle {
  background: transparent;
  border: 2px solid var(--primary-2);
  color: var(--primary-2);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.dropdown-toggle:hover {
  background: var(--primary-2);
  color: var(--neutral-dark);
  transform: scale(1.1);
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
}

.menu-item-with-dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 2rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-item-with-dropdown.active .dropdown-menu {
  display: flex;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  position: relative;
}

.dropdown-link::before {
  content: "→";
  position: absolute;
  left: -2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dropdown-link:hover {
  color: var(--primary-2);
  padding-left: 0.5rem;
}

.dropdown-link:hover::before {
  opacity: 1;
}

@media (min-width: 1025px) {
  .menu-item-with-dropdown:hover .dropdown-menu {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .dropdown-toggle {
    display: none;
  }

  .menu-link-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    display: flex;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  }

  .menu-item-with-dropdown:hover .dropdown-menu {
    max-height: 500px;
  }
}

@media (max-width: 1024px) {
  .menu-content {
    max-width: 50rem;
    gap: 3rem;
  }

  .menu-link {
    font-size: 1.85rem;
  }

  .menu-link-wrapper {
    gap: 1.5rem;
  }

  .dropdown-link {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .menu-content {
    max-width: 42rem;
    gap: 2.5rem;
  }

  .menu-close-btn {
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  .menu-link {
    font-size: 1.75rem;
  }

  .menu-links {
    gap: 1rem;
  }

  .menu-link-wrapper {
    gap: 1.5rem;
  }

  .menu-social-link {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }

  .dropdown-link {
    font-size: 1.25rem;
  }

  .dropdown-toggle {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .menu-content {
    flex-direction: column;
    padding: 5rem 2rem 2rem 2rem;
    gap: 3rem;
    align-items: flex-start;
  }

  .menu-close-btn {
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .menu-links {
    gap: 0.85rem;
    align-items: flex-start;
    width: 100%;
  }

  .menu-link {
    font-size: 1.5rem;
  }

  .menu-link-wrapper {
    gap: 1.5rem;
  }

  .menu-social {
    flex-direction: row;
    gap: 1.5rem;
  }

  .menu-social-link {
    width: 4rem;
    height: 4rem;
    font-size: 1.75rem;
  }

  .dropdown-link {
    font-size: 1.15rem;
  }

  .dropdown-toggle {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .dropdown-menu {
    padding-left: 1.5rem;
    gap: 0.5rem;
  }
}

@media (max-width: 400px) {
  .menu-content {
    padding: 5rem 1.75rem 2rem 1.75rem;
  }

  .menu-link {
    font-size: 1.35rem;
  }

  .menu-link-wrapper {
    gap: 1.25rem;
  }

  .menu-social-link {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.5rem;
  }

  .dropdown-link {
    font-size: 1.05rem;
  }

  .dropdown-toggle {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .menu-content {
    padding: 5rem 1.5rem 2rem 1.5rem;
  }

  .menu-link {
    font-size: 1.25rem;
  }

  .menu-links {
    gap: 0.75rem;
  }

  .menu-link-wrapper {
    gap: 1rem;
  }

  .menu-social-link {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }

  .dropdown-link {
    font-size: 1rem;
  }

  .dropdown-toggle {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }

  .dropdown-menu {
    padding-left: 1rem;
    gap: 0.4rem;
  }
}
