/* Fontlar artık includes/css/fonts.css'te lokal @font-face ile tanımlı.
   Google Fonts CDN bağımlılığı kaldırıldı (offline kiosk için). */

:root {
    --primary-color: #891014; 
    --primary-color-low: rgba(137, 16, 20, 0.5);
    --primary-color-dark: #770f13; 

    --secondary-color: #adb5bd; 
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;

    --tertiary-color: #e9ecef;
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;

    --bg-color: #010101;
    --bg-color-low: rgba(53, 53, 53, 0.5);
    --bg-color-dark: #000000;

    --text-dark: #343a40;
    --text-dark-low: #495057b9;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa;
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #02337c; 
    --button-color-low: rgba(2, 51, 124, 0.5);
    --button-color-dark: #001a4d;

    --card-bg: #fcfcfc;
    --card-bg-low: #f3f2f2;
    --smoothline-color: var(--bg-color);

    /* ─── Kiosk · LION 6×6 entrance · dark immersive ─── */
    --kiosk-bg:         var(--bg-color-dark);
    --kiosk-night:      #050505;
    --kiosk-soft:       #0a0a0c;
    --kiosk-text:       #ffffff;
    --kiosk-text-dim:   rgba(255, 255, 255, 0.94);  /* daha okunabilir — kiosk dik mesafeden okunmalı */
    --kiosk-text-faint: rgba(255, 255, 255, 0.78);
    --kiosk-line:       rgba(255, 255, 255, 0.10);

    --ember:            #ff5a1c;
    --ember-warm:       #ff8a4c;
    --ember-deep:       #b51500;
    --crimson:          #ca0933;

    --font-immersive:   'Manrope', system-ui, sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Kiosk: dokunma vurgusu ve turuncu odak halkası yok */
body.kiosk-locked {
    -webkit-tap-highlight-color: transparent;
}

body.kiosk-locked *:focus,
body.kiosk-locked *:focus-visible,
body.kiosk-locked *:focus-within {
    outline: none !important;
    box-shadow: none;
}

/* Kiosk modu: metin/görsel seçimini ve sürüklemeyi global olarak devre dışı bırak.
   input/textarea üst-katmanlarına dokunmaz; nadir bir form gerekirse oradan override edilir. */
html.kiosk-mode,
html.kiosk-mode body {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    overscroll-behavior: none;          /* tarayıcı pull-to-refresh / bounce'u kapat */
    -webkit-tap-highlight-color: transparent;
}
/* Görseller: native sürükleme, seçim, kayıt menüsü kapalı */
html.kiosk-mode img,
html.kiosk-mode svg,
html.kiosk-mode video {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}
/* İhtiyaç halinde: bazı alanları seçilebilir yap (override pattern) */
html.kiosk-mode .is-selectable,
html.kiosk-mode .is-selectable * {
    user-select: text;
    -webkit-user-select: text;
}

section {
    display: flex;
}
