/* STYLE.CSS - GYMNÁZIUM BRNO-BYSTRC (GYBY)
   Redesign dle grafického manuálu 
*/

/* IMPORT FONTY: 
   Merriweather (Nadpisy) 
   Inter (Běžný text) [cite: 55] 
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Merriweather:wght@400;700;900&display=swap');

/* Reset a univerzální styl */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    /* Dle manuálu se pro text používá Inter [cite: 55] */
    font-family: 'Inter', sans-serif;
    /* Pozadí dle manuálu - světlá béžová #F2F0E4 [cite: 95] */
    background-color: #F2F0E4; 
    /* Barva textu - černá nebo velmi tmavá pro kontrast */
    color: #1a1a1a;
    padding: 1rem;
}

/* Hlavní kontejner */
.container {
    text-align: center;
    max-width: 600px; /* Ponecháno dle původního CSS */
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 0; /* GYBY styl je hranatější/minimalistický, ale pro moderní UI necháme jemný rádius nebo 0 */
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #7d002a; /* Akcent primární barvou nahoře */
}

/* Nadpis a popis */
h1, h2, h3 {
    /* Nadpisy: Merriweather  */
    font-family: 'Merriweather', serif;
}

h1 {
    font-size: 2.2rem;
    font-weight: 900; /* Merriweather působí lépe v tučnějším řezu */
    /* Primární barva značky #7d002a [cite: 88] */
    color: #7d002a; 
    margin-bottom: 1.5rem;
}

p.description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

/* Tlačítka */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.buttons a {
    text-decoration: none;
}

button {
    /* Primární barva #7d002a [cite: 88] */
    background-color: #7d002a;
    color: white;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px; /* Jemnější radius */
    cursor: pointer;
    font-family: 'Inter', sans-serif; /* Tlačítka běžným písmem, nebo Merriweather pro důraz? Manuál říká Inter pro "tlačítka" [cite: 58] */
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(125, 0, 42, 0.2);
}

button:hover {
    /* Ztmavení primární barvy nebo použití doplňkové Teal pro interakci */
    background-color: #59001e; 
    transform: translateY(-1px);
}

/* Formulář */
form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Skupiny formulářových prvků */
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 700; /* Inter Bold [cite: 62] */
    font-size: 0.95rem;
    color: #2E6C6F; /* Použití sekundární barvy (Teal) pro popisky [cite: 100] */
}

/* Vstupy */
form input[type="email"],
form input[type="text"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif; /* [cite: 55] */
    background-color: #fff;
    transition: border-color 0.3s ease;
    appearance: none; /* Odstranění defaultního vzhledu prohlížeče */
    -webkit-appearance: none;
}

form input:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    outline: none;
    /* Focus barva - sekundární Teal #2E6C6F [cite: 100] */
    border-color: #2E6C6F; 
}

/* Zprávy (chybové a informační) */
/* Využití brandových barev pro alerty */

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
}

.alert.success {
    /* Pozadí odvozené od Teal, text Teal #2E6C6F [cite: 100] */
    background-color: rgba(46, 108, 111, 0.1);
    color: #2E6C6F;
    border-left: 4px solid #2E6C6F;
    border: 1px solid rgba(46, 108, 111, 0.2);
    border-left-width: 4px;
}

.alert.error {
    /* Pozadí odvozené od Primární červené, text #7d002a [cite: 88] */
    background-color: rgba(125, 0, 42, 0.1);
    color: #7d002a;
    border: 1px solid rgba(125, 0, 42, 0.2);
    border-left: 4px solid #7d002a;
}

/* Responzivita */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    button {
        width: 100%;
    }
}

/* Sekundární tlačítka (Outline) */
.button-secondary {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.4rem;
    border-radius: 4px;
    background-color: transparent;
    /* Primární barva textu i rámečku #7d002a */
    color: #7d002a; 
    border: 2px solid #7d002a;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-align: center;
    transition: all 0.2s ease;
}

.button-secondary:hover {
    background-color: #7d002a;
    color: white;
}

/* Sjednocení fontu pro specifické elementy */
button,
.button-secondary,
input,
textarea,
select,
a {
    /* Manual specifikuje Inter pro tlačítka, tabulky, navigaci [cite: 58] */
    font-family: 'Inter', sans-serif;
}

/* Admin Menu */
.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.admin-menu a.button {
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Obecná třída .button (pokud se liší od elementu button) */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #7d002a; /* Primární [cite: 88] */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.button:hover {
    background-color: #59001e;
}

/* Tabulka */
.kniha-tabulka {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate; /* Pro border radius */
    border-spacing: 0;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.kniha-tabulka th,
.kniha-tabulka td {
    padding: 1rem;
    text-align: left;
    vertical-align: middle;
    word-wrap: break-word;
    border-bottom: 1px solid #e0e0e0;
}

.kniha-tabulka th {
    /* Hlavička tabulky: Použijeme sekundární barvu Teal #2E6C6F [cite: 100] pro moderní vzhled */
    background-color: #2E6C6F;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-bottom: none;
}

.kniha-tabulka td {
    background-color: white;
    color: #1a1a1a;
}

/* Poslední řádek bez borderu */
.kniha-tabulka tr:last-child td {
    border-bottom: none;
}

/* Šířky sloupců (zachováno z původního CSS) */
.kniha-tabulka th:nth-child(1), .kniha-tabulka td:nth-child(1) { width: 25%; }
.kniha-tabulka th:nth-child(2), .kniha-tabulka td:nth-child(2) { width: 35%; }
.kniha-tabulka th:nth-child(3), .kniha-tabulka td:nth-child(3) { width: 15%; }
.kniha-tabulka th:nth-child(4), .kniha-tabulka td:nth-child(4) { width: 25%; }

/* Malá tlačítka v tabulce */
.button-small {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    border-radius: 4px;
    background-color: #2E6C6F; /* Teal pro editační/neutrální akce [cite: 100] */
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    border: none;
    transition: background-color 0.2s;
}

.button-small:hover {
    background-color: #1a4547;
}

.button-small.red {
    background-color: #7d002a; /* Primární červená pro delete akce [cite: 88] */
}

.button-small.red:hover {
    background-color: #59001e;
}

.button-small.archive {
    background-color: #F2F0E4; /* Béžová z pozadí [cite: 95] */
    color: #7d002a;
    border: 1px solid #7d002a;
}

.button-small.archive:hover {
    background-color: #e6e1d1;
}

.kniha-tabulka td .button-small {
    margin-bottom: 0.4rem;
}

.actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Content layouty */
.content-narrow, .content-wide {
    text-align: center;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #2E6C6F; /* Variace s Teal proužkem nahoře */
}

.content-narrow { max-width: 600px; }
.content-wide { max-width: 1000px; }

/* Tlačítka pod tabulkou */
.button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .button-row {
        flex-direction: column;
        align-items: center;
    }
    
    .kniha-tabulka {
        display: block;
        overflow-x: auto;
    }
}