/* ========== RESET & ZÁKLAD ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #020617;
    --bg-elevated: #020617;
    --bg-soft: #020617;
    --accent: #f97316;
    --accent-soft: rgba(249, 115, 22, 0.1);
    --accent-strong: #ea580c;
    --text: #f9fafb;
    --muted: #9ca3af;
    --border-subtle: rgba(148, 163, 184, 0.35);
    --radius-lg: 1.5rem;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
    --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #0f172a 0, #020617 55%, #000 100%);
    color: var(--text);
    line-height: 1.6;
}

/* ========== OBECNÉ ========== */
a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 1rem;
}

main {
    min-height: calc(100vh - 80px);
}

.section {
    padding: 4rem 1.5rem;
}

.section--compact {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .section {
        padding: 3rem 1.25rem;
    }
}

/* ========== HEADER & NAV ========== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.95),
        rgba(15, 23, 42, 0.8),
        transparent
    );
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 1.1rem;
    border: 1px solid rgba(248, 250, 252, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #020617; /* základní tmavé pozadí */
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.85);
    overflow: hidden; /* ať logo nečumí ven */
    padding: 0;
}
.logo__img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* logo se pěkně vejde dovnitř */
    display: block;
}
.logo span {
    transform: translateY(-1px);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text__name {
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}

.brand-text__tagline {
    font-size: 0.78rem;
    color: var(--muted);
}

/* NAV LINKS */
.navbar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.nav-links a:hover {
    color: var(--text);
    border-bottom-color: rgba(249, 115, 22, 0.7);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--text);
    border-bottom-color: var(--accent);
}

/* NAV CTA */
.nav-cta {
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(249, 115, 22, 0.7);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: radial-gradient(circle at top, rgba(249, 115, 22, 0.15), transparent 60%);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.9);
}

.nav-cta span {
    font-size: 0.9rem;
}

/* NAV TOGGLE (MOBILE) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    display: block;
    margin: 4px 0;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ========== HERO / DOMŮ ========== */
.hero {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 2.75rem;
    align-items: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.8rem 0.25rem 0.25rem;
    border-radius: var(--radius-pill);
    background: radial-gradient(circle at left, rgba(249, 115, 22, 0.4), transparent 55%);
    border: 1px solid rgba(148, 163, 184, 0.5);
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.hero__eyebrow-badge {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(249, 250, 251, 0.3);
}

.hero__title {
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    line-height: 1.05;
    margin: 0 0 1.1rem;
}

.hero__title span {
    background: linear-gradient(135deg, #f97316, #fde68a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__subtitle {
    max-width: 32rem;
    color: var(--muted);
    margin-bottom: 1.8rem;
}

/* HERO CTA */
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.35rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-color: rgba(248, 250, 252, 0.06);
    box-shadow: 0 16px 36px rgba(234, 88, 12, 0.55);
    color: #0b1120;
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(234, 88, 12, 0.7);
}

.btn--ghost {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(148, 163, 184, 0.7);
    color: var(--text);
}

.btn--ghost:hover {
    background: rgba(15, 23, 42, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.9);
}

/* HERO META */
.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero__meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
}

/* HERO IMAGE KARTA */
.hero-card {
    background: radial-gradient(circle at top, rgba(249, 115, 22, 0.35), rgba(15, 23, 42, 0.99));
    border-radius: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow: var(--shadow-soft);
    padding: 1.4rem;
    position: relative;
    overflow: hidden;
}

.hero-card__inner {
    border-radius: 1.6rem;
    padding: 1.3rem 1.3rem 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(248, 250, 252, 0.07), transparent 55%),
        radial-gradient(circle at bottom, rgba(15, 23, 42, 0.9), #020617);
    border: 1px solid rgba(15, 23, 42, 0.85);
    position: relative;
}

.hero-card__photo {
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

/* nový styl pro obrázek drinku */
.hero-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* pěkně vyplní rámeček i kdyby nebyl úplně 1:1 */
}

