:root {
    --color-bg: #050506;
    --color-bg-alt: #111016;
    --color-primary: #6f122d;       /* ciemne bordo */
    --color-primary-light: #a61f46; /* jaśniejsze bordo */
    --color-accent: #c79a4b;        /* złoto */
    --color-text: #f5f1ea;
    --color-muted: #b3a8a0;

    --font-heading: "Playfair Display", serif;
    --font-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.55);
}

/* RESET / BASE
   -------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at top left, #281019, #050506 52%);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin-top: 0;
}

/* LAYOUT
   -------------------------------------------------- */

.container {
    width: min(1120px, 100% - 3rem);
    margin-inline: auto;
}

/* HEADER / NAV
   -------------------------------------------------- */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 6, 0.97),
        rgba(5, 5, 6, 0.92)
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header--scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.6rem;
    gap: 1rem;
}

.header__logo img {
    height: 56px;
    width: auto;
}

.nav {
    position: relative;
}

.nav__list {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__list a {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    transition: color 0.2s ease;
}

.nav__list a:hover {
    color: var(--color-text);
}

.header__social {
    display: flex;
    gap: 0.7rem;
}

.header__social a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.2s, transform 0.2s;
}

.header__social i {
    font-size: 0.8rem;
    color: var(--color-text);
}

.header__social a:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
}

/* MOBILE NAV TOGGLE */

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 4px;
}

/* HERO
   -------------------------------------------------- */

.hero {
    padding-block: 3.5rem 3.5rem;
    background: radial-gradient(circle at 0 0, #4d1a28, #050506);
}

.hero__content {
    display: grid;
}

.hero__content--single {
    display: flex;
    justify-content: center;
}

.hero__text {
    max-width: 720px;
}

.hero__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
}

.hero h1 {
    font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
    margin-top: 0.6rem;
    margin-bottom: 1rem;
}

.hero p {
    color: var(--color-muted);
    font-size: 0.98rem;
    max-width: 35rem;
}

.hero__actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

/* BUTTONS
   -------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

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

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* CONTENT BOXES (ramki)
   -------------------------------------------------- */

.content-box {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), rgba(5, 5, 6, 0.98));
    padding: 1.6rem 1.8rem;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.7);
}

.content-box--center {
    text-align: center;
}

.content-box--hero {
    background: radial-gradient(circle at top left, rgba(199, 154, 75, 0.12), rgba(5, 5, 6, 0.98));
}

/* TOP SLIDER – szeroki na górze
   -------------------------------------------------- */

.top-slider {
    background: radial-gradient(circle at top, #3b1521, #050506 65%);
    padding-block: 0.8rem 0;
}

.top-slider .slider--wide {
    width: min(1200px, 100% - 2.5rem);
    margin-inline: auto;
    height: 420px;
    border-radius: 28px;
}

/* OGÓLNE STYLE SLIDERA */

.slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #000;
    height: 320px;
}

.slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-out;
    transform: scale(1.03);
}

.slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__slide--active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slider__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.45);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s;
    z-index: 3;
}

.slider__control--prev {
    left: 10px;
}

.slider__control--next {
    right: 10px;
}

.slider__control:hover {
    background: rgba(0, 0, 0, 0.75);
}

.slider__dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.slider__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
}

.slider__dot--active {
    background: var(--color-accent);
}

/* SEKCJE
   -------------------------------------------------- */

.section {
    padding-block: 4rem;
    background: radial-gradient(circle at top left, #1a1016, #050506 60%);
}

.section--alt {
    background: radial-gradient(circle at top right, #121118, #050506 60%);
}

.section__intro {
    max-width: 42rem;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

.section__intro p {
    color: var(--color-muted);
}

.section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.section__grid--reverse {
    grid-auto-flow: dense;
}

.section__grid--reverse > :first-child {
    order: 2;
}

.section__grid--reverse > :last-child {
    order: 1;
}

.section__image img {
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    max-height: 360px;
}

.section__note {
    margin-top: 2rem;
    text-align: center;
    color: var(--color-muted);
    max-width: 40rem;
    margin-inline: auto;
}

/* LISTY */

.list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem;
}

.list li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.4rem;
    color: var(--color-muted);
}

.list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
}

/* DANIA – kafelki
   -------------------------------------------------- */

.dishes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    margin-top: 2rem;
}

.dish {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.dish img {
    height: 170px;
    object-fit: cover;
}

.dish__content {
    padding: 1rem 1.1rem 1.2rem;
}

.dish__content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.dish__content p {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* KARTY MENU (grafiki menu)
   -------------------------------------------------- */

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.menu-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), rgba(5, 5, 6, 0.98));
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.menu-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.menu-card figcaption {
    padding: 0.8rem 1rem 1rem;
    font-size: 0.9rem;
}

.menu-card a:hover img {
    transform: scale(1.04);
}

/* GODZINY / REZERWACJE
   -------------------------------------------------- */

.hours {
    margin-top: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 6, 0.9);
    padding: 1.2rem 1.4rem;
}

.hours div {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding-block: 0.25rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.hours div:last-child {
    border-bottom: none;
}

.hours span:first-child {
    text-transform: capitalize;
    color: var(--color-muted);
}

.reservation {
    background: radial-gradient(circle at top left, rgba(111, 18, 45, 0.85), rgba(5, 5, 6, 0.95));
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.reservation__phone a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

/* GALERIA
   -------------------------------------------------- */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery__item {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.gallery__item img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item:hover::after {
    opacity: 1;
}

/* OPINIE
   -------------------------------------------------- */

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.review-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), rgba(5, 5, 6, 0.98));
    padding: 1.2rem 1.3rem 1.4rem;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.7);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-card__author {
    font-weight: 600;
}

.review-card__stars {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.review-card__text {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.reviews__cta {
    text-align: center;
    margin-top: 2rem;
}

/* KONTAKT / SOCIAL
   -------------------------------------------------- */

.contact__social {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact__social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact__social i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* MAPA GOOGLE – większa
   -------------------------------------------------- */

.map-wrapper {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    min-width: 480px;
    min-height: 480px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* STOPKA
   -------------------------------------------------- */

.footer {
    background: #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-block: 1.5rem;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.footer__social {
    display: flex;
    gap: 0.7rem;
}

.footer__social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer__social i {
    font-size: 0.85rem;
    color: var(--color-text);
}

/* RESPONSYWNOŚĆ
   -------------------------------------------------- */

@media (max-width: 900px) {
    .header__inner {
        padding-block: 0.5rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: absolute;
        right: 0;
        top: 110%;
        flex-direction: column;
        background: rgba(5, 5, 6, 0.98);
        border-radius: 14px;
        padding: 0.75rem 1.25rem;
        min-width: 210px;
        box-shadow: var(--shadow-soft);
        transform-origin: top right;
        transform: scale(0.95);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav--open .nav__list {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .top-slider .slider--wide {
        height: 320px;
    }

    .section__grid,
    .section__grid--reverse {
        grid-template-columns: 1fr;
    }

    .section__image img {
        max-height: 260px;
    }
}

@media (max-width: 600px) {
    .header__logo img {
        height: 44px;
    }

    .hero {
        padding-block: 2.8rem 3rem;
    }

    .section {
        padding-block: 3rem;
    }

    .reservation,
    .content-box {
        padding: 1.4rem 1.4rem 1.7rem;
    }

    .top-slider .slider--wide {
        height: 260px;
        width: min(100% - 1.5rem, 500px);
    }

    .map-wrapper {
        min-height: 380px;
    }
}
