/* Gen Koleji — özel stiller (Tailwind'in karşılamadığı kısımlar) */

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

::selection { background-color: #E30111; color: #ffffff; }

/* Klavye odak halkası */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 2px solid #E30111;
    outline-offset: 3px;
}

/* Yatay carousel: scrollbar gizli + snap */
.scroll-row { scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x mandatory; }
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row > * { scroll-snap-align: start; }

/* Mobil menü açıkken body kaydırmayı kilitle */
body.menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
