.navbar-custom {
    background: rgba(0, 0, 0, 0.4); /* semi-transparent black */
  }

  .wedding-navbar {
    background: rgba(255, 255, 255, 0.3); /* Light glass look */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 182, 193, 0.2); /* Light pink line */
    padding: 0.8rem 1.5rem;
  }

  .wedding-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: #8B3A62; /* Deep rose */
    display: flex;
    align-items: center;
  }

  .wedding-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #5a2e3f !important; /* Soft burgundy */
    margin-left: 1rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  }
  
  .wedding-link:hover {
    color: #d6336c !important;
    border-bottom: 2px solid #d6336c;
  }

  .custom-toggler {
    border-color: #8B3A62;
  }
  
  .custom-toggler .navbar-toggler-icon {
    display: none; /* Hide default hamburger */
  }
  
  .custom-icon {
    font-size: 1.6rem;
    color: #8B3A62; /* Romantic rose */
    transition: transform 0.3s ease;
  }
  
  .custom-toggler:focus .custom-icon,
  .custom-toggler:hover .custom-icon {
    transform: rotate(20deg) scale(1.1);
    color: #d6336c;
  }