/* ==========================================
   NeoNutraCalc – szczyt.css
   Stylizacja nagłówka i stopki
   identyczna na wszystkich stronach
   STAŁE CAŁKOWITY ZAKAZ ZMIAN!!!
   Autor: Marcin Kalisiak
   Data: 2025-09-08
   ========================================== */

/* ===== Layout globalny ===== */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: sans-serif;
    background: url('../images/tlo.webp') no-repeat center center fixed;
    background-size: cover;
}

body {
    display: grid;
    grid-template-rows: auto 1fr;
}

/* ===== Panel języków (prawy górny róg) ===== */
.jezyki-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.jezyki {
    display: flex;
}

.jezyki img {
    width: 32px;
    height: 24px;
    margin-left: 8px;
    cursor: pointer;
    border: 1px solid white;
    border-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

#zegar-sesji {
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
    margin-top: 8px;
}

/* ===== Nagłówek (środkowany) ===== */
.main-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    padding-top: 15vh;   /* zachowany odstęp od góry */
    flex-wrap: wrap;
}

.logo {
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px #000);
}

.naglowek {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-style: italic;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 5px #000;
    margin: 0;
}

/* ===== Lewy panel powitalny ===== */
.panel-lewy-naglowek {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 8px;
    z-index: 5;
}

.panel-przyciski {
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.panel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    margin: 0;
    box-sizing: border-box;
    background-color: #eeeeee;
    border: 1px solid #cccccc;
    color: #333333;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    transition: background-color .2s;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.panel-btn:hover {
    background-color: #dddddd;
}

/* ===== Przycisk główny ===== */
button {
    background-color: #28a745;
    color: black;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
/* ===== komunikat ===== */
.komunikat-sukces{
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    background: #e0ffe0; color: #2d662d; border: 2px solid #2d662d; padding: 14px 24px; border-radius: 10px; z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,.25); font-size: 1.1em; font-weight: 700;
}

/* ===== Stopka ===== */
.stopka {
    font-size: 0.9em;
    color: whitesmoke;
    text-shadow: 1px 1px 3px #000;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

/* ==========================================
   NeoNutraCalc – szczyt.css
   Stylizacja nagłówka i stopki
   identyczna na wszystkich stronach
   STAŁE CAŁKOWITY ZAKAZ ZMIAN!!!
   Autor: Marcin Kalisiak
   Data: 2025-09-08
   ========================================== */
