/* Globální nastavení */
:root {
    --primary: #0077be;
    --accent: #00d2ff;
    --dark: #2c3e50;
    --light: #f4f7f6;
    --success: #27ae60;
    --danger: #e74c3c;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: auto; }

/* Navigace */
.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; text-decoration: none; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-links { list-style: none; display: flex; gap: 25px; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* HERO SEKCE S VAŠÍM OBRÁZKEM */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35)), 
                url('05-2-2048x1386.jpg'); /* Načítání z rootu */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 { font-size: 3rem; margin-bottom: 10px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }

/* Status a Počasí */
.status-badge {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin: 15px 0;
    text-transform: uppercase;
}
.open { background: var(--success); }
.closed { background: var(--danger); }

.weather-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 15px 30px;
    border-radius: 15px;
    margin: 10px auto;
    max-width: fit-content;
}
.weather-item strong { font-size: 1.4rem; display: block; }

/* Sekce a Karty - OPRAVA PŘEKRÝVÁNÍ */
.section-title { text-align: center; margin: 60px 0 30px; font-size: 2.2rem; }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px; /* Zde byla chyba, nyní je to opravené */
}

.card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}
.card:hover { transform: translateY(-5px); }
.card .icon { font-size: 3rem; margin-bottom: 15px; display: block; }

/* Ceník */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.price-card { 
    background: white; padding: 30px; border-radius: 15px; text-align: center; 
    border-bottom: 4px solid var(--primary); box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.price-card .amount { font-size: 2.2rem; font-weight: 800; display: block; color: var(--primary); }

/* Kontakt */
.contact-wrapper { 
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; 
    background: white; padding: 40px; border-radius: 20px; margin-bottom: 60px;
}
.map-container iframe { width: 100%; height: 300px; border-radius: 15px; border: 0; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
}
