:root {
    --bg: #080504;
    --bg2: #130b07;
    --panel: #17100c;
    --panel2: #25170f;
    --cream: #fff4e3;
    --text: #fff8ee;
    --muted: #d0b69b;
    --gold: #f6c35d;
    --amber: #ff9a36;
    --red: #e9401e;
    --line: rgba(255,255,255,.14);
    --shadow: 0 30px 90px rgba(0,0,0,.55);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at 18% 0, #2b140b 0, #0d0805 38%, #050302 100%);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font: inherit;
}

/* HEADER */

.site-header {
    min-height: 100vh;
}

/* MENU GÓRNE NA ZDJĘCIU */
.navbar {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px clamp(18px, 5vw, 70px);

    background: rgba(8,5,4,.45);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,.48);
/*  background: transparent;
    backdrop-filter: none;
    border-bottom: none;*/

}

.brand {
    font-weight: 950;
    font-size: 1.08rem;
    letter-spacing: .01em;
}

.brand span {
    display: inline-grid;
    place-items: center;

    width: 36px;
    height: 36px;
    margin-right: 9px;

    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--amber));
    color: #190804;
}

.nav-links {
    display: flex;
    gap: 24px;

    color: #f5d9bf;
    font-weight: 850;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: white;
    font-size: 28px;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;

    display: grid;
    align-items: end;

    padding: 150px clamp(18px, 6vw, 90px) 78px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.50)),
        url('/assets/img/panel_gorny_menu.webp') center / cover no-repeat;

    transform: scale(1.02);
    filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,3,2,.50),
            rgba(5,3,2,.25) 52%,
            rgba(5,3,2,.45)
        ),
        linear-gradient(0deg, #080504 0, transparent 42%);
}

.hero-content {
    position: relative;
    max-width: 960px;

    padding: 34px;
    border-radius: 34px;

    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(135deg, rgba(22,13,8,.75), rgba(22,13,8,.25));
    box-shadow: var(--shadow);
}

.label {
    margin: 0 0 12px;

    color: var(--gold);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 950;
}

.hero h1,
h2 {
    font-family: Impact, 'Arial Narrow', Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: .01em;
    line-height: .9;

    margin: 0 0 18px;
}

.hero h1 {
    font-size: clamp(3.1rem, 8vw, 7.3rem);
    max-width: 1000px;
}

.lead {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: #f4ddc5;
    max-width: 720px;
}

.hero-actions,
.contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    padding: 14px 24px;

    font-weight: 950;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: .18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--amber));
    color: #180805;
    border: 0;
}

.btn-light {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.22);
}

.full {
    width: 100%;
}

.hero-note {
    position: absolute;
    right: clamp(18px, 5vw, 70px);
    bottom: 76px;

    max-width: 285px;
    padding: 18px 22px;

    background: #fff0d6;
    color: #1c0d06;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.hero-note strong {
    display: block;
    font-weight: 950;
}

.hero-note span {
    display: block;
    color: #754a2c;
}

/* SEKCJE */

.section {
    padding: 86px clamp(18px, 5vw, 80px);
    max-width: 1460px;
    margin: auto;
}

.intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;

    border-bottom: 1px solid var(--line);
}

.intro h2,
.section-title h2,
.beer-copy h2,
.reservation h2,
.contact h2 {
    font-size: clamp(2.35rem, 5vw, 5rem);
}

.intro-text p,
.section-title p,
.beer-copy p,
.reservation-info p {
    color: var(--muted);
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;

    margin-top: 28px;
}

.stats div {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
}

.stats b {
    font-size: 2rem;
    display: block;
}

.stats span {
    font-weight: 900;
    color: #f9dfc7;
}

.section-title {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 42px;
}

/* SMAKI */

.taste-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.taste-card {
    min-height: 540px;
    position: relative;
    overflow: hidden;

    border-radius: 34px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.taste-card img {
    height: 540px;
    object-fit: cover;
    filter: saturate(1.06);
}

.taste-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        0deg,
        rgba(8,5,3,.93),
        rgba(8,5,3,.16) 58%,
        transparent
    );
}

.taste-card div {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px;
}

.taste-card span {
    display: inline-block;

    background: rgba(246,196,92,.14);
    color: var(--gold);
    border: 1px solid rgba(246,196,92,.28);
    border-radius: 999px;

    padding: 7px 12px;

    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
}

.taste-card h3 {
    font-family: Impact, 'Arial Narrow';
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: .95;
    text-transform: uppercase;

    margin: 14px 0 8px;
}

