:root {
    --bg: #0f0f10;
    --surface: #171719;
    --surface-2: #1f2023;
    --text: #f5f5f5;
    --muted: #b5b7bd;
    --accent: #5d2c91;
    --accent-2: #8d5bc9;
    --accent-text: #d3262d;
    --accent-text-2: #ff5b5f;
    --line: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius: 24px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(93, 44, 145, 0.22), transparent 32%),
        radial-gradient(circle at top right, rgba(141, 91, 201, 0.16), transparent 28%),
        linear-gradient(180deg, #0b0b0c 0%, #111214 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.02);
    border-block: 1px solid var(--line);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(10, 10, 11, 0.72);
    border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 3.5rem;
    aspect-ratio: 1;
    border-radius: 18px;
    padding: 0.45rem;
    box-shadow: var(--shadow);
}

.brand-mark-transparent {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-nav,
.header-actions,
.hero-actions,
.order-actions,
.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.order-actions {
	justify-content: center;
}

.site-nav a,
.footer-links a,
.contact-card,
.social-card a,
.contact-socials a,
.news-follow-links a {
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.footer-links a:hover,
.social-card a:hover,
.contact-socials a:hover,
.news-follow-links a:hover {
    color: var(--accent-2);
}

.lang-switch {
    display: inline-flex;
    padding: 0.18rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.lang-switch button {
    border: 0;
    color: var(--text);
    background: transparent;
    padding: 0.32rem 0.62rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 700;
}

.lang-switch button.is-active {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.button:hover {
    transform: translateY(-1px);
}

.button-secondary {
    background: transparent;
    border-color: var(--line);
    box-shadow: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    min-height: clamp(38rem, 82vh, 56rem);
    background-image:
        linear-gradient(90deg, rgba(10, 10, 11, 0.88) 0%, rgba(10, 10, 11, 0.8) 34%, rgba(10, 10, 11, 0.54) 47%, rgba(10, 10, 11, 0.24) 58%, rgba(10, 10, 11, 0.08) 68%, rgba(10, 10, 11, 0) 76%),
        url("../img/pozadie.png");
    background-size: 100% 100%, auto 100%;
    background-position: left top, right center;
    background-repeat: no-repeat, no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 28% 46%, rgba(141, 91, 201, 0.14), transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: min(100%, 36rem);
}

.hero-grid,
.order-layout,
.contact-grid,
.menu-sheet-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

.eyebrow,
.badge,
.contact-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 1rem;
    color: var(--accent-text);
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.hero h1,
.section-heading h2 {
    margin: 0;
    line-height: 1.05;
    font-size: clamp(2.4rem, 6vw, 5.5rem);
}

.hero-text,
.section-heading p,
.notice-card p,
.hours-card p,
.footer-inner p,
.contact-card p,
.contact-card,
.menu-item-description {
    color: var(--muted);
    line-height: 1.7;
}

.hero-note,
.section-note {
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 700;
    line-height: 1.6;
}

.hero-brandline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-inline-logo {
    width: 8.5rem;
    height: auto;
    flex: 0 0 auto;
}

.hero-points {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.hero-points li::before,
.notice-card li::before {
    content: "•";
    color: var(--accent-text);
    margin-right: 0.55rem;
}

.hero-card,
.stat-card,
.notice-card,
.hours-card,
.contact-card,
.menu-category,
.menu-item,
.menu-sheet-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-visual {
    display: grid;
    gap: 1.5rem;
}

.hero-card {
    padding: 2rem;
}

.hero-card-primary {
    min-height: 21rem;
    background:
        linear-gradient(180deg, rgba(93, 44, 145, 0.22), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.hero-logo {
    width: clamp(8rem, 20vw, 11rem);
    height: auto;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
}

.hero-card-primary h2 {
    margin: 0 0 0.75rem;
    font-size: 2rem;
}

.stats-grid,
.menu-list,
.menu-categories,
.news-layout-simple,
.contact-list {
    display: grid;
    gap: 1.5rem;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.notice-card,
.hours-card,
.menu-category {
    padding: 1.6rem;
}

.stat-card strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.9rem;
}

.section-heading {
    max-width: 46rem;
    margin: 0 auto 2rem;
    text-align: center;
}

@media (max-width: 980px) {
    .site-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        background-size: 100% 100%, auto 100%;
        background-position: left top, right -7rem center;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(10, 10, 11, 0.68) 0%, rgba(10, 10, 11, 0.5) 42%, rgba(10, 10, 11, 0.28) 70%, rgba(10, 10, 11, 0.14) 100%);
    }

    .hero-grid,
    .order-layout,
    .contact-grid,
    .menu-sheet-layout,
    .stats-grid,
    .delivery-grid,
    .menu-list,
    .order-delivery-grid {
        grid-template-columns: 1fr;
    }

    #order.order-delivery-panel {
        padding-top: 0;
    }

    #order.order-delivery-panel .section-heading,
    #delivery.order-delivery-panel .section-heading {
        text-align: center;
        margin-inline: auto;
    }

    .order-delivery-panel .order-actions {
        justify-content: center;
    }
}

.align-left {
    margin-inline: 0;
    text-align: left;
}

.menu-category-header h3,
.hours-card h3,
.notice-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.menu-categories {
    grid-template-columns: 1fr;
}

.menu-category-header {
    margin-bottom: 1.25rem;
}

.menu-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-item {
    overflow: hidden;
    padding: 0;
}

.menu-item-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #202126;
}

.menu-item-content {
    padding: 1.2rem;
}

.menu-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.menu-item h4 {
    margin: 0;
    font-size: 1.1rem;
}

.menu-item-price {
    white-space: nowrap;
    font-weight: 800;
    color: var(--accent-text);
}

.menu-item-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.menu-item-link {
    color: var(--text);
    font-weight: 700;
}

.menu-item-link:hover {
    color: var(--accent-2);
}

.notice-card ul {
    padding-left: 0;
    list-style: none;
    margin: 1rem 0 0;
}

.news-layout-simple {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.news-image-wrap {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.news-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.news-follow-text {
    color: var(--text);
    font-weight: 700;
    margin: 0;
}

.news-follow-text-centered {
    text-align: center;
}

.news-follow-links {
    display: flex ;
    gap: 1rem;
}

.news-follow-links a,
.footer-links a{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-follow-links-centered {
    justify-content: center;
}

.news-follow-links img,
.contact-socials img,
.footer-links img{
    width: 2rem;
    height: 2rem;
}
	
.contact-list {
    margin-bottom: 1.5rem;
}

.contact-card {
    padding: 1.25rem;
}

.contact-card-icon {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
    align-items: start;
}

.contact-card-icon img {
    width: 2rem;
    height: 2rem;
}

.contact-action {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--accent-text);
    font-weight: 700;
}

.contact-socials {
    display: flex;
    gap: 1rem;
}

.contact-card:hover,
.menu-sheet-card:hover,
.contact-socials a:hover,
.news-follow-links a:hover {
    transform: translateY(-2px);
}

.menu-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.menu-quick-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(141, 91, 201, 0.35);
    border-radius: 999px;
    background: rgba(93, 44, 145, 0.14);
    font-weight: 700;
}

.menu-quick-links a:hover {
    color: var(--accent-text-2);
    border-color: rgba(211, 38, 45, 0.45);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.delivery-card {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.delivery-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.menu-item-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.menu-hot-icon {
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
}

.menu-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.menu-meta-label {
    font-weight: 600;
}

.menu-allergen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(141, 91, 201, 0.35);
    background: rgba(93, 44, 145, 0.14);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: help;
}

.hours-row {
    display: grid;
    grid-template-columns: minmax(9.5rem, 1fr) auto;
    align-items: baseline;
    gap: 1rem;
    padding: 0.7rem 0;
}

.hours-row + .hours-row {
    border-top: 1px solid var(--line);
}

.hours-row strong {
    justify-self: end;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
    letter-spacing: 0.02em;
}

.hours-row span {
    font-weight: 600;
}

.hours-card .hours-list {
    margin-bottom: 1rem;
}

.delivery-section .section-heading {
    margin-bottom: 1.25rem;
}

.delivery-car-visual {
    display: flex;
    justify-content: center;
    margin: -0.2rem 0 1rem;
    pointer-events: none;
}

.delivery-car-visual img {
    width: min(100%, 32rem);
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.38));
}

.order-delivery-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.order-delivery-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2.75rem;
    align-items: start;
}

.order-delivery-panel {
    min-width: 0;
}

#order.order-delivery-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding-top: 0.5rem;
}

