/* Lendable — Web Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1A1714;
    background-color: #FAFAF8;
}

.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }

.form-control {
    border-radius: 10px;
    border-color: #DDD5C8;
    padding: 0.6rem 1rem;
}

.form-control:focus {
    border-color: #40916C;
    box-shadow: 0 0 0 0.2rem rgba(64, 145, 108, 0.15);
}

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(27, 67, 50, 0.25);
}

.navbar .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
}

.navbar .nav-link:hover {
    color: #D4A373 !important;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(212, 163, 115, 0.1);
}
