/* =========================================
   1. ZÁKLADNÍ NASTAVENÍ A PROMĚNNÉ
   ========================================= */
   :root {
    --primary: #2d4a34;    /* Hospodská zelená */
    --accent: #c5a059;     /* Zlatá */
    --dark: #1a1a1a;       /* Pozadí */
    --light: #f4f4f4;      /* Text */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

/* =========================================
   2. NAVIGACE (HEADER)
   ========================================= */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--accent); }

.btn-nav {
    background: var(--accent);
    color: var(--dark) !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

/* =========================================
   3. HERO SEKCE (BANNER SE SLIDESHOW)
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

/* Kontejner pro slidy */
.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Jednotlivý slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-image-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: smoothZoom 25s infinite alternate ease-in-out;
}

@keyframes smoothZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
    z-index: 10;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6.5rem);
    color: var(--accent);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.welcome-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

/* Tlačítka v banneru */
.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline {
    border: 1px solid var(--light);
    color: var(--light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197,160,89,0.2); }
.btn-outline:hover { background: white; color: var(--dark); }


/* =========================================
   4. KVÍZ SEKCE
   ========================================= */
.section-quiz {
    padding: 8rem 0;
    background: #1a1a1a;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.quiz-box {
    display: flex;
    background: #222;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.quiz-image { flex: 1; min-height: 350px; }
.quiz-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.quiz-info {
    flex: 1.2;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.btn-small-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: 0.3s;
}
.btn-small-link:hover { padding-left: 10px; }


/* =========================================
   5. STRÁNKA MENU (Oprava překrývání)
   ========================================= */
.menu-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #252525 0%, #1a1a1a 100%);
    padding: 120px 20px 60px;
}

.coming-soon-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 25px;
    padding: 4rem 2rem;
    max-width: 650px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.coming-soon-container i { font-size: 4.5rem; color: var(--accent); }
.coming-soon-container h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 7vw, 3.5rem); color: var(--accent); }
.divider { height: 3px; width: 80px; background: var(--accent); }


/* =========================================
   6. STRÁNKA GALERIE
   ========================================= */
.galerie-page {
    padding: 150px 0 100px;
}

.galerie-header { text-align: center; margin-bottom: 4rem; padding: 0 20px; }
.galerie-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 4.5rem); color: var(--accent); }

.uhulu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--transition);
    opacity: 0.85;
}

.gallery-item:hover img { transform: scale(1.1); opacity: 1; }


/* =========================================
   7. FOOTER, MOBILNÍ MENU & PRÁVNÍ INFO
   ========================================= */
footer {
    background: #111;
    padding: 4rem 2rem 2rem;
    border-top: 2px solid var(--accent);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.footer-col h3 { color: var(--accent); margin-bottom: 1.5rem; }
.footer-col a { color: #ccc; text-decoration: none; }
.credit { text-align: center; margin-top: 3rem; opacity: 0.5; font-size: 0.8rem; }

/* --- PRÁVNÍ ÚDAJE (LITTLE FOOTER) --- */
.legal-info {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Velmi jemná linka */
}

.legal-info p {
    font-size: 0.7rem; /* Velmi malé písmo */
    color: rgba(255, 255, 255, 0.15); /* Skoro neviditelné (tmavě šedé) */
    margin-bottom: 0.2rem;
    line-height: 1.4;
    transition: 0.3s;
}

/* Po najetí myší se text zviditelní */
.legal-info:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Mobilní menu - tlačítko */
.burger { display: none; cursor: pointer; color: var(--accent); font-size: 1.8rem; }

/* Mobilní menu - vysouvací část */
.mobile-nav {
    display: none;
    position: absolute;
    top: 80px; left: 0; width: 100%;
    background: var(--dark);
    flex-direction: column;
    text-align: center;
    border-bottom: 3px solid var(--accent);
    z-index: 999;
}

.mobile-nav.active { display: flex; }
.mobile-nav a { padding: 1.5rem; border-top: 1px solid #222; color: white; text-decoration: none; font-size: 1.2rem; }

@media (max-width: 850px) {
    .nav-links { display: none; }
    .burger { display: block; }
    .quiz-box { flex-direction: column; }
    .quiz-info { padding: 2.5rem 1.5rem; }
}