/* Additional custom styles for Option 3 - Minimal & Elegant */

html {
    scroll-behavior: smooth;
}

/* Section scroll margin */
section {
    scroll-margin-top: 5rem;
}

/* Subtle animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Enhanced focus states for accessibility */
input:focus,
textarea:focus {
    outline: none;
}

/* Smooth transitions */
a, button, input, textarea {
    transition: all 0.3s ease;
}