#order.order-delivery-panel .section-heading,
#delivery.order-delivery-panel .section-heading {
    max-width: none;
    margin-inline: 0;
    text-align: left;
}

#order.order-delivery-panel .section-heading {
    margin-bottom: 1.25rem;
}

.order-delivery-panel .section-heading h2 {
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.order-delivery-panel .order-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
}

#delivery.order-delivery-panel .delivery-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

#delivery.order-delivery-panel .delivery-card {
    padding: 1.35rem;
}

.delivery-car-visual {
    display: flex;
    justify-content: center;
    margin: -0.2rem 0 1rem;
    pointer-events: none;
}

@media (max-width: 720px) {
    .section {
        padding: 4rem 0;
    }

    .header-inner,
    .footer-inner,
    .hero-actions,
    .order-actions,
    .menu-item-head,
    .hero-brandline {
        flex-direction: column;
    }

    .header-inner {
        min-height: auto;
        padding: 0.55rem 0;
        gap: 0.45rem;
    }

    .brand {
        gap: 0.6rem;
    }

    .brand-mark {
        width: 2.35rem;
        border-radius: 12px;
    }

    .brand-text {
        font-size: 1.55rem;
    }

    .site-nav {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        gap: 0.45rem;
        padding-bottom: 0.15rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        flex: 0 0 auto;
        padding: 0.42rem 0.8rem;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        font-weight: 600;
        font-size: 0.94rem;
        white-space: nowrap;
    }

    .header-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.55rem;
    }

    .header-actions .button,
    .header-actions .lang-switch {
        margin: 0;
    }

    .header-actions .button {
        min-height: 2.55rem;
        padding: 0.62rem 1rem;
    }

    .desktop-call {
        display: none;
    }

    .delivery-car-visual {
        margin-top: 0.15rem;
    }

    .delivery-car-visual img {
        width: min(100%, 24rem);
    }

    .hours-row {
        grid-template-columns: minmax(7rem, 1fr) auto;
        gap: 0.75rem;
        align-items: baseline;
    }

    .hours-row strong {
        justify-self: end;
    }

    .hero-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .menu-list {
        grid-template-columns: 1fr;
    }

    .menu-item-image {
        aspect-ratio: 4 / 3;
    }

    .hero-logo {
        width: 80%;
        max-width: 12rem;
    }
}
