/* Globální nastavení */
:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
    --light: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navigace */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.95);
}

.nav-active {
    padding: 10px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: var(--white);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--gold); }

/* --- Společné styly pro Taby (Služby i Ceník) --- */
.tab-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

/* Styly pro všechna přepínací tlačítka */
.tab-btn, .tab-btn-price {
    padding: 12px 30px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--dark);
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.tab-btn:hover, .tab-btn.active,
.tab-btn-price:hover, .tab-btn-price.active {
    background: var(--gold);
    color: white;
}

/* Skrytí obsahu a animace */
.tab-content, .price-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active, .price-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Grid služeb */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 40px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.service-card:hover {
    border-color: var(--gold);
    background: #fafafa;
}

/* Hero sekce */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn:hover {
    background: #b38f4d;
}

section { padding: 100px 10%; }

h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.bg-light { background-color: var(--light); }

/* Ceník - Tabulka */
.price-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--white);
    padding: 20px;
}

.price-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #ddd;
}

.price-table tr:hover {
    background: #fdfdfd;
}

.price-table td:last-child {
    text-align: right;
    font-weight: bold;
    color: var(--gold);
    white-space: nowrap;
}

/* Kontakt */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info, .map-box { flex: 1; }

.map-placeholder {
    height: 300px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    background: var(--dark);
    color: var(--white);
}

/* Responzivita */
@media (max-width: 768px) {
    .contact-wrapper { flex-direction: column; }
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .tab-controls { flex-direction: column; align-items: center; }
    .tab-btn, .tab-btn-price { width: 100%; max-width: 300px; }
}