/* ==========================================================
   ISSA DESIGN SYSTEM
   ----------------------------------------------------------
   Autor: Petr Zuzanek

   Cílem tohoto systému je udržet jednotný vzhled celého webu.

   ZÁSADY:

   ✓ Nepoužívat pevné barvy mimo :root.
   ✓ Nepoužívat pevné border-radius.
   ✓ Nepoužívat pevné box-shadow.
   ✓ Používat proměnné.
   ✓ Sdílené prvky patří do components.css.
   ✓ Rozvržení patří do layout.css.
   ✓ Konkrétní sekce patří do sections.css.
   ✓ Mobilní úpravy patří do responsive.css.

   Motto:
   "Nejdřív systém. Potom design."
========================================================== */


/* ==========================================================
   1. DESIGN TOKENS
========================================================== */

:root {
    /* ------------------------------------------------------
       BARVY ZNAČKY
    ------------------------------------------------------ */

    --primary: #1565C0;
    --primary-dark: #0D47A1;
    --primary-light: #EAF2FB;

    --accent: #F57C00;
    --accent-hover: #D96D00;
    --accent-light: #FFF3E8;


    /* ------------------------------------------------------
       TEXT A POVRCHY
    ------------------------------------------------------ */

    --dark: #1F2937;
    --text: #1F2937;
    --muted: #6B7280;
    --muted-light: #94A3B8;

    --light: #F5F7FA;
    --surface: #FFFFFF;
    --white: #FFFFFF;

    --border: #DCE5EF;
    --border-light: #E8EEF5;


    /* ------------------------------------------------------
       TYPOGRAFIE
    ------------------------------------------------------ */

    --font-base: "Poppins", sans-serif;

    --font-size-xs: 0.82rem;
    --font-size-sm: 0.92rem;
    --font-size-base: 1rem;
    --font-size-md: 1.08rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.75rem;
    --font-size-2xl: 2.4rem;

    --font-size-hero: clamp(2.4rem, 5vw, 4.6rem);

    --line-height-tight: 1.2;
    --line-height-heading: 1.3;
    --line-height-base: 1.7;

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;


    /* ------------------------------------------------------
       MEZERY
    ------------------------------------------------------ */

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 88px;


    /* ------------------------------------------------------
       ZAOBLENÍ
    ------------------------------------------------------ */

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius: 15px;
    --radius-lg: 20px;
    --radius-pill: 999px;


    /* ------------------------------------------------------
       STÍNY
    ------------------------------------------------------ */

    --shadow-sm:
        0 4px 14px rgba(15, 23, 42, 0.06);

    --shadow:
        0 10px 25px rgba(15, 23, 42, 0.08);

    --shadow-hover:
        0 20px 40px rgba(15, 23, 42, 0.15);

    --shadow-header:
        0 8px 24px rgba(15, 23, 42, 0.08);


    /* ------------------------------------------------------
       PŘECHODY
    ------------------------------------------------------ */

    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.45s ease;


    /* ------------------------------------------------------
       ROZMĚRY WEBU
    ------------------------------------------------------ */

    --container: 1200px;
    --container-padding: 24px;
    --header-offset: 110px;


    /* ------------------------------------------------------
       VRSTVY
    ------------------------------------------------------ */

    --z-overlay: 999;
    --z-header: 1000;
    --z-menu: 1002;
    --z-toggle: 1003;
}


/* ==========================================================
   2. ZÁKLADNÍ RESET
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
}


/* ==========================================================
   3. TYPOGRAFIE
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--dark);
    line-height: var(--line-height-heading);
}

h1 {
    font-size: var(--font-size-hero);
    font-weight: var(--weight-bold);
}

h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--weight-bold);
}

h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--weight-semibold);
}

p {
    margin-top: 0;
}

strong {
    font-weight: var(--weight-semibold);
}


/* ==========================================================
   4. ZÁKLADNÍ LAYOUT
========================================================== */

.container {
    width: min(
        calc(100% - (2 * var(--container-padding))),
        var(--container)
    );
    margin-inline: auto;
}

.section {
    padding-block: var(--space-9);
}

.section-light {
    background: var(--light);
}

.section-white {
    background: var(--white);
}


/* ==========================================================
   5. PŘÍSTUPNOST
========================================================== */

:focus-visible {
    outline: 3px solid rgba(21, 101, 192, 0.35);
    outline-offset: 4px;
}

::selection {
    color: var(--white);
    background: var(--primary);
}


/* ==========================================================
   6. ZÁKLADNÍ UTILITY
========================================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-muted {
    color: var(--muted);
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.bg-light {
    background: var(--light);
}

.bg-white {
    background: var(--white);
}

.mx-auto {
    margin-inline: auto;
}

.hidden {
    display: none !important;
}


/* ==========================================================
   7. RESPONSIVNÍ ÚPRAVY ZÁKLADU
========================================================== */

@media (max-width: 768px) {
    :root {
        --container-padding: 18px;
        --header-offset: 76px;
        --space-9: 64px;
    }

    h2 {
        font-size: clamp(1.85rem, 8vw, 2.3rem);
    }

    .section {
        padding-block: var(--space-8);
    }
}