﻿/* Základní nastavení */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; background: #ffffff; color: #333; line-height: 1.6; scroll-behavior: smooth; }
h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: #1a4331; }

/* Navigace s velkým logem (200px) */
nav { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 20px 8%; background: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: sticky; top: 0; z-index: 1000;
}
.logo img { height: 200px; width: auto; display: block; transition: 0.3s; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 35px; }
nav ul li a { text-decoration: none; color: #1a4331; font-weight: bold; font-size: 1.2em; transition: 0.3s; }
nav ul li a:hover { color: #2e7d32; }

/* Hero úvod */
.hero { background: #1a4331; color: white; padding: 100px 5%; text-align: center; }
.hero h1 { font-size: 3.2em; margin-bottom: 15px; color: white; }
.btn-call { 
    background: #ffffff; color: #1a4331; padding: 20px 40px; display: inline-block; 
    margin-top: 30px; border-radius: 10px; text-decoration: none; font-weight: bold; font-size: 1.3em;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25); transition: 0.3s;
}
.btn-call:hover { transform: translateY(-4px); background: #f4f8f5; }

/* Sekce */
section { padding: 100px 5%; max-width: 1100px; margin: auto; }
h2 { margin-bottom: 40px; border-bottom: 5px solid #1a4331; display: inline-block; padding-bottom: 10px; font-size: 2.5em; }

/* Textový odkaz na fitko */
.text-link { color: #2e7d32; text-decoration: underline; font-weight: bold; }
.text-link:hover { color: #1a4331; text-decoration: none; }

/* Tabulka ceníku */
.table-wrapper { margin-top: 30px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; font-size: 1.2em; }
th, td { padding: 25px; border-bottom: 1px solid #eee; text-align: left; }
th { background: #f4f8f5; color: #1a4331; }

/* Poznámky pod ceníkem */
.price-notes { margin-top: 30px; }
.price-notes p { color: #1a4331; font-style: italic; font-size: 1.1em; }
.price-notes .disclaimer { font-size: 0.9em; margin-top: 10px; color: #666; }

/* Kontakt a spodní logo */
#kontakt { text-align: center; background: #fdfdfd; padding: 120px 5%; border-top: 1px solid #eee; }
.contact-container { display: flex; flex-direction: column; align-items: center; }
.footer-logo img { width: 380px; height: auto; margin-bottom: 50px; }
.contact-info p { margin: 12px 0; font-size: 1.3em; }
.contact-info a { color: #1a4331; text-decoration: none; font-weight: bold; }

/* Patička - Teď bez názvu s.r.o. */
footer { background: #1a4331; color: white; text-align: center; padding: 40px; font-size: 1.1em; }

/* Mobilní verze */
@media (max-width: 768px) {
    nav { flex-direction: column; padding: 25px; }
    .logo img { height: 150px; margin-bottom: 20px; }
    nav ul li { margin: 0 10px; }
    .hero h1 { font-size: 2.2em; }
    .footer-logo img { width: 280px; }
}