:root {
    --gold: #edba37;
    --gold-light: #E8C97A;
    --gold-dim: rgba(201,168,76,0.15);
    --black: #0A0A0A;
    --off-black: #111111;
    --dark: #161616;
    --mid: #222222;
    --muted: #888888;
    --white: #F9F7F2;
    --off-white: #EFEFEA;
    --font: 'Switzer-Regular', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

/* ─── NAVBAR ─────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}
#navbar.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.navbar-brand {
    font-size: 1.6rem;
    font-weight: 900;
    font-family: 'Switzer-Bold', sans-serif;
    color: var(--white) !important;
    text-decoration: none;
    text-transform: uppercase;
}
.navbar-brand span {
    color: var(--gold);
}
.nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    font-family: 'Switzer-Medium', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted) !important;
    transition: color 0.3s;
    padding: 0.4rem 1rem !important;
}
.nav-link:hover {
    color: var(--gold) !important;
}
.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* ─── HERO ───────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.hero-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
    left: 78%;
}
.hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.4rem 1.2rem;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease both;
}
.hero-title {
    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 900;
    font-family: 'Switzer-Bold', sans-serif;
    line-height: 0.92;
    letter-spacing: -0.03em;
    animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title .accent {
    color: var(--gold);
    display: block;
}
.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    font-family: 'Switzer-Light', sans-serif;
    color: var(--muted);
    line-height: 1.7;
    max-width: 360px;
    margin-top: 1.8rem;
    animation: fadeUp 0.8s 0.2s ease both;
}
.hero-subtitle strong {
    color: var(--gold);
    font-weight: 500;
}
.hero-cta {
    margin-top: 2.5rem;
    animation: fadeUp 0.8s 0.3s ease both;
}
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Switzer-SemiBold', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.4rem;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}
.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.4rem;
    border: 1px solid rgba(201,168,76,0.5);
    transition: all 0.3s ease;
    margin-left: 1rem;
}
.btn-outline-gold:hover {
    background: var(--gold-dim);
    color: var(--gold-light);
    border-color: var(--gold);
}
.hero-stats {
    margin-top: 5rem;
    animation: fadeUp 0.8s 0.4s ease both;
}
.stat-item {
    text-align: left;
}
.stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    font-family: 'Switzer-Extrabold', sans-serif;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.3rem;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeUp 0.8s 0.6s ease both;
}
.hero-scroll span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── SECTION COMMONS ────────────────────────────── */
section {
    padding: 8rem 0;
}
.section-tag {
    font-size: 0.68rem;
    font-weight: 600;
    font-family: 'Switzer-Medium', sans-serif;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    font-family: 'Switzer-Bold', sans-serif;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.section-title .gold {
    color: var(--gold);
}
.divider-gold {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0;
}
.text-muted-custom {
    color: var(--muted) !important;
    font-weight: 300;
    line-height: 1.8;
    font-family: 'Switzer-Light', sans-serif;
}
.text-muted-custom strong {
    color: var(--gold);
    font-weight: 500;
}
.white-e {
    color: var(--white);
    font-weight: 900;
    font-family: 'Switzer-Bold', sans-serif;
}

/* ─── O NÁS ──────────────────────────────────────── */
#o-nas {
    background: var(--off-black);
    position: relative;
    overflow: hidden;
}
#o-nas::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
#o-nas::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.about-img-wrap {
    position: relative;
}
.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,168,76,0.06) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,168,76,0.06) 40px);
}
.about-img-placeholder i {
    font-size: 4rem;
    color: rgba(201,168,76,0.2);
    position: relative;
    z-index: 1;
}
.about-frame {
    position: absolute;
    top: -16px;
    right: -16px;
    bottom: 16px;
    left: 16px;
    border: 1px solid rgba(201,168,76,0.25);
    pointer-events: none;
    z-index: 0;
}
.about-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--gold);
    color: var(--black);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: 'Switzer-Extrabold', sans-serif;
    z-index: 2;
}
.about-badge .big {
    font-size: 2rem;
    line-height: 1;
}
.about-badge .sm {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}
.feature-item {
    margin-bottom: 1.5rem;
}
.feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: 1px solid rgba(201,168,76,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    margin-right: 1rem;
}
.feature-text h6 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: 'Switzer-Bold', sans-serif;
    margin-bottom: 0.2rem;
}
.feature-text p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

