@font-face {
    font-family: 'Nocashe';
    src: url('assets/fonts/Nocashe.otf') format('opentype');
}
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: #fff;
    color: #000;
}
.nocashe-font {
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: -1px;
}
.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(90deg, #000, #444);
}
.skill-tag {
    transition: all 0.3s ease;
    background-color: #000;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}
.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.project-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    background-color: #fff;
    color: #000;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.social-icon {
    transition: all 0.3s ease;
    color: #000;
}
.social-icon:hover {
    transform: scale(1.1);
}
.nav-link {
    position: relative;
    color: #000;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.contact-button {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-button:hover {
    background-color: #222;
    color: #fff;
}
.project-skill-tag {
    background-color: #000;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}
.project-view-button {
    border: 1px solid #000;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}
.project-view-button:hover {
    background-color: #000;
    color: #fff;
}
.form-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    outline: none;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
}
.form-input:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px #000;
}
.form-textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    outline: none;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
}
.form-textarea:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px #000;
}
.form-submit {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.form-submit:hover {
    background-color: #222;
    color: #fff;
}

footer.bg-black {
    background: #000 !important;
    color: #fff !important;
}
footer .text-gray-400 {
    color: #ccc !important;
}

.bg-gray-100 {
    background-color: #f3f4f6 !important;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}