/*
Theme Name: Washingtonville Dental Theme
Author: Matthew Loeffler
Description: Custom theme converted from Webflow export
Version: 1.0
*/

.main-nav {
  position: relative;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding-left: 0;
  margin: 0;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  display: block;
  padding: 0.5rem 1rem;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 180px;
  z-index: 10;
}

.has-dropdown:hover .sub-menu {
  display: block;
}

/* Mobile */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
  }

  .menu {
    flex-direction: column;
    display: none;
  }

  .menu.show {
    display: flex;
  }
}
