/* Noor Islamic Marriage - Custom Styles */
:root {
    --primary: #0A5C4A;
    --accent: #C9A962;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.arabic {
    font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #0A5C4A, #063D32);
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgb(10 92 74 / 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -3px rgb(10 92 74 / 0.4);
}

.profile-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.chat-bubble {
    max-width: 75%;
    padding: 12px 18px;
    border-radius: 18px;
    line-height: 1.4;
}

.chat-sent {
    background: #0A5C4A;
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.chat-received {
    background: #E8F0ED;
    color: #1A3A2E;
    border-radius: 18px 18px 18px 4px;
}

.toast {
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.nav-tab {
    transition: all 0.2s ease;
}

.nav-tab.active {
    border-bottom: 3px solid #0A5C4A;
    color: #0A5C4A;
    font-weight: 600;
}