/* ─── MENU ───────────────────────────────────────── */
#menu {
    background: var(--black);
}
.menu-tabs {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 3rem;
}
.menu-tab {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}
.menu-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.menu-tab.active {
    color: var(--gold);
}
.menu-tab.active::after {
    transform: scaleX(1);
}
.menu-tab:hover {
    color: var(--white);
}
.menu-panel {
    display: none;
}
.menu-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}
.menu-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.menu-card:hover {
    border-color: rgba(201,168,76,0.2);
    transform: translateY(-4px);
}
.menu-card:hover::before {
    transform: scaleX(1);
}
.menu-card-name {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Switzer-Bold', sans-serif;
    margin-bottom: 0.5rem;
}
.menu-card-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.menu-card-price {
    font-size: 1.1rem;
    font-weight: 900;
    font-family: 'Switzer-Extrabold', sans-serif;
    color: var(--gold);
}
.menu-card-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-family: 'Switzer-SemiBold', sans-serif;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 0.25rem 0.6rem;
}

/* ─── CATERING ───────────────────────────────────── */
#catering {
    background: var(--off-black);
    position: relative;
    overflow: hidden;
}
#catering::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.catering-bg-text {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(6rem, 15vw, 14rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(201,168,76,0.03);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}
.catering-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
}
.catering-card:hover {
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-4px);
}
.catering-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.catering-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    font-family: 'Switzer-ExtraBold', sans-serif;
}
.catering-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}
.catering-highlight {
    background: var(--gold-dim);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 2rem 2.5rem;
    margin-top: 2.5rem;
}
.catering-highlight p {
    font-size: 0.9rem;
    color: var(--off-white);
    line-height: 1.8;
    margin: 0;
}
.catering-highlight strong {
    color: var(--gold);
    font-weight: 700;
}

/* ─── REZERVACE ──────────────────────────────────── */
#rezervace {
    background: var(--black);
}
.form-wrap {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 3rem;
}
.form-wrap h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Switzer-Bold', sans-serif;
}
.form-label {
    font-size: 0.72rem;
    font-weight: 600;
    font-family: 'Switzer-Medium', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.form-control,
.form-select {
    background: var(--mid) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 0 !important;
    color: var(--white) !important;
    font-family: var(--font);
    font-size: 0.88rem;
    padding: 0.8rem 1rem;
    transition: border-color 0.3s;
}
.form-control:focus,
.form-select:focus {
    box-shadow: none !important;
    border-color: rgba(201,168,76,0.5) !important;
    background: var(--mid) !important;
}
.form-control::placeholder {
    color: rgba(255,255,255,0.2) !important;
}
.form-select option {
    background: var(--mid);
    color: var(--white);
}
.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: 'Switzer-SemiBold', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}
.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}
.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid rgba(201,168,76,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}
.info-content h6 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    font-family: 'Switzer-Medium', sans-serif;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.info-content p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}
.map-placeholder {
    width: 100%;
    height: 260px;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.8rem;
    color: var(--muted);
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    text-decoration: none;
    transition: border-color 0.3s;
}
.map-placeholder:hover {
    border-color: rgba(201,168,76,0.3);
}
.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(201,168,76,0.04) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(201,168,76,0.04) 30px);
}
.map-placeholder i {
    font-size: 2rem;
    color: rgba(201,168,76,0.4);
    position: relative;
}
.map-placeholder span {
    position: relative;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
    background: var(--off-black);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 3rem 0 2rem;
}
.footer-brand {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Switzer-Bold', sans-serif;
}
.footer-brand span {
    color: var(--gold);
}
.footer-tagline {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.4rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-heading {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    margin: 0;
}

/* ─── TOAST ──────────────────────────────────────── */
#toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    z-index: 9999;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
#toast.show {
    transform: translateY(0);
    opacity: 1;
}

.soc-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all .3s;
}

.soc-link:hover,
.soc-link:focus {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    .section-hero {
        padding: 8rem 0 5rem;
    }
    .form-wrap {
        padding: 2rem 1.5rem;
    }
    .btn-outline-gold {
        margin-left: 0;
        margin-top: 0.8rem;
    }
    .about-badge {
        width: 90px;
        height: 90px;
        bottom: -12px;
        left: -12px;
    }
    .about-badge .big {
        font-size: 1.5rem;
    }
    .navbar {
        background-color: var(--black);
    }
}
