:root {
    --bg: #0f0f11;
    --panel: #151519;
    --text: #e9e9ee;
    --muted: #b9bac6;
    --brand: #b80d1a; /* červená pro Červenou sedmu */
    --brand-2: #e34d57;
    --accent: #f4e7cf;
    --max: 1200px;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: linear-gradient(180deg, #0b0b0d 0%, #121217 60%, #14161a 100%);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding: 0 20px
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(140%) blur(12px);
    background: rgba(10, 10, 12, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 14px 20px
}

.brand {
    display: flex;
    align-items: center;
}

.brand h1 {
    font: 700 20px/1.1 'Playfair Display', serif;
    margin: 0
}

nav {
    display: flex;
    gap: 18px;
    align-items: center;
    font-weight: 600
}

nav a {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--muted)
}

nav a:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--text)
}

.cta {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow)
}

.language-toggle {
    width: 18px;
    height: 12px;
    vertical-align: middle;
    margin-right: 6px;
}

/* Hero */
.hero {
    position: relative;
    padding-top: 0;
    margin-top: -90px;
}

.hero-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    padding-top: 90px;
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1652621589655-c2bcd3db8180?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    filter: brightness(.55) saturate(1.2);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 700px at 20% 10%, rgba(255, 255, 255, .05), transparent 50%), linear-gradient(180deg, rgba(184, 13, 26, .05), rgba(20, 22, 26, .6) 60%, rgba(20, 22, 26, 1) 100%)
}

.hero-content {
    position: relative;
    padding: 110px 20px 120px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--accent);
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.title {
    font: 700 56px/1.05 'Playfair Display', serif;
    margin: 16px 0 12px
}

.subtitle {
    font-weight: 400;
    color: #fff;
    max-width: 750px;
    font-size: 18px
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .15)
}

.btn.primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: transparent;
    color: #fff
}

.btn.ghost {
    background: rgba(255, 255, 255, .06);
    color: var(--text)
}

/* Sections */
section {
    padding: 70px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 26px
}

.section-head h2 {
    font: 700 36px/1.1 'Playfair Display', serif;
    margin: 0
}

.section-head p {
    color: var(--muted);
    margin: 0
}

.panel {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

/* Menu cards */
.menu-grid {
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    gap: 16px
}

.menu-card {
    grid-column: span 6;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center
}

.menu-thumb {
    width: 96px;
    height: 96px;
    border-radius: 14px;
    background: #222;
    overflow: hidden;
    flex: 0 0 auto
}

.menu-body h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: var(--accent)
}


/* About */
.about {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 24px
}

.about .photo {
    min-height: 360px;
    border-radius: var(--radius);
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    gap: 12px
}

.g1 {
    grid-column: span 6;
    height: 220px
}

.g2 {
    grid-column: span 3;
    height: 220px
}

.g3 {
    grid-column: span 3;
    height: 220px
}

.gal {
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

.gal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05)
}

/* Reservation */
.reserve {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.reserve .badge {
    margin-right: 10px;
}

form {
    display: grid;
    gap: 12px
}

label {
    font-size: 14px;
    color: var(--muted)
}

input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0f1013;
    color: var(--text);
}

textarea {
    min-height: 110px;
    resize: vertical
}

.submit {
    cursor: pointer;
    font-weight: 700
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 320px
}

.list {
    display: grid;
    gap: 10px
}

.list .row {
    display: flex;
    gap: 10px;
    align-items: center
}

.badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--muted)
}

/* Footer */
footer {
    padding: 30px 0 60px;
    color: var(--muted)
}

.footerbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

/* Responsive */
@media (max-width: 1000px) {
    .about {
        grid-template-columns:1fr
    }

    .reserve {
        grid-template-columns:1fr
    }

    .contact-grid {
        grid-template-columns:1fr
    }
}

@media (max-width: 800px) {
    .title {
        font-size: 40px
    }

    .menu-card {
        grid-column: span 12
    }

    nav > .nav-item {
        display: none
    }
}