.hero-card__footer {
    margin-top: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-card__tag {
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-card__tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
}

.hero-card__rating {
    text-align: right;
}

/* ========== SEKCE: HIGHLIGHTY (DOMŮ) ========== */
.subheading {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.heading {
    font-size: 1.8rem;
    margin: 0 0 0.75rem;
}

.heading span {
    color: var(--accent);
}

.text-muted {
    color: var(--muted);
    max-width: 34rem;
}

.grid-3 {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.75), #020617 70%);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem 1.35rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-subtle);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: -30% -40% auto 40%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15), transparent 65%);
    opacity: 0.9;
    pointer-events: none;
}

.card__icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.card__title {
    margin: 0 0 0.5rem;
    font-size: 1.02rem;
}

.card__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

/* ========== SEKCE: SPECÁLY (DOMŮ) ========== */
.specials {
    margin-top: 2.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.specials-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.special-item {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.6);
    font-size: 0.95rem;
}

.special-item__name {
    font-weight: 500;
}

.special-item__desc {
    color: var(--muted);
    font-size: 0.82rem;
}

.special-item__price {
    font-weight: 500;
}

.special-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.6rem;
}

/* ========== STRÁNKA ROZVOZ ========== */
.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 2.3rem;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.85rem 0.3rem 0.4rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at left, rgba(34, 197, 94, 0.35), transparent 55%);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 0.8rem;
}

.badge-dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(248, 250, 252, 0.25);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.check-list li::before {
    content: "✓";
    margin-right: 0.5rem;
    color: #22c55e;
}

/* FORMULÁŘ */
.form-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: var(--shadow-subtle);
}

.form-row {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.9rem;
}

label {
    font-size: 0.8rem;
    color: var(--muted);
}

input,
select,
textarea {
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.95);
    padding: 0.55rem 0.75rem;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.4);
    background: #020617;
}

textarea {
    resize: vertical;
    min-height: 90px;
}

.form-footnote {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.7rem;
}

/* ========== STRÁNKA NABÍDKA ========== */
.tabs {
    display: inline-flex;
    padding: 0.25rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.7);
    margin-bottom: 1.75rem;
}

.tab {
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    cursor: pointer;
}

.tab--active {
    background: rgba(249, 115, 22, 0.15);
    color: var(--text);
}

.menu-section {
    margin-bottom: 2.5rem;
}

.menu-section__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.menu-section__subtitle {
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 1.3rem;
}
.menu-section {
    display: none;
}

.menu-section.menu-section--active {
    display: block;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.menu-item {
    padding: 1rem 1rem 0.9rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), #020617);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.9);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.menu-item__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.menu-item__name {
    font-weight: 500;
    font-size: 0.98rem;
}

.menu-item__price {
    font-weight: 500;
    white-space: nowrap;
}

.menu-item__desc {
    font-size: 0.84rem;
    color: var(--muted);
}

.menu-item__meta {
    font-size: 0.8rem;
    color: rgba(156, 163, 175, 0.9);
}

/* ========== STRÁNKA KONTAKT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.2rem;
    align-items: flex-start;
}

.contact-block {
    margin-bottom: 1.5rem;
}

.contact-block h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.contact-block p {
    margin: 0;
    font-size: 0.9rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.badge-soft {
    display: inline-flex;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 0.8rem;
    color: var(--muted);
}

.hours-table {
    margin-top: 0.8rem;
    font-size: 0.86rem;
    color: var(--muted);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.15rem 0;
}

.map-placeholder {
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle, rgba(15, 23, 42, 0.9), #020617);
    padding: 1.2rem 1.3rem;
    font-size: 0.86rem;
    color: var(--muted);
    box-shadow: var(--shadow-subtle);
}

/* ========== FOOTER ========== */
footer {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding: 1.8rem 1.5rem 1.6rem;
    margin-top: 2rem;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--muted);
}

.footer__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__links a {
    text-decoration: none;
    color: inherit;
}

.footer__social {
    display: flex;
    gap: 0.6rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid,
    .specials,
    .split-grid,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        max-width: 380px;
        margin: 0 auto;
    }

    .split-grid,
    .contact-grid {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar__right {
        gap: 0.3rem;
    }

    .nav-links {
        position: absolute;
        inset: 63px 0 auto 0;
        flex-direction: column;
        padding: 0.8rem 1.5rem 1.3rem;
        background: radial-gradient(circle at top, #020617, #020617 70%);
        border-bottom: 1px solid rgba(148, 163, 184, 0.3);
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    header.nav-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    header.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    header.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    header.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
        padding-top: 0.5rem;
    }
}

@media (max-width: 640px) {
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
