/* 🌐 Default hamburger hidden */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #dba8e2;
}

/* Mobile view styling */
@media (max-width: 768px) {

  nav {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 50px;
    border-radius: 8px;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    color: #333;
    font-size: 16px;
  }

  /*.nav-links a:last-child {
    border-bottom: none;
  }*/

  /* Hide the Calm Companion button nav on mobile */
  nav[style*="margin-right"] {
    display: none !important;
  }
}
