/* _content/PodlaskiKebab/Components/Layout/Footer.razor.rz.scp.css */
.footer[b-6ox5adp2xc] {
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid[b-6ox5adp2xc] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo[b-6ox5adp2xc] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.footer__logo-icon[b-6ox5adp2xc] {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.footer__description[b-6ox5adp2xc] {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer__heading[b-6ox5adp2xc] {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

.footer__links[b-6ox5adp2xc] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links li[b-6ox5adp2xc] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer__links li:hover[b-6ox5adp2xc],
.footer__links a:hover[b-6ox5adp2xc] {
    color: white;
}

.footer__links svg[b-6ox5adp2xc] {
    flex-shrink: 0;
    opacity: 0.6;
}

.footer__social-links[b-6ox5adp2xc] {
    display: flex;
    gap: var(--space-md);
}

.footer__social-links a[b-6ox5adp2xc] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.footer__social-links a:hover[b-6ox5adp2xc] {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.footer__bottom[b-6ox5adp2xc] {
    padding-top: var(--space-xl);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8125rem;
}

.footer__credit[b-6ox5adp2xc] {
    margin-top: var(--space-sm);
    font-size: 0.75rem;
}

.footer__credit a[b-6ox5adp2xc] {
    color: var(--color-accent);
    transition: color var(--transition-fast);
}

.footer__credit a:hover[b-6ox5adp2xc] {
    color: white;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .footer__grid[b-6ox5adp2xc] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer__grid[b-6ox5adp2xc] {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}
/* _content/PodlaskiKebab/Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout — no scoped styles needed */
/* _content/PodlaskiKebab/Components/Layout/NavBar.razor.rz.scp.css */
/* Styles in global css/app.css for JS class compatibility */
/* _content/PodlaskiKebab/Components/Sections/AboutSection.razor.rz.scp.css */
.about__grid[b-8a20lpde5w] {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about__image[b-8a20lpde5w] {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image img[b-8a20lpde5w] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about__image-badge[b-8a20lpde5w] {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__image-badge-number[b-8a20lpde5w] {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.about__image-badge-text[b-8a20lpde5w] {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
}

.about__text h3[b-8a20lpde5w] {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-lg);
    color: var(--color-secondary);
}

.about__text p[b-8a20lpde5w] {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about__text strong[b-8a20lpde5w] {
    color: var(--color-text);
    font-weight: 600;
}

.about__features[b-8a20lpde5w] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.about__feature[b-8a20lpde5w] {
    text-align: center;
}

.about__feature-icon[b-8a20lpde5w] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(200, 16, 46, 0.08);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.about__feature h4[b-8a20lpde5w] {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.about__feature p[b-8a20lpde5w] {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .about__grid[b-8a20lpde5w] {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about__image[b-8a20lpde5w] {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about__features[b-8a20lpde5w] {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about__feature[b-8a20lpde5w] {
        display: flex;
        align-items: center;
        gap: var(--space-md);
        text-align: left;
    }

    .about__feature-icon[b-8a20lpde5w] {
        flex-shrink: 0;
        margin-bottom: 0;
    }
}
/* _content/PodlaskiKebab/Components/Sections/ContactSection.razor.rz.scp.css */
.contact__grid[b-ul5fx289nt] {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact__card[b-ul5fx289nt] {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.contact__card:hover[b-ul5fx289nt] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact__card-icon[b-ul5fx289nt] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(200, 16, 46, 0.08);
    color: var(--color-primary);
    border-radius: var(--radius-md);
}

.contact__card h4[b-ul5fx289nt] {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.contact__card p[b-ul5fx289nt] {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.contact__phone[b-ul5fx289nt] {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.contact__phone:hover[b-ul5fx289nt] {
    text-decoration: underline;
}

.contact__hours[b-ul5fx289nt] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact__hours-row[b-ul5fx289nt] {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.contact__hours-row span:last-child[b-ul5fx289nt] {
    font-weight: 600;
    color: var(--color-text);
}

.contact__social[b-ul5fx289nt] {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.contact__social-link[b-ul5fx289nt] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition-base);
}

.contact__social-link:hover[b-ul5fx289nt] {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.contact__cta-btn[b-ul5fx289nt] {
    width: 100%;
}

.contact__map[b-ul5fx289nt] {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    min-height: 450px;
}

.contact__map iframe[b-ul5fx289nt] {
    border-radius: var(--radius-xl);
}

/* Responsive */
@media (max-width: 992px) {
    .contact__grid[b-ul5fx289nt] {
        grid-template-columns: 1fr;
    }

    .contact__map[b-ul5fx289nt] {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .contact__card[b-ul5fx289nt] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .contact__social[b-ul5fx289nt] {
        flex-direction: column;
    }
}
/* _content/PodlaskiKebab/Components/Sections/GallerySection.razor.rz.scp.css */
.gallery[b-o3eo0ll6py] {
    background-color: var(--color-bg-alt);
}

.gallery__grid[b-o3eo0ll6py] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.gallery__item[b-o3eo0ll6py] {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery__item--wide[b-o3eo0ll6py] {
    grid-column: span 2;
    aspect-ratio: 16/10;
}

.gallery__item img[b-o3eo0ll6py] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img[b-o3eo0ll6py] {
    transform: scale(1.08);
}

.gallery__overlay[b-o3eo0ll6py] {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__overlay[b-o3eo0ll6py] {
    opacity: 1;
}

.gallery__overlay span[b-o3eo0ll6py] {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Lightbox */
:global(.lightbox)[b-o3eo0ll6py] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

:global(.lightbox--open)[b-o3eo0ll6py] {
    opacity: 1;
    visibility: visible;
}

:global(.lightbox__img)[b-o3eo0ll6py] {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

:global(.lightbox__close)[b-o3eo0ll6py] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}

:global(.lightbox__close:hover)[b-o3eo0ll6py] {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery__grid[b-o3eo0ll6py] {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item--wide[b-o3eo0ll6py] {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .gallery__grid[b-o3eo0ll6py] {
        grid-template-columns: 1fr;
    }

    .gallery__item--wide[b-o3eo0ll6py] {
        grid-column: span 1;
    }

    .gallery__item[b-o3eo0ll6py] {
        aspect-ratio: 4/3;
    }
}
/* _content/PodlaskiKebab/Components/Sections/HeroSection.razor.rz.scp.css */
.hero[b-ki9g2ntgdc] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg[b-ki9g2ntgdc] {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1599487488170-d11ec9c172f0?w=1920&h=1080&fit=crop&q=80') center/cover no-repeat;
    transform: scale(1.05);
}

.hero__overlay[b-ki9g2ntgdc] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero__content[b-ki9g2ntgdc] {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-5xl) 0;
}

.hero__title[b-ki9g2ntgdc] {
    border: none;
    outline: none;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp-b-ki9g2ntgdc 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero__title-accent[b-ki9g2ntgdc] {
    color: var(--color-primary);
    display: block;
}

.hero__subtitle[b-ki9g2ntgdc] {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: var(--space-lg);
    animation: fadeInUp-b-ki9g2ntgdc 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero__features[b-ki9g2ntgdc] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp-b-ki9g2ntgdc 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero__dot[b-ki9g2ntgdc] {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
}

.hero__actions[b-ki9g2ntgdc] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp-b-ki9g2ntgdc 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero__scroll[b-ki9g2ntgdc] {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: bounce-b-ki9g2ntgdc 2s infinite;
}

/* Animations */
@keyframes fadeInUp-b-ki9g2ntgdc {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown-b-ki9g2ntgdc {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-b-ki9g2ntgdc {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero__actions[b-ki9g2ntgdc] {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn[b-ki9g2ntgdc] {
        width: 100%;
        max-width: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__title[b-ki9g2ntgdc],
    .hero__subtitle[b-ki9g2ntgdc],
    .hero__features[b-ki9g2ntgdc],
    .hero__actions[b-ki9g2ntgdc] {
        animation: none;
        opacity: 1;
    }

    .hero__scroll[b-ki9g2ntgdc] {
        animation: none;
    }
}
/* _content/PodlaskiKebab/Components/Sections/MenuSection.razor.rz.scp.css */
.menu-section__tabs[b-cuu1cyoh88] {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.menu-section__tab[b-cuu1cyoh88] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
}

.menu-section__tab:hover[b-cuu1cyoh88] {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.menu-section__tab--active[b-cuu1cyoh88] {
    color: white;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.menu-section__tab-icon[b-cuu1cyoh88] {
    font-size: 1.125rem;
}

.menu-section__grid[b-cuu1cyoh88] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-md);
}

.menu-section__note[b-cuu1cyoh88] {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-top: var(--space-xl);
    font-style: italic;
}

.menu-section__note strong[b-cuu1cyoh88] {
    color: rgba(255, 255, 255, 0.7);
}

.menu-section__cta[b-cuu1cyoh88] {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* Responsive */
@media (max-width: 576px) {
    .menu-section__tabs[b-cuu1cyoh88] {
        gap: var(--space-xs);
    }

    .menu-section__tab[b-cuu1cyoh88] {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .menu-section__grid[b-cuu1cyoh88] {
        grid-template-columns: 1fr;
    }
}
/* _content/PodlaskiKebab/Components/UI/MenuCard.razor.rz.scp.css */
.menu-card[b-m0nzzybscl] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.menu-card:hover[b-m0nzzybscl] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.menu-card--regional[b-m0nzzybscl] {
    border-color: var(--color-primary);
    background: rgba(200, 16, 46, 0.08);
}

.menu-card--regional:hover[b-m0nzzybscl] {
    background: rgba(200, 16, 46, 0.12);
    border-color: var(--color-primary-light);
}

.menu-card__badge[b-m0nzzybscl] {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 0 var(--radius-md) 0 var(--radius-md);
}

.menu-card__header[b-m0nzzybscl] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-xs);
}

.menu-card__name[b-m0nzzybscl] {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: white;
}

.menu-card__price[b-m0nzzybscl] {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap;
}

.menu-card__desc[b-m0nzzybscl] {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}
/* _content/PodlaskiKebab/Components/UI/SectionTitle.razor.rz.scp.css */
.section-title[b-g2tltn3a7e] {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title__label[b-g2tltn3a7e] {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    position: relative;
    padding: 0 var(--space-lg);
}

.section-title__label[b-g2tltn3a7e]::before,
.section-title__label[b-g2tltn3a7e]::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--color-primary);
}

.section-title__label[b-g2tltn3a7e]::before {
    right: 100%;
}

.section-title__label[b-g2tltn3a7e]::after {
    left: 100%;
}

.section-title__heading[b-g2tltn3a7e] {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.section-title__subtitle[b-g2tltn3a7e] {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Light variant (for dark backgrounds) */
.section-title--light .section-title__label[b-g2tltn3a7e] {
    color: var(--color-accent);
}

.section-title--light .section-title__label[b-g2tltn3a7e]::before,
.section-title--light .section-title__label[b-g2tltn3a7e]::after {
    background: var(--color-accent);
}

.section-title--light .section-title__heading[b-g2tltn3a7e] {
    color: white;
}

.section-title--light .section-title__subtitle[b-g2tltn3a7e] {
    color: var(--color-text-muted);
}
