/* Container for consistent layout */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styling */
header {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly more opaque for clearer separation */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    gap: 24px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: #4a5568; /* Tailwind's gray-700 */
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.5rem 0.75rem;
}

.desktop-nav a:hover {
    color: var(--hot-pink); /* Uses the same accent as index.css */
    transform: translateY(-2px);
}

/* Mobile Navigation (optional styles based on index.css) */
.menu-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}