@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Kufi+Arabic:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-base: #fafafa; /* neutral-50 */
    --card-bg: #ffffff;
    --card-border: #f4f4f5; /* zinc-100 */
    --card-border-hover: #e4e4e7;
    --text-main: #09090b; /* zinc-950 */
    --text-muted: #71717a; /* zinc-500 */
    --accent: #000000; /* Black for ultra modern feel */
    --accent-blue: #2563eb;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: 'Noto Kufi Arabic', 'Outfit', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Bento Box Styles */
.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.02);
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.005);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05);
    border-color: var(--card-border-hover);
}

/* Glass Floating Nav */
.floating-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.05);
}

/* Hero Background Grid */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: 60px 60px;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

/* Micro animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Image Hover */
.img-zoom {
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bento-card:hover .img-zoom {
    transform: scale(1.05);
}

.ltr-text {
    direction: ltr;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
}

/* Hide scrollbar for clean horizontal scrolls */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}