/* PubHouse - Warm, Rustic-Modern Pub */
/* FIREMNÍ WEB Package - Professional with Gallery & Map */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #c17817;
    --primary-dark: #9a5f0f;
    --primary-glow: rgba(193, 120, 23, 0.25);
    --warm: #f5e6d3;
    --warm-light: #faf6f1;
    --dark: #1a120b;
    --dark-light: #2c1810;
    --gray-900: #1a1a1a;
    --gray-700: #444;
    --gray-600: #666;
    --gray-400: #999;
    --gray-300: #d4d0cc;
    --gray-100: #f8f6f3;
    --white: #ffffff;
    --accent: #c44536;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 40px -12px rgba(0,0,0,0.2);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 82px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== DEMO BANNER ==================== */
.demo-banner {
    background: linear-gradient(135deg, #2c1810 0%, #3d2317 100%);
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.demo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 24px;
}

.demo-label {
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.demo-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.demo-cta {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
}

.demo-cta:hover {
    color: #fff !important;
}

/* ==================== PACKAGE INFO ==================== */
.package-info-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 9998;
    text-align: center;
    font-size: 14px;
}

.package-info-banner .container { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.package-badge {
    font-weight: 700; font-size: 0.9rem;
}

.package-details { font-size: 0.78rem; opacity: 0.85; margin: 0; }

/* ==================== NAVBAR ==================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 82px;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    display: flex; align-items: center; gap: 0.5rem;
    text-decoration: none; font-size: 1.5rem;
}

.logo-icon { font-size: 1.75rem; }
.logo-text { font-family: var(--font-display); font-weight: 800; color: var(--gray-900); }
.logo-accent { color: var(--primary); }

.nav-links { display: flex; list-style: none; gap: 1.75rem; align-items: center; }
.nav-links a {
    color: var(--gray-600); text-decoration: none; font-weight: 600;
    font-size: 0.9375rem; transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gray-900); }

.nav-cta {
    background: var(--primary) !important; color: white !important;
    padding: 0.5rem 1.25rem; border-radius: var(--radius-sm);
    transition: all 0.3s ease !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

.hamburger {
    display: none; flex-direction: column; background: none; border: none;
    cursor: pointer; gap: 5px; padding: 4px;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--gray-900); border-radius: 2px; transition: all 0.3s ease; }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute; inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(193, 120, 23, 0.2), transparent),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(193, 120, 23, 0.1), transparent);
}

.hero-overlay {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l10 3.25L20 20.5z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative; z-index: 1;
    text-align: center; max-width: 800px; margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: rgba(193, 120, 23, 0.15);
    border: 1px solid rgba(193, 120, 23, 0.3);
    color: #e8a849;
    padding: 0.5rem 1.25rem; border-radius: 100px;
    font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900; line-height: 1.15;
    margin-bottom: 1.5rem; letter-spacing: -0.01em;
}

.text-accent { color: var(--primary); }

.hero-subtitle {
    font-size: 1.175rem; color: var(--gray-400);
    margin-bottom: 2.5rem; max-width: 600px;
    margin-left: auto; margin-right: auto; line-height: 1.7;
}

.hero-buttons {
    display: flex; gap: 1rem; justify-content: center;
    flex-wrap: wrap; margin-bottom: 3.5rem;
}

.hero-features {
    display: flex; justify-content: center; gap: 3rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-feature {
    display: flex; align-items: center; gap: 0.75rem;
}

.hf-icon { font-size: 2rem; }
.hf-text {
    font-size: 0.8rem; color: var(--gray-400); font-weight: 500;
    text-align: left; line-height: 1.3;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; text-decoration: none; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent; cursor: pointer; font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary); color: var(--white); border-color: var(--primary);
    box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
    background: var(--primary-dark); border-color: var(--primary-dark);
    transform: translateY(-2px); box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-ghost {
    background: transparent; color: var(--gray-400);
    border-color: rgba(255,255,255,0.15);
}
.btn-ghost:hover {
    color: var(--white); border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* ==================== SECTIONS ==================== */
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
    display: inline-block; padding: 0.5rem 1rem;
    background: rgba(193, 120, 23, 0.08); color: var(--primary);
    border-radius: 100px; font-weight: 700; font-size: 0.875rem; margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800; color: var(--gray-900);
    margin-bottom: 1rem; letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.125rem; color: var(--gray-600);
    max-width: 600px; margin: 0 auto;
}

/* ==================== ABOUT ==================== */
.about { background: var(--warm-light); }

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}

.about-text .section-tag { margin-bottom: 1rem; }
.about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 800;
    margin-bottom: 1.5rem; line-height: 1.2;
}

.about-text .lead {
    font-size: 1.15rem; font-weight: 500;
    margin-bottom: 1rem; color: var(--gray-700); line-height: 1.7;
}

.about-text p { color: var(--gray-600); margin-bottom: 2rem; line-height: 1.7; }

.about-features { display: flex; flex-direction: column; gap: 1rem; }
.about-feature {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem; background: var(--white); border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.af-icon { font-size: 1.25rem; min-width: 24px; margin-top: 2px; }
.about-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.15rem; }
.about-feature p { color: var(--gray-600); font-size: 0.875rem; margin: 0; }

.about-image-wrapper { position: relative; }
.about-image {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 500px; object-fit: cover; display: block; }

