/* Základné nastavenia */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: #e0e0e0; background-color: #1e201e; display: flex; flex-direction: column; min-height: 100vh; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: #a9c2a2; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 40px 0; }
.bg-light { background-color: transparent; padding-bottom: 60px; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 30px; }
.text-center { text-align: center; max-width: 800px; margin: 0 auto; font-size: 1.1rem; }

/* Animácia prechodu stránok */
main { flex: 1; animation: fadeIn 0.4s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Hlavička a navigácia */
header { background-color: #151715; box-shadow: 0 2px 5px rgba(0,0,0,0.5); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-size: 1.8rem; color: #a9c2a2; }
.logo span { color: #87a97e; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { text-decoration: none; color: #e0e0e0; font-weight: 600; transition: color 0.3s; }
nav a:hover { color: #87a97e; }

/* Hero sekcia */
#hero { height: 70vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero-content h2 { color: #a9c2a2; font-size: 3.5rem; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }

/* Sekcia Vitajte */
.welcome-section { display: flex; gap: 40px; align-items: center; margin-top: 20px; }
.welcome-text { flex: 1; }
.welcome-text h2 { margin-bottom: 15px; font-size: 2rem; color: #a9c2a2; }
.welcome-text p { font-size: 1.1rem; margin-bottom: 20px; color: #e0e0e0; }
.quick-benefits { list-style: none; }
.quick-benefits li { margin-bottom: 10px; font-weight: 600; color: #87a97e; }
.welcome-image { flex: 1; }
.rounded-img { width: 100%; border-radius: 8px; object-fit: cover; }
.shadow { box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* Tlačidlá */
.btn { display: inline-block; padding: 12px 30px; text-decoration: none; font-weight: bold; border-radius: 5px; transition: background 0.3s, transform 0.2s; text-align: center; border: none; font-size: 1rem; font-family: inherit;}
.btn:hover { transform: translateY(-2px); }
.btn-green { background-color: #4a7c59; color: #fff; }
.btn-green:hover { background-color: #3b6347; }

/* O nás texty a galéria */
.text-content { max-width: 800px; margin: 0 auto; font-size: 1.1rem; }
.text-content p { margin-bottom: 15px; }
.feature-images { display: flex; gap: 15px; justify-content: center; }
.feature-images img { width: 30%; height: 250px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
.gallery-img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.3s; }
.gallery-img:hover { transform: scale(1.03); }

/* Cenník */
.pricing-table { max-width: 800px; margin: 50px auto 30px auto; background: #2a2c2a; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.pricing-table h3 { text-align: center; margin-bottom: 20px; color: #a9c2a2; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid #444; color: #e0e0e0; }
th { background-color: #3b5c45; color: white; font-weight: 600; border-bottom: none; }
tr:hover { background-color: #333633; }

/* Okolie (Nové karty s obrázkami) */
.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.location-card { background: #2a2c2a; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: transform 0.3s; display: flex; flex-direction: column; }
.location-card:hover { transform: translateY(-5px); }
.location-card.has-image img { width: 100%; height: 200px; object-fit: cover; border-bottom: 4px solid #4a7c59; }
.card-content { padding: 25px; flex: 1; }
.card-content h3 { margin-bottom: 15px; font-size: 1.3rem; color: #a9c2a2; }
.card-content p { color: #e0e0e0; }

/* Kontakt sekcia a Formulár */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-box { background: #2a2c2a; padding: 30px; border-radius: 8px; border-left: 5px solid #4a7c59; margin-bottom: 30px; }
.contact-info-box p { margin-bottom: 10px; font-size: 1.1rem; color: #e0e0e0; }
.contact-info-box h3 { color: #a9c2a2; margin-bottom: 15px; }

.form-container { background: #2a2c2a; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); border: 1px solid #333; }
.form-container h3 { margin-bottom: 20px; color: #a9c2a2; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 5px; color: #bbb; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #555; background-color: #1e201e; color: #fff; border-radius: 5px; font-family: inherit; font-size: 1rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #87a97e; }

.map-container { width: 100%; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.3); border: 4px solid #4a7c59; }
.map-container iframe { display: block; width: 100%; }

/* Pätička */
footer { background-color: #151715; color: #fff; padding: 20px 0; margin-top: auto; border-top: 1px solid #333; }
.footer-bottom { text-align: center; font-size: 0.9rem; color: #aaa; padding: 0; }

/* Mobilný dizajn */
@media (max-width: 768px) {
    .header-flex { flex-direction: column; gap: 15px; }
    nav ul { flex-wrap: wrap; justify-content: center; }
    .hero-content h2 { font-size: 2.5rem; }
    .contact-grid, .welcome-section { grid-template-columns: 1fr; flex-direction: column; }
    .feature-images { flex-direction: column; }
    .feature-images img { width: 100%; height: auto; }
    .map-container iframe { min-height: 350px; }
}