/* --- DEFINICE PROMĚNNÝCH (Základ tvého webu) --- */
:root {
    /* Tmavý mód (Výchozí) [cite: 1] */
    --bg-main: #1a1a2e;
    --bg-sidebar: #ff6b35; 
    --bg-card: #2d2d44;
    --bg-icon: #3d3d54;
    --text-main: #ffffff;
    --text-muted: #aaa;
    --input-bg: #3d3d54;
    --input-border: #4d4d64;
    --accent: #e55a2b;
    --nav-text: #ffffff;
}

body.light-mode {
    /* Light mód dle vzoru [cite: 2, 3, 4] */
    --bg-main: #f0f2f5;
    --bg-sidebar: #ffffff; 
    --bg-card: #ffffff;
    --bg-icon: #e9ecef;
    --text-main: #1a1a2e;
    --text-muted: #555;
    --input-bg: #ffffff;
    --input-border: #dddddd;
    --accent: #ff6b35;
    --nav-text: #444;
}

/* --- ZÁKLADNÍ NASTAVENÍ --- */
body {
    background-color: var(--bg-main) !important;
    color: var(--text-main) !important;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    transition: 0.3s;
}

/* --- SIDEBAR DESIGN (DESKTOP) --- */
.sidebar {
    background-color: var(--bg-sidebar) !important;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--input-border);
    transition: 0.3s;
}

.sidebar .profile {
    text-align: center;
    margin-bottom: 30px;
}

.sidebar .profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    object-fit: cover;
}

.sidebar .nav-link {
    color: var(--nav-text) !important;
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
    font-weight: 500;
    text-align: left;
}

/* Aktivní odkaz (Oranžový čip) */
.sidebar .nav-link.active {
    background-color: var(--accent) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.2);
}

.sidebar .nav-link:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
}

/* --- HLAVNÍ OBSAH --- */
.main-content {
    margin-left: 250px;
    padding: 30px;
    min-height: 100vh;
    transition: 0.3s;
}

/* --- SEARCH BAR --- */
.search-bar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.search-bar {
    background-color: var(--bg-card);
    border: 1px solid var(--input-border);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    max-width: 500px;
    width: 100%;
}


.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-main);
    flex: 1;
    outline: none;
    margin: 0 10px;
    font-size: 16px;
}

/* --- GRID A KARTY --- */
.album-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.album-card {
    background-color: var(--bg-card);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.login-form {
    max-width: 400px;
    width: 100%;
    margin: 50px auto;
    background-color: var(--bg-card);
    border: 1px solid var(--input-border);
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
}

.login-form input {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-main);
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 15px;
}

.btn-prihlasit {
    background-color: #00d26a;
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
}
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto; 
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        padding: 5px 0; /* Minimalizovaný padding pro více místa */
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        background-color: var(--bg-sidebar) !important;
        border-right: none;
        border-top: 1px solid var(--input-border);
    }

    .sidebar .profile {
        display: none; /* Skrytí profilu na mobilu [cite: 36] */
    }

    .sidebar nav {
        display: flex;
        width: 100%;
        justify-content: space-evenly; /* Rovnoměrné rozprostření všech prvků */
        padding: 0 2px;
    }

    .sidebar .nav-link {
        margin-bottom: 0;
        padding: 5px 2px; /* Minimální odsazení do stran */
        text-align: center;
        flex: 1; 
        font-size: 9px; /* Zmenšené písmo, aby se vešlo i Přihlášení [cite: 39] */
        display: flex;
        flex-direction: column;
        align-items: center;
        white-space: nowrap; /* Zabrání zalamování textu */
    }

    /* Úprava obsahu, aby nebyl schovaný pod lištou [cite: 42, 44] */
    .main-content {
        margin-left: 0;
        padding: 20px;
        padding-bottom: 100px; 
    }
    
    .login-form {
        margin-bottom: 100px;
    }
}

/* Extrémně malé telefony */
@media (max-width: 380px) {
    .sidebar .nav-link {
        font-size: 8px; /* Ještě menší písmo pro nejmenší displeje [cite: 46] */
    }
}