@font-face {
    font-family: 'ITF Omnia Naskh';
    src: url('Fonts/itfOmniaNaskh-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'ITF Omnia Naskh';
    src: url('Fonts/itfOmniaNaskh-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'ITF Omnia Naskh';
    src: url('Fonts/itfOmniaNaskh-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'ITF Omnia Naskh';
    src: url('Fonts/itfOmniaNaskh-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'ITF Omnia Naskh';
    src: url('Fonts/itfOmniaNaskh-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: auto; /* Handled by GSAP/Lenis if needed, or smooth scrolling natively */
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-english {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: -0.02em;
}

.font-arabic {
    font-family: 'ITF Omnia Naskh', serif;
}

/* Minimal Utilities */
.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

.hover-text-outline:hover {
    color: white;
    -webkit-text-stroke: 0px;
}

/* Image treatments for B&W minimalist look */
.img-bw {
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.8s ease;
}

.img-bw:hover {
    filter: grayscale(0%) contrast(1);
}

.transform-style-3d {
    transform-style: preserve-3d;
}

.perspective-1000 {
    perspective: 1000px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000000; 
}
 
::-webkit-scrollbar-thumb {
    background: #333333; 
}

::-webkit-scrollbar-thumb:hover {
    background: #666666; 
}

/* Custom Cursor (Optional minimal touch) */
/* .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
} */
