/* Fonts settings */
body {
    font-family: 'Inter', sans-serif;
}

/* Navbar link styling */
.nav-link {
    color: #D1D5DB; /* text-gray-300 */
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.nav-link:hover {
    color: #ffffff;
    background-color: #374151; /* bg-gray-700 */
}

/* Skill Tags */
.skill-tag {
    background-color: #312E81; /* Indigo-900 equivalent */
    color: #E0E7FF;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid #4338CA;
    transition: transform 0.2s;
    cursor: default;
}

.skill-tag:hover {
    transform: translateY(-2px);
    background-color: #4338CA;
}

/* CP Cards Hover Effects */
.cp-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

/* Smooth scrolling offset for fixed header */
html {
    scroll-behavior: smooth;
}

.section {
    scroll-margin-top: 80px;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.center-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    padding: 0.75rem 2rem;
    background-color: #4f46e5;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: scale(1.05);
}

.btn-secondary {
    padding: 0.75rem 2rem;
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #374151;
    transform: scale(1.05);
}