/* Custom Polishing Styles for FlowsDoctor */

:root {
    --brand-pink: #e1087e;
    --brand-dark: #130a2d;
    --brand-light: #08e1e1;
}

body {
    background-color: var(--brand-dark);
    color: #ffffff;
    font-family: 'Hanken Grotesk', sans-serif;
    overflow-x: hidden;
}

/* Micro-animations */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.btn-premium {
    background: var(--brand-pink);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(225, 8, 126, 0.3);
}

.btn-premium:hover {
    box-shadow: 0 6px 20px rgba(225, 8, 126, 0.5);
    transform: translateY(-2px);
}

/* Glassmorphism for Navbar */
.main_navbar {
    background: rgba(19, 10, 45, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
