/* -------------------------- */
/* Global Styles              */
/* -------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8faff;
    color: #333;
    
}
/* -------------------------- */
/* Custom Scrollbar           */
/* -------------------------- */

/* celý scrollbar */
::-webkit-scrollbar {
    width: 10px;          /* tloušťka scrollbaru */
}

/* dráha scrollbaru (pozadí) */
::-webkit-scrollbar-track {
    background: #f0f0f0;  /* světlé pozadí, ladí s body */
    border-radius: 5px;
}

/* samotný jezdec scrollbaru */
::-webkit-scrollbar-thumb {
    background: #39A6FF;  /* barva loga */
    border-radius: 5px;
    transition: background 0.3s;
}

/* hover efekt */
::-webkit-scrollbar-thumb:hover {
    background: #2B7FCC;  /* tmavší modrá při hover */
}

/* Firefox fallback */
* {
    scrollbar-width: thin;
    scrollbar-color: #39A6FF #f0f0f0;
}
/* -------------------------- */
/* Language Switch             */
/* -------------------------- */
.language-switch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;          
    gap: 10px;              
    z-index: 20;
}

.language-switch button {
    background-color: #39A6FF;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.language-switch button:hover {
    background-color: #2B7FCC;
    transform: scale(1.05);
}

/* -------------------------- */
/* Header                     */
/* -------------------------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    box-shadow: 0 2px 8px rgba(57, 166, 255, 0.15);
    border-bottom: 1px solid rgba(57, 166, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
    transition: 0.3s;
}

.logo {
    font-size: 28px;
    color: #39A6FF;
    font-weight: bold;
}


.nav a {
    color: #666;
    margin-left: 20px;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.nav a:hover {
    color: #39A6FF;
    background-color: rgba(57, 166, 255, 0.1);
}

/* -------------------------- */

.footer {
    padding: 40px 20px;
    background: linear-gradient(135deg, #39A6FF 0%, #2B7FCC 100%);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom{
    text-align: center;
}
.footer-right {
    text-align: right;
    max-width: 33%;
    flex-basis: 33%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;    
    justify-content: center;  
    gap: 8px;                 
}

.footer-right a {
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
    max-width: fit-content;
    margin-right: 125px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #0052bf;
    padding: 8px 14px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    max-width: fit-content;
}

.social-icon {
    width: 20px;
    height: 20px;
}


.footer-right a:hover{
    background-color: #0053bfbe;
    transform: scale(1.05);
}

.footer-left{
    text-align: left;
    max-width: 33%;
    flex-basis: 33%;
    display: flex;
    justify-content: flex-start;
    height: fit-content;
    flex-direction: column;
}

.footer a{
    color: white;
    text-decoration: none;
}
.highlight {
    color: red;
}
.footer-bottom a:hover{
    text-decoration: underline;
}
.footer-bottom hr{
    border: 0.5px solid white;
    margin: 0 auto;
    max-width: 350px;
}
/* -------------------------- */

.cenik {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cenik h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #222;
}

.cenik ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cenik li {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.cenik li:hover {
    background-color: #e6f0ff;
}

.service-name {
    font-weight: bold;
    color: #333;
}

.service-price {
    color: #39A6FF; /* ladí s logem */
    font-weight: 600;
}

