/* 1. ფონტების იმპორტი - დარწმუნდი, რომ ფაილის გაფართოებები (ttf, otf) ზუსტია */
@font-face {
    font-family: 'font-1';
    src: url('../fonts/font-1.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'font-2';
    src: url('../fonts/font-4.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'font-3';
    src: url('../fonts/font-4.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'font-4';
    src: url('../fonts/font-3.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* 2. ზოგადი პარამეტრები */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box; /* უკეთესი განლაგებისთვის */
}

body {
    margin: 0 auto;
    font-family: 'font-1', Verdana, sans-serif !important;
    font-size: 13px;
    line-height: 27px;
    position: relative;
}

/* 3. სათაურების სტილები */
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    font-family: 'font-1', sans-serif !important;
    margin: 0.4em 0 0.6em 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

h1, .h1 { font-size: 23px; }
h2, .h2 { font-size: 21px; }
h3, .h3 { font-size: 20px; }
h4, .h4 { font-size: 18px; }
h5, .h5 { font-size: 16px; }

/* 4. ელემენტების გასუფთავება */
a img {
    border: 0 none;
}

ol, ul, li {
    list-style: none;
}

/* 5. Scrollbar-ის ვიზუალი (მუშაობს Chrome, Edge, Safari-ზე) */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #eee;
}

::-webkit-scrollbar-thumb {
    background: #de001a;
    border-radius: 4px;
}