/* ZÁKLADNÍ NASTAVENÍ */
:root {
    --primary: #2c3e50; /* Tmavě modrošedá - elegance */
    --accent: #c0a062;  /* Zlatá/béžová - první republika */
    --light: #f9f9f9;
    --dark: #1a1a1a;
    --text: #333;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-top: 0;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.text-center { text-align: center; }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--primary); color: #fff; }
.text-white { color: #fff; }
.mt-2 { margin-top: 20px; }

/* NAVIGACE */
nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }

.btn-nav {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 4px;
    transition: background 0.3s;
}
.btn-nav:hover {
    background: var(--accent);
}

/* HERO SEKCE */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('zahrada_3.jpeg'); 
    background-size: cover;
    background-position: center;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero h1 { color: #fff; font-size: 3.5rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary:hover { 
    background: #a3864d; 
    transform: translateY(-2px);
}
.phone-btn {
    font-size: 1.3rem;
    padding: 15px 35px;
    font-weight: bold;
}

/* LAYOUT O NÁS + GALERIE */
.row {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}
.col-text, .col-img { flex: 1; min-width: 300px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-grid img {
    width: 100%;
    height: 180px; 
    object-fit: cover; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.08);
    opacity: 0.9;
}

/* VYBAVENÍ GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.feature-card p { margin: 0; color: #666; }

/* CENÍK */
.price-table {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
th, td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
th { background: var(--primary); color: #fff; font-weight: 600; }
.highlight-row { background-color: #fdfbf7; }
.price-notes { color: #666; }

/* REZERVACE A KONTAKTNÍ KARTA */
.reservation-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}
.calendar-box, .form-box { 
    flex: 1; 
    min-width: 300px; 
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}
.calendar-box h3, .form-box h3 { margin-bottom: 20px; }

/* Responzivní IFRAME */
iframe { 
    width: 100%; 
    height: 450px; 
    border: none; 
    border-radius: 8px; 
    background: #fff;
    flex-grow: 1;
}

.contact-card-reservation {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.contact-card-reservation p {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Sjednocená Tlačítka kontaktů - e-mail na jednom řádku */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 360px; 
}

.btn-contact-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--accent);
    color: #fff;
    padding: 15px 25px;
    font-size: 1.25rem; 
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 160, 98, 0.4);
    white-space: nowrap; /* Tímto přikazujeme nezalamovat */
}

.btn-contact-large:hover {
    background: #a3864d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 160, 98, 0.6);
}

/* FAQ GRID */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.faq-item h4 { margin-bottom: 10px; font-size: 1.2rem; }
.faq-item p { color: #555; margin: 0; }

/* FOOTER */
footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 50px 0 30px;
}
footer h3 { color: #fff; margin-bottom: 20px; }
footer a { transition: color 0.3s; }
footer a:hover { color: var(--accent); }
footer p { margin-bottom: 10px; }
.copyright { margin-top: 30px; font-size: 0.9rem; opacity: 0.6; }

/* MOBIL */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .reservation-wrapper { flex-direction: column; gap: 20px; }
    .row { gap: 30px; }
    .section { padding: 50px 0; }
    
    .btn-contact-large {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img { height: 220px; }
    iframe { height: 500px; }
    
    .btn-contact-large {
        font-size: 1rem;
        padding: 12px 15px;
    }
}