:root {
    --primary: #a40000;
    --dark: #111;
    --gold: #c5a059;
    --light-bg: #fdfdfd;
    --white: #ffffff;
    --text: #333;
    --border: #eaeaea;
}
* { box-sizing: border-box; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
    padding: 0;
    background: var(--white);
}

/* NAVIGATION */
nav {
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    backdrop-filter: blur(5px);
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.brand, .brand a {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}
.lang-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lang-link {
    background: #fff;
    border: 1px solid #ddd;
    padding: 7px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    color: #444;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.lang-link:hover,
.lang-link.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* HEADER & HERO */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}
.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 15px;
}
.hero-desc {
    font-size: 1.3rem;
    max-width: 850px;
    margin: 0 auto 25px;
    opacity: 0.95;
    font-weight: 300;
}
.hero-meta {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.hero-meta strong { color: var(--gold); }

.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 28px;
    box-shadow: 0 10px 20px rgba(164, 0, 0, 0.3);
    transition: transform 0.2s, background 0.2s, color 0.2s;
    border: 2px solid var(--primary);
    font-size: 0.95rem;
}
.cta-btn:hover {
    background: transparent;
    transform: scale(1.05);
}

/* CONTENT */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 70px;
}
.lead {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* SECTIONS */
.section-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 70px 0 35px;
}
.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}
.section-title {
    font-size: 1.9rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}

/* GRID & CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: var(--gold);
    background: #fff;
}
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
}
.card-emoji {
    font-size: 2.2rem;
    background: #fff;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.card h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--dark);
}
.card p {
    color: #555;
    margin-bottom: 16px;
    font-size: 0.98rem;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag {
    background: #eee;
    padding: 4px 9px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #666;
}

/* DOMKOVE SECTION */
.domkove-section {
    background: var(--dark);
    color: white;
    padding: 55px 30px;
    border-radius: 20px;
    text-align: center;
    margin: 75px 0;
    border: 2px solid var(--gold);
}
.domkove-section h2 {
    color: var(--white);
    margin-bottom: 14px;
    font-size: 2.2rem;
}
.domkove-section p {
    color: #ccc;
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: 1.02rem;
}

/* MAP SECTION */
.map-section {
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
    padding: 60px 20px 80px;
}
.map-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.map-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: flex-start;
}
.map-copy h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: var(--primary);
}
.map-copy p {
    margin: 10px 0;
    color: #555;
}
.map-copy ul {
    margin: 12px 0 0;
    padding-left: 18px;
    color: #555;
    font-size: 0.96rem;
}
.map-iframe iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* FOOTER */
footer {
    background: #111;
    color: #888;
    padding: 70px 20px 45px;
    text-align: center;
}
.footer-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}
.footer-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 18px;
}

/* UTILITY */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
@media (max-width: 900px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .nav-container { justify-content: center; }
    .lang-bar { justify-content: center; width: 100%; margin-top: 10px; }
    header { padding: 90px 18px; }
}
