/* General Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

/* Navbar customizations */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Progress bars (for skills section) */
.progress {
    height: 20px;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .practice-card {
        margin-bottom: 1rem;
    }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    /* Any animations would be disabled here */
}