/* Shared Navigation Styles */
.navbar {
    background-color: #ffd700;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem; /* Add some space below the navbar */
}

.nav-brand {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #333;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: 'Comic Neue', cursive;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: #ff6b6b;
    color: white;
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .navbar {
        flex-direction: column;
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .nav-brand {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.2rem;
        margin-top: 0.3rem;
    }
    
    .nav-link {
        padding: 0.3rem 1.5rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .nav-link {
        padding: 0.2rem 1rem;
        font-size: 0.75rem;
    }
    
    .nav-links {
        gap: 0.1rem;
    }
}

/* Liquid glass effect class */
.glass {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px) saturate(180%);
    border: 0.0625rem solid rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    padding: 1.25rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.3);
  }
  
  .glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(1px);
    box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1),
      inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
    pointer-events: none;
  }

  .donation {
    color: #ff6b6b;
    font-weight: bold;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }