/*
Theme Name: Freelancer Portfolio
Theme URI: https://www.facebook.com/N.A.Lebu
Author: Nur Amin Lebu
Description: A minimalist, single-page portfolio theme converted from React to WordPress, using Tailwind CSS. Made by Nur Amin Lebu
Version: 1.0
Tags: one-column, portfolio, custom-colors, custom-menu, Nur-Amin-Lebu
*/

/* Note: Main styling is handled by Tailwind CSS (loaded via CDN in header.php).
   Use this file for custom overrides or standard WordPress classes.
*/

/* Smooth Scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}

/* Typing cursor effect override if needed */
.typing-effect::after {
    content: "|";
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* WordPress Alignment Classes */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }

/* Mobile Menu Transition Classes */
.mobile-menu-open {
    transform: translateX(0) !important;
}