.about-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--primary); color: var(--white);
    padding: 1.5rem; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-lg);
}
.badge-num { display: block; font-size: 2rem; font-weight: 900; font-family: var(--font-display); line-height: 1; }
.badge-text { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* ==================== MENU SECTION ==================== */
.menu-section { background: var(--white); }

.menu-tabs {
    display: flex; justify-content: center; gap: 0.75rem;
    margin-bottom: 3rem; flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.75rem; background: var(--gray-100);
    border: 2px solid transparent; border-radius: 100px;
    font-size: 0.9375rem; font-weight: 600; cursor: pointer;
    transition: all 0.3s ease; color: var(--gray-600); font-family: var(--font-body);
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active {
    background: var(--primary); color: var(--white);
    border-color: var(--primary); box-shadow: 0 4px 14px var(--primary-glow);
}

.menu-content { display: none; }
.menu-content.active { display: block; animation: fadeUp 0.5s ease; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1rem;
}

.menu-item {
    padding: 1.5rem; border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease; position: relative; background: var(--white);
}
.menu-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px); box-shadow: var(--shadow);
}

.menu-item.popular {
    border-color: rgba(193, 120, 23, 0.3);
    background: rgba(193, 120, 23, 0.03);
}

.popular-badge {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    color: var(--primary); margin-bottom: 0.5rem;
}

.item-header {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 0.5rem;
}
.item-header h3 { font-size: 1.125rem; font-weight: 700; color: var(--gray-900); }
.price { font-size: 1.25rem; font-weight: 800; color: var(--primary); white-space: nowrap; }
.menu-item p { color: var(--gray-600); font-size: 0.9rem; }

/* ==================== EVENTS ==================== */
.events { background: var(--warm-light); }

.events-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.event-card {
    display: flex; gap: 1.5rem;
    background: var(--white); padding: 2rem;
    border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.event-card.featured {
    background: var(--dark); color: var(--white);
}
.event-card.featured .event-info p { color: var(--gray-400); }
.event-card.featured .event-date .day { color: var(--primary); }
.event-card.featured .event-date .month { color: var(--gray-400); }
.event-card.featured .event-tag { background: rgba(193,120,23,0.2); color: #e8a849; }

.event-date { text-align: center; min-width: 70px; }
.event-date .day { display: block; font-size: 2.25rem; font-weight: 900; color: var(--primary); line-height: 1; font-family: var(--font-display); }
.event-date .month { display: block; font-size: 0.8rem; color: var(--gray-600); text-transform: uppercase; font-weight: 600; letter-spacing: 1px; margin-top: 0.25rem; }

.event-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.event-info p { color: var(--gray-600); font-size: 0.9375rem; margin-bottom: 0.75rem; }

.event-tag {
    display: inline-block; padding: 0.3rem 0.75rem;
    background: rgba(193,120,23,0.08); color: var(--primary);
    border-radius: 6px; font-size: 0.8rem; font-weight: 600;
}

/* ==================== GALLERY ==================== */
.gallery { background: var(--white); }

.gallery-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative; overflow: hidden; border-radius: var(--radius);
    cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 1.5rem; opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.gallery-zoom { font-size: 1.5rem; }

/* ==================== CONTACT ==================== */
.contact { background: var(--warm-light); }

.contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 2rem; align-items: start;
}

.contact-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-card {
    padding: 1.5rem; background: var(--white);
    border-radius: var(--radius-sm); border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.contact-card:hover { border-color: var(--primary); transform: translateY(-2px); }

.contact-card.highlight {
    grid-column: span 2;
    background: var(--dark); color: var(--white);
}
.contact-card.highlight h4 { color: var(--white); }
.contact-card.highlight p { color: var(--gray-400); }

.cc-icon { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }
.contact-card h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-card p { color: var(--gray-600); font-size: 0.875rem; line-height: 1.5; }
.contact-card a { color: var(--primary); text-decoration: none; font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }

.map-container {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); min-height: 400px;
}
.map-container iframe { display: block; }

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark); color: var(--white); padding: 4rem 0 2rem;
}

.footer-content {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem; padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; display: block; margin-bottom: 0.75rem; }
.footer-brand p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.6; }

.footer-nav h4, .footer-hours h4 {
    font-size: 1rem; margin-bottom: 1rem; font-weight: 700;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
    color: var(--gray-400); text-decoration: none; font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-hours p { color: var(--gray-400); font-size: 0.9rem; margin-bottom: 0.25rem; }

.footer-bottom { text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image img { height: 350px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hero { min-height: auto; padding: 80px 0 60px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 1.5rem; box-shadow: var(--shadow-lg);
        gap: 0.5rem; border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }

    .hero h1 { font-size: 2.25rem; }
    .hero-features { flex-direction: column; align-items: center; gap: 1rem; }

    section { padding: 60px 0; }
    .section-header { margin-bottom: 2.5rem; }

    .gallery-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-card.highlight { grid-column: auto; }
    .menu-grid { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .hero h1 { font-size: 2rem; }
    .about-badge { left: auto; right: 20px; }
}

@media (max-width: 768px) {
    .demo-banner {
        position: relative;
    }
    .package-info-banner {
        position: relative;
        top: 0;
    }
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    .hero {
        margin-top: 60px;
    }
    .demo-content { flex-direction: column; gap: 6px; }
    .demo-text { display: none; }
}