.taste-card p {
    color: #f3d8c0;
    max-width: 540px;
}

.taste-card a {
    display: inline-block;
    margin-top: 8px;

    color: var(--gold);
    font-weight: 950;
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* PIWO */

.beer-band {
    max-width: none;
    margin: 0;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 52px;
    align-items: center;

    padding: 88px clamp(18px, 5vw, 80px);

    background: linear-gradient(135deg, rgba(230,63,28,.14), rgba(246,196,92,.06));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.beer-copy {
    max-width: 620px;
    margin-left: auto;
}

.beer-band img {
    border-radius: 34px;
    height: 560px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

/* MENU */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.menu-shot {
    padding: 0;
    text-align: left;

    color: var(--text);
    background: linear-gradient(180deg, var(--panel2), #100a07);
    border: 1px solid var(--line);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);

    cursor: pointer;
    transition: .18s;
}

.menu-shot:hover {
    transform: translateY(-3px);
}

.menu-shot img {
    height: 520px;
    object-fit: cover;
    object-position: top;
}

.menu-shot span {
    display: block;

    padding: 18px 22px 20px;

    font-weight: 950;
    font-size: 1.16rem;
}

/* GALERIA */

.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
}

.gallery-grid a {
    border-radius: 30px;
    overflow: hidden;

    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--panel);
}

.gallery-grid img {
    height: 360px;
    object-fit: cover;
    transition: .4s;
}

.gallery-grid a:hover img {
    transform: scale(1.04);
}

.gallery-grid .wide {
    grid-row: span 2;
}

.gallery-grid .wide img {
    height: 738px;
}

/* REZERWACJA */

.reservation {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 44px;
    align-items: start;
}

.reservation-info {
    position: sticky;
    top: 110px;
}

.reservation-info ul {
    color: var(--muted);
    padding-left: 20px;
}

.form-card {
    background: var(--cream);
    color: #1b0c06;

    border-radius: 34px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.booking-form label {
    display: block;
    font-weight: 950;
    color: #2c160d;
}

.booking-form input,
.booking-form textarea {
    width: 100%;

    margin-top: 7px;
    margin-bottom: 15px;

    border: 1px solid #e5c3a4;
    background: #fffaf4;
    color: #1b0c06;
    border-radius: 16px;

    padding: 14px 15px;
    font: inherit;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 14px;
}

.checkbox {
    display: flex !important;
    gap: 10px;
    align-items: center;

    font-weight: 800 !important;
}

.checkbox input {
    width: auto;
    margin: 0;
}

.hidden-field {
    display: none;
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 16px;

    font-weight: 950;
}

.success {
    background: #e6f8dc;
    color: #274b19;
}

.error {
    background: #ffe3dd;
    color: #82220f;
}

/* KONTAKT */

.contact {
    max-width: 1460px;
    margin: auto;

    padding: 76px clamp(18px, 5vw, 80px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border-top: 1px solid var(--line);
}

footer {
    text-align: center;
    color: var(--muted);

    padding: 34px;
    border-top: 1px solid var(--line);
}

/* LIGHTBOX */

.lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;

    background: rgba(0,0,0,.9);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 28px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: min(96vw, 1300px);
    max-height: 90vh;

    width: auto;
    height: auto;

    border-radius: 16px;
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 22px;

    background: #fff;
    color: #120804;
    border: 0;
    border-radius: 999px;

    width: 44px;
    height: 44px;

    font-size: 30px;
    cursor: pointer;
}

/* ANIMACJE */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .6s ease;
}

.reveal.visible,
.reveal-now {
    opacity: 1;
    transform: none;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 1050px) {
    .hero-note {
        display: none;
    }

    .reservation-info {
        position: static;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .beer-band {
        grid-template-columns: 1fr;
    }

    .beer-copy {
        margin: 0;
    }

    .beer-band img {
        height: auto;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 12px;
        right: 12px;

        flex-direction: column;

        background: rgba(19,12,8,.96);
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 18px;
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        padding: 130px 18px 56px;
    }

    .hero-content {
        padding: 24px;
    }

    .intro,
    .taste-grid,
    .reservation {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 18px;
    }

    .beer-band {
        padding: 64px 18px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-shot img {
        height: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid .wide {
        grid-row: auto;
    }

    .gallery-grid img,
    .gallery-grid .wide img {
        height: auto;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        display: block;
        padding: 64px 18px;
    }

    .taste-card,
    .taste-card img {
        min-height: 460px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

