.acf-block-Navigation {
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 10;
  max-width: var(--wp--style--global--content-size);
  padding: 1rem 0rem;
}

header {
  position: fixed !important;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: var(--wp--preset--color--contrast);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-link {
  color: var(--wp--preset--color--black);
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.nav-mobile {
  display: none;
}

/* Logo */
.nav-logo img {
  height: 56px;
  width: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--wp--preset--color--black);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--wp--preset--color--primary);
}

/* Button Style */
.nav-button {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  border: 2px solid var(--wp--preset--color--black);
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-button:hover {
  border: 2px solid var(--wp--preset--color--primary);
}

/* Mobile Styles */
@media (max-width: 1050px) {
  header {
    background-color: var(--wp--preset--color--contrast);
    top: 0;
  }
  .acf-block-Navigation {
    background: #fcf8f5;
  }

  .nav-desktop {
    display: none;
  }
  .site-header.wp-block-template-part {
    top: 0 !important;
  }

  .nav-mobile {
    display: flex;
    flex-direction: column;
  }

  .nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .hamburger-menu {
    border: none;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--wp--preset--color--black);
    transition: all 0.3s ease;
  }

  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-mobile-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #fcf8f5;
  }

  .nav-mobile-content.active {
    height: var(--menu-height);
  }

  .nav-mobile .nav-links {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-mobile .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
  }
}
