/* ======= GEN TECH QLOBAL STILLƏR ======= */

:root {
    --green: #2fc06a;
    --dark: #0f1720;
    --muted: #6b7280;
    --card: #ffffff;
    --accent: #10b981;
    --blue-border: #1cb1ea;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

footer {
    flex-shrink: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Səhifəni əhatə edən əsas konteyner */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
}

/* --- ÜMUMİ BUTTONLAR --- */
.btn {
    padding: 12px 20px;
    border-radius: 8px;
    border: 0;
    background: var(--green);
    color: white;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn.outline {
    background: transparent;
    border: 1px solid #fff;
}

/* ======= MOBİL GÖRÜNÜŞ (ÜMUMİ - 767px və aşağı) ======= */
@media (max-width: 767px) {
    .container {
        padding: 0 10px;
    }

    .search-row,
    nav ul,
    .desktop-only-icons {
        display: none !important;
    }

    .mobile-only-icons {
        display: flex !important;
    }

    .mobile-search-icon {
        display: inline-flex !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}

/* ======= SEO VƏ SCREEN READER ======= */

/* SEO başlığını gizlət (yalnız axtarış motorları üçün) */
.homepage-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Ekran oxuyucular üçün gizli mətn */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Tablet rejimi üçün konteyner paddingi (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 30px !important;
    }
}

/* Dil dəyişdirici - Yazıları qalınlaşdırmaq və sağa çəkmək */
.gentech-language-switcher {
    display: inline-flex;
    align-items: center;
}

/* AZ və RU yazıları üçün konkret stil */
.gentech-language-switcher .AZ-text, 
.gentech-language-switcher .RU-text,
.gentech-language-switcher .current-lang {
    font-weight: 700 !important; /* Yazını qalın edir */
    font-size: 16px; /* Ölçünü ehtiyaca görə dəyişə bilərsən */
    text-transform: uppercase; /* Hərfləri böyük saxlayır */
}

/* Dropdown daxilindəki linklərin də qalın olması üçün */
.lang-dropdown a {
    font-weight: 700 !important;
}