/* Custom Styles */
body {
    font-family: 'Inter', sans-serif;
}
.logo-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.2s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.btn-primary {
    background-color: black;
    color: white;
    padding: 12px 24px;
    font-weight: 500;
    transition: background-color 0.2s;
}
.btn-primary:hover {
    background-color: #333;
}
.btn-secondary {
    border: 1px solid black;
    color: black;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-secondary:hover {
    background-color: black;
    color: white;
}
.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    transition: border-color 0.2s;
}
.input-field:focus {
    outline: none;
    border-color: black;
}
a, button, .cursor-pointer {
    cursor: pointer;
}
