/* --- ZÁKLADNÍ NASTAVENÍ --- */
:root {
    --primary-blue: #004aa5;    
    --nav-active: #3b71c2;      
    --light-blue: #f0f4f8;      
    --text-dark: #222222;       
    --white: #ffffff;
    --red-alert: #d32f2f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 18px; /* Velké písmo pro seniory */
    line-height: 1.6;

    /* --- PŘIDÁNO PRO PŘILEPENÍ PATIČKY --- */
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: bold;
}

a:hover {
    color: var(--text-dark);
}

/* --- HLAVIČKA A NAVIGACE --- */
.header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 0 0 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center; 
    gap: 20px; 
}

.site-logo {
    height: 100px; 
    width: auto; 
}

.logo-text h1 {
    font-size: 2rem;
    margin-bottom: 0; 
    line-height: 1.2;
}

.logo-text p {
    font-size: 1rem;
    color: var(--light-blue);
    margin: 0;
}



.main-nav {
    background-color: var(--primary-blue);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.main-nav ul {
    list-style: none;
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px;
    gap: 15px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.main-nav a.active {
    background-color: var(--nav-active); 
}

/* --- OBSAH STRÁNEK --- */
main {
flex: 1; 
    padding: 40px 0;
}

h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 10px;
}

h3 {
    color: var(--primary-blue);
    margin-top: 20px;
    margin-bottom: 10px;
}


.info-box {
    background-color: var(--light-blue);
    border-left: 5px solid var(--primary-blue);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-box {
    background-color: #fff4f4;
    border-left: 5px solid var(--red-alert);
}

/* --- CENÍK --- */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.price-table th, .price-table td {
    border-bottom: 1px solid #ddd;
    padding: 15px 10px;
    text-align: left;
}

.price-table th {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.price-table tr:hover {
    background-color: #f9f9f9;
}

.price {
    font-weight: bold;
    text-align: right !important;
}

/* --- KONTAKT A FORMULÁŘ --- */
.contact-grid {
    display: flex;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.btn {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover {
    background-color: var(--nav-active);
}


.media-placeholder {
    background-color: #e0e0e0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
}


.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

/* ---PRO MOBILY--- */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .contact-grid {
        flex-direction: column;
    }
}

/* --- STYL PRO ÚVODNÍ FOTOGRAFII --- */
.hero-image {
    width: 100%; 
    max-height: 400px; 
    object-fit: cover; 
    border-radius: 8px; 
    margin-bottom: 20px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

/* --- MODERNÍ ÚVODNÍ STRÁNKA (SLEEK DESIGN) --- */

/* Hlavní kontejner jako prostor přes celou zbylou výšku */
.main-content {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center; 
    justify-content: center; 
    padding: 60px 20px;
    overflow: hidden; 
}

/* Měnící se obrázek na pozadí */
.bg-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: background-image 1.5s ease-in-out; 
}

/* Závoj, který fotky ztlumí/zesvětlí, aby byl text k přečtení */
.bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.6); 
    z-index: 2;
    backdrop-filter: blur(2px); 

}
.home-grid {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px; 
    display: grid;
    grid-template-columns: 1fr 1.8fr; 
    gap: 30px;
    align-items: start; 
}

.sleek-box {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 25px;
    border: none;
}

.home-right .alert-box {
    border-left: 6px solid var(--red-alert);
}

.home-right .info-box-standard {
    border-left: 6px solid var(--primary-blue);
}

.box-hours {
    border-top: 6px solid var(--primary-blue); 
}

.hours-table-sleek {
    width: 100%;
    border-collapse: collapse;
}

.hours-table-sleek td {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.05rem;
}

.hours-table-sleek tr:last-child td {
    border-bottom: none;
}

.hours-table-sleek td:first-child {
    color: var(--primary-blue);
}

.phone-sleek {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-blue);
}


/* Samotné bannery */
.centered-banners {
    position: relative;
    z-index: 3; 
    max-width: 850px;
    width: 100%;
}

/* Úprava boxů pro prémiový vzhled - přidání stínu */
.centered-banners .info-box {
    background-color: #ffffff; 
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); 
    padding: 30px;
    margin-bottom: 25px;
    border: none; 
}

.centered-banners .alert-box {
    border-left: 6px solid var(--red-alert); 
}

.centered-banners .info-box-standard {
    border-left: 6px solid var(--primary-blue);
}

.warning-text {
    color: var(--red-alert);
    margin-top: 15px;
}

@media (max-width: 900px) {
    .home-grid {
        grid-template-columns: 1fr; 
    }
}

/* Box pro uzavření ordinace (dovolená) v levém sloupci */
.closure-box {
    border-left: 6px solid var(--red-alert);
    background-color: #fffafb; 
}

/* --- STYL PRO FOTKU NA STRÁNCE SLUŽBY --- */
.services-image-container {
    width: 100%;
    height: 300px; 
    border-radius: 8px; 
    overflow: hidden; 
    margin-bottom: 30px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.services-staff-photo {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    object-position: center 35%; 
}

/* --- STRÁNKA O NÁS (NÁŠ TÝM) --- */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 20px;
}

.team-card {
    padding: 0; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-photo {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    object-position: top; 
    border-bottom: 4px solid var(--primary-blue); 
}

.team-info {
    padding: 20px;
    flex: 1; 
}

.team-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.team-info .role {
    font-weight: bold;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee; 
}

.team-info .desc {
    font-size: 0.9rem;
    color: #444;
}


@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SEZNAM VYBAVENÍ (O NÁS) --- */
.equipment-list {
    list-style-type: none; 
    padding-left: 0;
}

.equipment-list li {
    position: relative;
    padding-left: 25px; 
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333; 
}


.equipment-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem; 
    position: absolute;
    left: 0;
    top: -4px; 
}