/* Custom Styles for Anargya Creative - Clean Black & White Theme */

/* Global font settings */
* {
    font-family: Helvetica, Arial, sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Card styles - NO BORDER RADIUS */
.tool-card {
    background: white;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid #e5e5e5;
}

.tool-card:hover {
    border-color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Feature icon styles - NO BORDER RADIUS */
.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: white;
    font-size: 1.5rem;
}

/* Status badge - NO BORDER RADIUS */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.active {
    background-color: #000000;
    color: #ffffff;
}

.status-badge.coming-soon {
    background-color: #f5f5f5;
    color: #000000;
    border: 1px solid #e5e5e5;
}

/* Hero background */
.hero-gradient {
    background: #ffffff;
}

/* Code block styling - NO BORDER RADIUS */
code {
    background: #000000;
    color: #ffffff;
    padding: 0.125rem 0.375rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875em;
}

pre code {
    display: block;
    padding: 1rem;
    overflow-x: auto;
}

/* Loading animation */
@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse-slow {
    animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .tool-card {
        padding: 1.5rem;
    }
}

