/*-----------------------------------*\
  #LANDING PAGE CSS - RESTAURANT  
  Szymon Winiarski - Proste Zamówienia 
  Version: 2.1 Complete Edition
\*-----------------------------------*/


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/


:root {
    /* COLORS - LIGHT THEME */
    --gold-crayola: hsl(195, 85%, 65%);
    /* ✅ Bez zmian - akcent */
    --quick-silver: hsla(0, 0%, 40%, 1);
    /* ✅ Ciemniejszy szary dla tekstu */
    --davys-grey: hsla(30, 3%, 25%, 1);
    /* ✅ Ciemniejszy dla nagłówków */

    /* ✅ TŁA - ODWRÓCONE (teraz jasne) */
    --smoky-black-1: hsla(0, 0%, 100%, 1);
    /* Było 5% → 100% (biały) */
    --smoky-black-2: hsla(0, 0%, 98%, 1);
    /* Było 5% → 98% (jasnoszary) */
    --smoky-black-3: hsla(0, 0%, 96%, 1);
    /* Było 7% → 96% */
    --eerie-black-1: hsla(0, 0%, 100%, 1);
    /* Było 9% → 100% (biały) */
    --eerie-black-2: hsla(0, 0%, 97%, 1);
    /* Było 11% → 97% */
    --eerie-black-3: hsla(0, 0%, 95%, 1);
    /* Było 8% → 95% */
    --eerie-black-4: hsla(0, 0%, 93%, 1);
    /* Było 13% → 93% */

    /* ✅ TEKSTY - ODWRÓCONE */
    --white: hsla(0, 0%, 10%, 1);
    /* Było 100% → 10% (ciemny tekst) */
    --white-alpha-20: hsla(0, 0%, 10%, 0.2);
    /* ✅ Odwrócone alpha */
    --white-alpha-10: hsla(0, 0%, 10%, 0.1);
    /* ✅ Odwrócone alpha */

    --black: hsla(0, 0%, 100%, 1);
    /* Było 0% → 100% (teraz jasny) */
    --black-alpha-80: hsla(0, 0%, 100%, 0.8);
    /* ✅ Odwrócone */
    --black-alpha-15: hsla(0, 0%, 100%, 0.15);
    /* ✅ Odwrócone */

    /* GRADIENT */
    --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%, transparent 66.66% 75%);
    --gradient-1: linear-gradient(to top, hsla(0, 0%, 0%, 0.9), hsla(0, 0%, 0%, 0.7), transparent);

    /* TYPOGRAPHY */
    --fontFamily-forum: 'Playfair Display', serif;
    --fontFamily-dm_sans: 'DM Sans', sans-serif;

    --fontSize-display-1: calc(1.3rem + 6.7vw);
    --fontSize-headline-1: calc(2rem + 2.5vw);
    --fontSize-headline-2: calc(1.3rem + 2.4vw);
    --fontSize-title-1: calc(1.6rem + 1.2vw);
    --fontSize-title-2: 2.2rem;
    --fontSize-title-3: 2.1rem;
    --fontSize-title-4: calc(1.6rem + 1.2vw);
    --fontSize-body-1: 2.4rem;
    --fontSize-body-2: 1.6rem;
    --fontSize-body-3: 1.8rem;
    --fontSize-body-4: 1.6rem;
    --fontSize-label-1: 1.4rem;
    --fontSize-label-2: 1.2rem;

    --weight-regular: 400;
    --weight-bold: 700;

    --lineHeight-1: 1em;
    --lineHeight-2: 1.2em;
    --lineHeight-3: 1.5em;
    --lineHeight-4: 1.6em;
    --lineHeight-5: 1.85em;
    --lineHeight-6: 1.4em;

    --letterSpacing-1: 0.15em;
    --letterSpacing-2: 0.4em;
    --letterSpacing-3: 0.2em;
    --letterSpacing-4: 0.3em;
    --letterSpacing-5: 3px;

    /* SPACING */
    --section-space: 70px;

    /* THEME-AWARE COLORS */
    --header-bg-active: hsla(0, 0%, 97%, 1);
    --glow-color: var(--gold-crayola);
    --gold-crayola-alpha: hsla(195, 85%, 65%, 0.06);
    --body-bg: #ffffff;
    --preload-bg: #ffffff;
    --navbar-bg: #ffffff;
    --spinner-border: #333;
    --rating-number-color: #000000;
    --banner-text-color: #ffffff;

    /* HERO TEXT — zawsze jasne na ciemnym overlay */
    --hero-text: #ffffff;
    --hero-text-muted: rgba(255, 255, 255, 0.85);

    /* SHADOW */
    --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);

    /* BORDER RADIUS */
    --radius-24: 24px;
    --radius-circle: 50%;

    /* TRANSITION */
    --transition-1: 250ms ease;
    --transition-2: 500ms ease;
    --transition-3: 1000ms ease;
}




/*-----------------------------------*\
  #RESET
\*-----------------------------------*/


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

li {
    list-style: none;
}

a,
img,
span,
input,
button,
ion-icon,
address {
    display: block;
}

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

img {
    height: auto;
}

input,
button {
    background: none;
    border: none;
    font: inherit;
}

input {
    width: 100%;
    outline: none;
}

button {
    cursor: pointer;
}

ion-icon {
    pointer-events: none;
}

address {
    font-style: normal;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--body-bg);
    color: var(--white);
    font-family: var(--fontFamily-dm_sans);
    font-size: var(--fontSize-body-4);
    font-weight: var(--weight-regular);
    line-height: var(--lineHeight-5);
    overflow: hidden;
    height: 300vh;
}

body.loaded {
    overflow: overlay;
}

body.nav-active {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--gold-crayola);
}




/*-----------------------------------*\
  #TYPOGRAPHY
\*-----------------------------------*/


.display-1,
.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
    color: var(--white);
    font-family: var(--fontFamily-forum);
    font-weight: var(--weight-regular);
    line-height: var(--lineHeight-2);
}

.display-1 {
    font-size: var(--fontSize-display-1);
    line-height: var(--lineHeight-1);
}

.headline-1 {
    font-size: var(--fontSize-headline-1);
}

.headline-2 {
    font-size: var(--fontSize-headline-2);
    line-height: var(--lineHeight-6);
}

.title-1 {
    font-size: var(--fontSize-title-1);
}

.title-2 {
    font-size: var(--fontSize-title-2);
}

.title-3 {
    font-size: var(--fontSize-title-3);
}

.title-4 {
    font-size: var(--fontSize-title-4);
}

.body-1 {
    font-size: var(--fontSize-body-1);
    line-height: var(--lineHeight-6);
}

.body-2 {
    font-size: var(--fontSize-body-2);
    line-height: var(--lineHeight-4);
}

.body-3 {
    font-size: var(--fontSize-body-3);
}

.body-4 {
    font-size: var(--fontSize-body-4);
}

.label-1 {
    font-size: var(--fontSize-label-1);
}

.label-2 {
    font-size: var(--fontSize-label-2);
}




/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/


.container {
    padding-inline: 16px;
}

.separator {
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold-crayola);
    transform: rotate(45deg);
}

.contact-label {
    font-weight: var(--weight-bold);
}

.contact-number {
    color: var(--gold-crayola);
    max-width: max-content;
    margin-inline: auto;
}

.hover-underline {
    position: relative;
    max-width: max-content;
}

.hover-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    border-block: 1px solid var(--gold-crayola);
    transform: scaleX(0.2);
    opacity: 0;
    transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
    transform: scaleX(1);
    opacity: 1;
}

.contact-number::after {
    bottom: -5px;
}

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

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

.section-subtitle {
    position: relative;
    color: var(--gold-crayola);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letterSpacing-2);
    margin-block-end: 12px;
}

.btn {
    position: relative;
    color: var(--gold-crayola);
    font-size: var(--fontSize-label-2);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letterSpacing-5);
    max-width: max-content;
    border: 2px solid var(--gold-crayola);
    padding: 12px 45px;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    border-radius: var(--radius-circle);
    background-color: var(--gold-crayola);
    transition: var(--transition-2);
    z-index: -1;
}

.btn .text {
    transition: var(--transition-1);
}

.btn .text-2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: max-content;
    color: var(--smoky-black-1);
}

.btn:is(:hover, :focus-visible)::before {
    bottom: -50%;
}

.btn:is(:hover, :focus-visible) .text-1 {
    transform: translateY(-40px);
}

.btn:is(:hover, :focus-visible) .text-2 {
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-secondary {
    background-color: var(--gold-crayola);
    color: var(--black);
}

.btn-secondary::before {
    background-color: var(--smoky-black-1);
}

.btn-secondary .text-2 {
    color: var(--white);
}

.has-before,
.has-after {
    position: relative;
    z-index: 1;
}

.has-before::before,
.has-after::after {
    content: "";
    position: absolute;
}

.section {
    position: relative;
    padding-block: var(--section-space);
    overflow: hidden;
    z-index: 1;
}

.bg-black-10 {
    background-color: var(--smoky-black-2);
}

.grid-list {
    display: grid;
    gap: 40px;
}

.hover\:shine {
    position: relative;
    overflow: hidden;
}

.hover\:shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
    transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
    transform: skewX(-0.08turn) translateX(275%);
    transition: var(--transition-3);
}

.hover\:shine {
    position: relative;
    overflow: hidden;
}

.hover\:shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
    transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
    transform: skewX(-0.08turn) translateX(275%);
    transition: var(--transition-3);
}

.img-holder {
    aspect-ratio: var(--width) / var(--height);
    overflow: hidden;
    background-color: var(--eerie-black-4);
}

.btn-text {
    color: var(--gold-crayola);
    padding-block-end: 4px;
    margin-inline: auto;
    text-transform: uppercase;
    letter-spacing: var(--letterSpacing-3);
    font-weight: var(--weight-bold);
    transition: var(--transition-1);
    display: inline-block;
    margin-top: 12px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: inherit;
    font-family: inherit;
}

.btn-text:is(:hover, :focus-visible) {
    color: var(--white);
    transform: translateX(5px);
}

.w-100 {
    width: 100%;
}

.has-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}




/*-----------------------------------*\
  #PRELOAD
\*-----------------------------------*/


.preload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--preload-bg);
    z-index: 10;
    display: grid;
    place-content: center;
    justify-items: center;
    transition: var(--transition-2);
}

.preload>* {
    transition: var(--transition-1);
}

.preload.loaded>* {
    opacity: 0;
}

.preload.loaded {
    transition-delay: 250ms;
    transform: translateY(100%);
}

.circle {
    width: 112px;
    height: 112px;
    border-radius: var(--radius-circle);
    border: 3px solid var(--spinner-border);
    border-block-start-color: var(--gold-crayola);
    margin-block-end: 45px;
    animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}

.preload .text {
    background-image: var(--loading-text-gradient);
    background-size: 500%;
    font-size: calc(2rem + 3vw);
    font-weight: var(--weight-bold);
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 16px;
    padding-inline-start: 16px;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 0.5px var(--eerie-black-3);
    animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
    0% {
        background-position: 100%;
    }

    100% {
        background-position: 0%;
    }
}




/*-----------------------------------*\
  #TOPBAR
\*-----------------------------------*/


.topbar {
    display: none;
}




/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/


.header .btn {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding-block: 15px;
    z-index: 4;
    border-block-end: 1px solid transparent;
    transition: var(--transition-1);
}

.header.active {
    background-color: var(--header-bg-active);
    /* ✅ Jasne tło */
    border-color: rgba(0, 0, 0, 0.1);
    /* ✅ Delikatna ramka */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    /* ✅ Cień */
}

.header.hide {
    transform: translateY(-100%);
    transition-delay: 250ms;
}

.header .container {
    padding-inline: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .logo img {
    max-height: 50px;
    width: auto;
}

.header .logo .headline-2 {
    color: var(--gold-crayola);
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   HEADER SPACER
═══════════════════════════════════════ */
.header-spacer {
    display: block;

}

.nav-open-btn {
    padding: 12px;
    padding-inline-end: 0;
}

.nav-open-btn .line {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    margin-block: 4px;
    transform-origin: left;
    animation: menuBtn 400ms ease-in-out alternate infinite;
}

@keyframes menuBtn {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0.5);
    }
}

.nav-open-btn .line-2 {
    animation-delay: 150ms;
}

.nav-open-btn .line-3 {
    animation-delay: 300ms;
}

.navbar {
    position: fixed;
    background-color: var(--navbar-bg);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    top: 0;
    left: -360px;
    bottom: 0;
    max-width: 360px;
    width: 100%;
    padding-inline: 30px;
    padding-block-end: 50px;
    overflow-y: auto;
    visibility: hidden;
    z-index: 2;
    transition: var(--transition-2);
}

.navbar.active {
    visibility: visible;
    transform: translateX(360px);
}

.navbar .close-btn {
    color: var(--white);
    border: 1px solid currentColor;
    padding: 4px;
    border-radius: var(--radius-circle);
    margin-inline-start: auto;
    margin-block: 30px 20px;
}

.navbar .close-btn ion-icon {
    --ionicon-stroke-width: 40px;
}

.navbar .close-btn:is(:hover, :focus-visible) {
    color: var(--gold-crayola);
}

.navbar .logo {
    max-width: max-content;
    margin-inline: auto;
    margin-block-end: 60px;
}

.navbar-list {
    border-block-end: 1px solid var(--white-alpha-20);
    margin-block-end: 100px;
}

.navbar-item {
    border-block-start: 1px solid var(--white-alpha-20);
}

.navbar-link {
    position: relative;
    font-size: var(--fontSize-label-2);
    text-transform: uppercase;
    padding-block: 10px;
    max-width: unset;
}

.navbar-link::after {
    display: none;
}

.navbar-link .span {
    transition: var(--transition-1);
}

/* ========== ACTIVE STATE (scroll detection) ========== */
.navbar-link.active .span {
    color: var(--gold-crayola);
    transform: translateX(20px);
}

.navbar-link.active .separator {
    opacity: 1;
}

/* ========== HOVER & FOCUS STATES ========== */
.navbar-link:is(:hover, :focus-visible) .span {
    color: var(--gold-crayola);
    transform: translateX(20px);
}

.navbar-link:is(:hover, :focus-visible) .separator {
    opacity: 1;
}

/* ========== SEPARATOR ========== */
.navbar-link .separator {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0;
    transition: var(--transition-1);
}

.navbar-title {
    margin-block-end: 15px;
}

.navbar-text {
    margin-block: 10px;
}

.navbar .body-4 {
    color: var(--quick-silver);
}

.sidebar-link {
    transition: var(--transition-1);
}

.sidebar-link:is(:hover, :focus-visible) {
    color: var(--gold-crayola);
}

.navbar .text-center .separator {
    margin-block: 30px;
    margin-inline: auto;
}

.navbar .contact-label {
    margin-block-end: 10px;
}

.navbar::-webkit-scrollbar-thumb {
    background-color: var(--white-alpha-10);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--black-alpha-80);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-2);
    z-index: 1;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}



/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero .slider-btn {
    display: none;
}

.hero {
    position: relative;
    padding-block: 120px;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero .slider-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    padding-block-start: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-3);
    z-index: 1;
}

.hero .slider-item.active {
    opacity: 1;
    visibility: visible;
}

.hero .slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.15);
    pointer-events: none;
    user-select: none;
    z-index: -1;
}

.hero .slider-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero .slider-item.active .slider-bg {
    animation: smoothScale 7s linear forwards;
}

@keyframes smoothScale {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero .section-subtitle::after {
    margin-block: 14px 20px;
}

.hero-text {
    margin-block: 10px 40px;
}

/* FIX: Hero text ALWAYS white on dark overlay (slider, fullscreen, video, parallax) */
.hero .display-1,
.hero .headline-1,
.hero .hero-title {
    color: var(--hero-text);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero .hero-text,
.hero .body-2 {
    color: var(--hero-text-muted);
}

.hero .section-subtitle {
    color: var(--gold-crayola);
}

/* Hero fullscreen, video, parallax — same override */
.hero-fullscreen-content .hero-title,
.hero-video-content .hero-title,
.hero-parallax-content .hero-title {
    color: var(--hero-text);
}

.hero-fullscreen-content .hero-text,
.hero-video-content .hero-text,
.hero-parallax-content .hero-text {
    color: var(--hero-text-muted);
}

/* Hero Split — uses THEME colors (text on page bg, not on photo) */
.hero-split-content .hero-title {
    color: var(--white);
    text-shadow: none;
}

.hero-split-content .hero-text {
    color: var(--quick-silver);
}

.hero .btn {
    margin-inline: auto;
}

/* ===================================
   HERO BTN - KWADRAT Z OBRACAJĄCĄ SIĘ RAMKĄ
   =================================== */
.hero-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
    background-color: var(--gold-crayola);
    width: 90px;
    height: 90px;
    padding: 12px;
    transform: scale(0.6);

    /* ✅ FLEXBOX - WYCENTROWANIE */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    transition: var(--transition-2);
}

.hero-btn:hover {
    background-color: var(--white);
    transform: scale(0.65);
}

/* ✅ IKONA - WYCENTROWANA */
.hero-btn ion-icon {
    font-size: 36px !important;
    color: var(--smoky-black-1);
    display: block;
    margin: 0;
    transition: var(--transition-1);
}

.hero-btn:hover ion-icon {
    color: var(--gold-crayola);
}

/* ✅ TEKST - WYCENTROWANY, DWA RZĘDY */
.hero-btn .span {
    display: block;
    color: var(--smoky-black-1);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: center;
    font-size: 12px;
    font-family: var(--fontFamily-forum);
    transition: var(--transition-1);
}

.hero-btn:hover .span {
    color: var(--gold-crayola);
}

/* ✅ OBRACAJĄCA SIĘ RAMKA (KWADRAT) */
.hero-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold-crayola);
    animation: rotate360 15s linear infinite;
}

.slider-reveal {
    transform: translateY(30px);
    opacity: 0;
}

.hero .slider-item.active .slider-reveal {
    animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero .slider-item.active .section-subtitle {
    animation-delay: 500ms;
}

.hero .slider-item.active .hero-title {
    animation-delay: 1000ms;
}

.hero .slider-item.active .hero-text {
    animation-delay: 1.5s;
}

.hero .slider-item.active .btn {
    animation-delay: 2s;
}


/*-----------------------------------*\
  #SPECIAL DISH
\*-----------------------------------*/


.special-dish-content {
    padding-block: 70px;
}

.special-dish .section-text {
    margin-block: 16px 40px;
}

.special-dish-content .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-block-end: 40px;
}

.special-dish-content .span {
    color: var(--gold-crayola);
}

.special-dish .btn {
    margin-inline: auto;
}



/*-----------------------------------*\
  #MENU
\*-----------------------------------*/

.menu {
    background-color: var(--eerie-black-2);
    padding-block: var(--section-space);
}

.menu .section-title {
    margin-block-end: 40px;
}

.menu .grid-list {
    margin-block-end: 50px;
}

.menu-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.hover\:card .card-banner {
    background-color: var(--gold-crayola);
}

.hover\:card .card-banner .img-cover {
    transition: var(--transition-2);
}

.hover\:card:is(:hover, :focus-within) .card-banner .img-cover {
    opacity: 0.7;
    transform: scale(1.05);
}

.menu-card .card-banner {
    flex-shrink: 0;
    border-radius: var(--radius-24);
}

.menu-card .card-title {
    transition: var(--transition-1);
}

.menu-card .card-title:is(:hover, :focus-visible) {
    color: var(--gold-crayola);
}

.menu-card .badge {
    background-color: var(--gold-crayola);
    color: var(--eerie-black-1);
    font-family: var(--fontFamily-forum);
    max-width: max-content;
    line-height: var(--lineHeight-6);
    text-transform: uppercase;
    padding-inline: 10px;
    margin-block-start: 10px;
}

.menu-card .span {
    color: var(--gold-crayola);
    margin-block: 10px;
}

.menu-card .card-text {
    color: var(--quick-silver);
    line-height: var(--lineHeight-4);
}

.menu-text .span {
    display: inline-block;
    color: var(--gold-crayola);
}

.menu .btn {
    margin-inline: auto;
    margin-block-start: 26px;
}

.title-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-block-end: 10px;
}

/* ═══════════════════════════════════════════════
   🔥 MENU SECTION - Poprawki dla połączonej sekcji
   ═══════════════════════════════════════════════ */

.menu .section-text {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    color: var(--quick-silver);
    line-height: 1.8;
}

.menu .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.menu .wrapper::before,
.menu .wrapper::after {
    content: '';
    width: 100px;
    height: 1px;
    background: var(--gold-crayola);
}

.menu .menu-plugin-container {
    margin: 50px 0;
}

.menu .menu-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--quick-silver);
}

.menu .menu-text .span {
    color: var(--gold-crayola);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {

    .menu .wrapper::before,
    .menu .wrapper::after {
        width: 50px;
    }

    .menu .section-text {
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════
   MENU BANNER - zdjęcia z efektem hover
═══════════════════════════════════════ */
.menu-banner {
    position: relative;
    overflow: hidden;
    margin-block: 10px;
    line-height: 0;
    transition: box-shadow 0.4s ease;
}

.menu-banner:hover {
    box-shadow: 0 0 10px 6px var(--glow-color);
}

.menu-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.menu-banner:hover img {
    transform: scale(1.005);
}

@media (max-width: 575px) {
    .menu-banner img {
        height: 200px;
        object-fit: cover;
        object-position: center 120%;
    }
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .section-text {
    margin-block: 15px 30px;
}

.about .btn {
    margin-inline: auto;
    margin-block-start: 26px;
}

.about .container {
    display: grid;
    gap: 80px;
}

.about-banner {
    position: relative;
    border-radius: var(--radius-24);
    border: 2px solid var(--white-alpha-10);
    /* ✅ DODANE - ramka */
    overflow: hidden;
    /* ✅ DODANE - ukrywa overflow przy scale */
    transition: var(--transition-2);
    /* ✅ DODANE - płynna animacja */
}

/* ✅ NOWE - Rozświetlenie ramki przy hover */
.about-banner:hover {
    border-color: var(--gold-crayola);
    box-shadow: 0 12px 40px var(--glow-color);
}

.about-banner>.w-100 {
    border-radius: var(--radius-24);
    transition: var(--transition-2);
    /* ✅ DODANE - płynna animacja */
}

/* ✅ NOWE - Powiększenie zdjęcia przy hover */
.about-banner:hover>.w-100 {
    transform: scale(1.01);
}

/*-----------------------------------*\
  #FEATURES (NASZE ATUTY) ✅
\*-----------------------------------*/

.features {
    background-color: var(--eerie-black-2);
    padding-block: var(--section-space);
}

.features .section-subtitle {
    margin-block-end: 12px;
}

.features .section-title {
    margin-block-end: 40px;
    text-align: center;
}

.features .grid-list {
    gap: 30px;
}

/* Feature Item - zapewnia równą wysokość */
.feature-item {
    display: flex;
    height: 100%;
}

/* Feature Card Styling - FLEX + HEIGHT 100% */
.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 320px;
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--radius-24);
    transition: var(--transition-2);
}

/* Alternating backgrounds - szachownica */
.feature-item:nth-child(2n+1) .feature-card {
    background-color: var(--eerie-black-3);
}

.feature-item:nth-child(2n) .feature-card {
    background-color: var(--smoky-black-3);
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Icon Container with Animation */
.feature-card .card-icon {
    max-width: max-content;
    margin-inline: auto;
    margin-block-end: 20px;
    flex-shrink: 0;
    transition: var(--transition-2);
}

.feature-card .card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
    /* ☝️ BIAŁY kolor (100% invert) */
    transition: var(--transition-2);
}

/* Flip + Rotate Animation on Hover */
.feature-card:hover .card-icon {
    transform: scale(-1) rotate(180deg);
}

.feature-card:hover .card-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
    /* ☝️ BIAŁY kolor (100% invert) - bez zmiany przy hover */
}

/* Title Styling */
.feature-card .card-title {
    color: var(--gold-crayola);
    margin-block-end: 15px;
    font-size: var(--fontSize-title-3);
    font-family: var(--fontFamily-forum);
    transition: var(--transition-1);
    flex-shrink: 0;
}

.feature-card:hover .card-title {
    color: var(--white);
}

/* Text Styling */
.feature-card .card-text {
    color: var(--quick-silver);
    line-height: var(--lineHeight-6);
    font-size: var(--fontSize-body-4);
    flex-grow: 1;
}


/* RESPONSIVE - Mobile First */
@media (min-width: 768px) {
    .features .grid-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .feature-card {
        padding: 45px 35px;
        min-height: 340px;
    }
}

@media (min-width: 992px) {
    .features .grid-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .feature-card {
        min-height: 360px;
    }
}

@media (min-width: 1200px) {
    .features .grid-list {
        gap: 50px;
    }

    .feature-card {
        padding: 50px 40px;
        min-height: 380px;
    }

    .feature-card .card-icon img {
        width: 100px;
        height: 100px;
    }
}

/* ✅ GOOGLE RATING BOX - KOMPAKTOWY */
.google-rating-box {
    max-width: 420px;
    margin: 0 auto;
    padding: 35px 30px;
    background: var(--smoky-black-3);
    /* ✅ Ciemniejsze tło */
    border: 1px solid var(--white-alpha-10);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-2);
}

.google-rating-box:hover {
    border-color: var(--gold-crayola);
    box-shadow: 0 12px 40px var(--glow-color);
}

/* ✅ Logo Google - Mniejsze */
.google-logo {
    margin-bottom: 20px;
}

.google-logo svg {
    max-width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* ✅ Rating Display - Kompaktowy */
.rating-display {
    margin-bottom: 28px;
}

/* ✅ Rating Number - Google Yellow (#FBBC04) */
.rating-number {
    font-size: 40px;
    font-weight: var(--weight-bold);
    color: var(--rating-number-color);
    font-family: var(--fontFamily-forum);
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

/* ✅ Stars - Google Yellow */
.rating-display .stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.rating-display .stars ion-icon {
    font-size: 28px;
    color: #FBBC04;
    /* ✅ Prawdziwy kolor Google */
}

/* ✅ Review Count - Mniejszy */
.review-count {
    font-size: 15px;
    color: var(--quick-silver);
    font-weight: var(--weight-regular);
}

/* ✅ Button - WYCENTROWANY, Border Style */
.google-rating-box .btn {
    margin-top: 20px;
    margin-inline: auto;
    /* ✅ Wycentrowanie */
    padding: 12px 32px;
    font-size: 13px;
    letter-spacing: 1.5px;
    border: 2px solid var(--gold-crayola);
    background: transparent;
    color: var(--gold-crayola);
    transition: var(--transition-2);
}

.google-rating-box .btn:hover {
    background: var(--gold-crayola);
    color: var(--smoky-black-1);
    transform: translateY(-2px);
}

.google-rating-box .btn .text {
    color: inherit;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (min-width: 768px) {
    .reviews {
        padding-block: 35px 70px;
        /* ✅ Zmniejszony górny padding */
    }

    .google-rating-box {
        padding: 40px 35px;
        max-width: 460px;
    }

    .rating-number {
        font-size: 52px;
    }

    .rating-display .stars ion-icon {
        font-size: 32px;
    }
}

@media (min-width: 992px) {
    .reviews {
        padding-block: 40px 80px;
        /* ✅ Zmniejszony górny padding */
    }

    .google-rating-box {
        max-width: 500px;
    }

    .rating-number {
        font-size: 58px;
    }
}

/*-----------------------------------*\
  #RESERVATION - BALANCED COLUMNS ✅
\*-----------------------------------*/

.reservation {
    padding-block: var(--section-space);
    background-color: var(--eerie-black-1);
}

/* Container główny - JEDNA WSPÓLNA RAMKA - PROPORCJE 60/40 */
.reservation .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin-inline: auto;
    padding: 45px 35px;
    background: var(--smoky-black-2);
    border: 2px solid var(--gold-crayola);
    border-radius: var(--radius-24);
}

@media (min-width: 992px) {
    .reservation .container {
        grid-template-columns: 1.7fr 1fr;
        gap: 50px;
        padding: 50px 40px;
    }
}

@media (min-width: 1200px) {
    .reservation .container {
        grid-template-columns: 1.8fr 1fr;
        gap: 60px;
        padding: 55px 45px;
    }
}

@media (max-width: 767px) {
    .reservation .container {
        padding: 35px 25px;
        gap: 35px;
    }
}

@media (max-width: 574px) {
    .reservation .container {
        padding: 28px 18px;
        gap: 30px;
    }
}


/* ========== LEWA - ONLINE RESERVATION ========== */

.reservation-left {
    background: transparent;
    padding: 0;
    border: none;
}

.reservation-left .section-title {
    color: var(--white);
    font-family: var(--fontFamily-forum);
    font-size: clamp(2.6rem, 3.8vw, 3.4rem);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
}

.reservation-left .section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
    font-size: var(--fontSize-body-4);
    font-family: var(--fontFamily-dm_sans);
    font-weight: var(--weight-regular);
    line-height: 1.6;
}

.reservation-left .phone-number {
    color: var(--gold-crayola);
    font-weight: var(--weight-bold);
}


/* FORMULARZ - ZWARTSZY */
.reservation-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 575px) {
    .reservation-form {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media (min-width: 768px) {
    .reservation-form {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .input-wrapper:nth-child(1),
    .input-wrapper:nth-child(2) {
        grid-column: span 1;
    }

    /* Row 1: Name */
    .input-wrapper:nth-child(1) {
        grid-column: 1 / 2;
    }

    /* Row 1: Phone */
    .input-wrapper:nth-child(2) {
        grid-column: 2 / 4;
    }

    /* Message full width */
    .input-wrapper.full-width {
        grid-column: 1 / -1;
    }

    /* Button full width */
    .reservation-form .btn {
        grid-column: 1 / -1;
    }
}

.input-wrapper {
    position: relative;
}

.input-field,
.input-field select {
    background: var(--eerie-black-3);
    color: var(--white);
    font-size: var(--fontSize-body-4);
    font-family: var(--fontFamily-dm_sans);
    padding: 12px 16px;
    border: 1px solid var(--white-alpha-10);
    border-radius: 8px;
    transition: var(--transition-1);
    width: 100%;
    outline: none;
}

.input-field:focus {
    border-color: var(--gold-crayola);
    background: var(--eerie-black-4);
}

.input-field::placeholder {
    color: var(--quick-silver);
}

/* Icon w select/input */
.input-wrapper.has-icon ion-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 18px;
    pointer-events: none;
}

.input-wrapper.has-icon .input-field {
    padding-left: 42px;
}

/* Textarea */
textarea.input-field {
    min-height: 120px;
    resize: vertical;
}

/* Przycisk - WĘŻSZY */
.reservation-form .btn {
    background-color: var(--gold-crayola);
    color: var(--black);
    padding: 15px 40px;
    max-width: 350px;
    margin-inline: auto;
}

.reservation-form .btn::before {
    background-color: var(--smoky-black-1);
}

.reservation-form .btn .text-2 {
    color: var(--white);
}


/* ========== PRAWA - CONTACT US ========== */

.reservation-right {
    background: transparent;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reservation-right .section-title {
    color: var(--white);
    font-family: var(--fontFamily-forum);
    font-size: clamp(2.2rem, 3.2vw, 2.8rem) !important;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    text-align: center;
}

.contact-item-title {
    color: var(--white);
    font-size: var(--fontSize-label-1);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letterSpacing-3);
    margin-bottom: 8px;
    font-family: var(--fontFamily-dm_sans);
}

.contact-item-value {
    color: var(--gold-crayola);
    font-size: clamp(1.8rem, 2.8vw, 2.2rem);
    font-weight: var(--weight-bold);
    margin-bottom: 12px;
    display: block;
    line-height: 1.3;
    font-family: var(--fontFamily-forum);
    transition: var(--transition-1);
}

.contact-item-value:hover {
    color: var(--white);
}

.contact-item-text {
    color: var(--quick-silver);
    font-size: var(--fontSize-body-4);
    line-height: 1.7;
    font-family: var(--fontFamily-dm_sans);
}

.contact-item-text strong {
    color: var(--white);
    font-weight: var(--weight-bold);
}

/* Separator z diamentem */
.contact-item-separator {
    width: 70px;
    height: 1px;
    background: var(--gold-crayola);
    margin: 15px auto 0;
    position: relative;
}

.contact-item-separator::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-crayola);
    font-size: 9px;
    background: var(--smoky-black-2);
    padding: 0 10px;
    line-height: 1;
}


/* MOBILE - dodatkowe dostosowania */
@media (max-width: 574px) {
    .reservation-form {
        gap: 16px;
    }

    .contact-info {
        gap: 24px;
    }

    .reservation-left .section-title,
    .reservation-right .section-title {
        font-size: 2.2rem !important;
    }

    .reservation-form .btn {
        max-width: 100%;
    }
}

/*-----------------------------------*\
  #LOCATION SECTION - JAK DOJECHAĆ?
\*-----------------------------------*/

.location {
    background-color: var(--eerie-black-2);
    padding-block: var(--section-space);
    text-align: center;
}

.location .section-subtitle {
    margin-block-end: 12px;
}

.location .section-title {
    margin-block-end: 20px;
}

.location .section-text {
    max-width: 600px;
    margin-inline: auto;
    margin-block-end: 40px;
    color: var(--quick-silver);
    line-height: var(--lineHeight-5);
}

/* ═══════════════════════════════════════
   LOCATION BANNER - zdjęcie budynku
═══════════════════════════════════════ */
.location-banner {
    width: 100%;
    max-width: 850px;
    margin-inline: auto;
    margin-block-end: 40px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    transition: box-shadow 0.4s ease;
    /* ← DODAJ */
}

.location-banner:hover {
    /* ← DODAJ CAŁY BLOK */
    box-shadow: 0 12px 40px var(--glow-color);
}

.location-banner:hover .location-banner-img {
    transform: scale(1.05);
    /* zostaw tylko to */
}

.location-banner-inner {
    position: relative;
    width: 100%;
    line-height: 0;
}

.location-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 1;
    filter: brightness(0.88);
    transform: scale(1);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.location-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.location-banner-text {
    color: var(--banner-text-color);
    font-family: var(--fontFamily-dm_sans, sans-serif);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1;
}


/* ═══════════════════════════════════════
   ADRES - MINIMALISTYCZNY BOX
═══════════════════════════════════════ */
.location-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-block-end: 50px;
    padding: 25px 30px;
    background: var(--smoky-black-3);
    border-radius: 12px;
    max-width: 550px;
    margin-inline: auto;
    transition: var(--transition-2);
    border: 1px solid var(--white-alpha-10);
}

.location-info:hover {
    background: var(--eerie-black-3);
    border-color: var(--gold-crayola);
    box-shadow: 0 8px 25px var(--glow-color);
}

.location-info ion-icon {
    color: var(--gold-crayola);
    font-size: 2.8rem;
    flex-shrink: 0;
}

.location-info .contact-info {
    text-align: left;
}

.location-info .contact-link {
    color: var(--white);
    font-size: var(--fontSize-body-3);
    font-weight: var(--weight-bold);
    transition: var(--transition-1);
    display: inline-block;
}

.location-info .contact-link:hover {
    color: var(--gold-crayola);
}

@media (max-width: 600px) {
    .location-banner {
        border-radius: 8px;
    }

    .location-banner-img {
        aspect-ratio: 2 / 1;
    }

    .location-banner-text {
        font-size: 1.2rem;
        letter-spacing: 0.12em;
    }

    .location-info {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 10px;
    }

    .location-info .contact-info {
        text-align: center;
    }
}

/* ═══════════════════════════════════════
   MAPA - DARK MINIMAL (JAK BURGER CAMP)
═══════════════════════════════════════ */
.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 450px;
    /* ✅ Zmniejszone z 600px */
    margin-inline: auto;
    margin-block-start: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--white-alpha-10);
}

/* ✅ SZARY FILTER - JAK BURGER CAMP */
.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(80%) contrast(1) brightness(0.85);
    transition: filter 0.4s ease;
}

.map-container:hover iframe {
    filter: grayscale(10%) contrast(1) brightness(1);
}

/* ═══════════════════════════════════════
   PRZYCISK NAWIGUJ - MINIMALISTYCZNY
═══════════════════════════════════════ */
.map-nav-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

    /* Style przycisku */
    display: flex;
    align-items: center;
    gap: 10px;

    background: var(--gold-crayola);
    color: var(--smoky-black-1);

    padding: 14px 32px;
    border-radius: 8px;

    font-size: var(--fontSize-label-1);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 1.5px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);

    transition: all 0.3s ease;
    z-index: 10;

    /* Początkowo niewidoczny */
    opacity: 0;
    pointer-events: none;
}

/* Pokaż na hover nad mapą */
.map-container:hover .map-nav-button {
    opacity: 1;
    pointer-events: all;
    bottom: 40px;
}

.map-nav-button:hover {
    background: var(--gold-crayola);
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 10px 30px var(--glow-color);
}

.map-nav-button ion-icon {
    font-size: 2rem;
    color: var(--smoky-black-1);
}

.map-nav-button .nav-text {
    font-family: var(--fontFamily-forum);
    font-size: 1.6rem;
}

/* ═══════════════════════════════════════
   RESPONSYWNOŚĆ
═══════════════════════════════════════ */

@media (max-width: 768px) {
    .map-container {
        height: 350px;
        /* ✅ Jeszcze mniejsze na mobile */
        border-radius: 12px;
        margin-block-start: 30px;
    }

    .location-info {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 10px;
    }

    .location-info .contact-info {
        text-align: center;
    }

    .location-info ion-icon {
        font-size: 2.4rem;
    }

    .location-info .contact-link {
        font-size: var(--fontSize-body-4);
    }

    /* Na mobile - przycisk zawsze widoczny */
    .map-nav-button {
        opacity: 1;
        pointer-events: all;
        bottom: 20px;
        padding: 12px 24px;
    }

    .map-nav-button .nav-text {
        font-size: 1.3rem;
    }

    .map-nav-button ion-icon {
        font-size: 1.8rem;
    }
}

@media (min-width: 992px) {
    .map-container {
        height: 480px;
    }
}

@media (min-width: 1200px) {
    .map-container {
        height: 500px;
        /* ✅ Max 500px zamiast 700px */
    }
}

/*-----------------------------------*\
  #FOOTER ✅
\*-----------------------------------*/

.footer {
    background-color: var(--eerie-black-1);
    padding-block: 60px 40px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: -1;
}

.footer-top {
    margin-block-end: 50px;
    display: grid;
    gap: 40px;
}

/* ========== FOOTER BRAND (ŚRODKOWA KOLUMNA) ========== */

.footer-brand {
    position: relative;
    padding: 50px 30px;
    background-color: var(--smoky-black-1);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMCAwaDIwdjIwSDB6IiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTAgMGgxdjFIMHptMTAgMGgxdjFoLTF6bTAgMTBoMXYxaC0xem0tMTAgMGgxdjFIMHoiIGZpbGw9IiMyMjIiIG9wYWNpdHk9IjAuMyIvPgo8L3N2Zz4=');
    background-position: center top;
    background-repeat: repeat;
    border-radius: var(--radius-24);
}

/* Dekoracyjne ramki po bokach */
.footer-brand::before,
.footer-brand::after {
    content: "";
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--gold-crayola) 20%,
            var(--gold-crayola) 80%,
            transparent 100%);
}

.footer-brand::before {
    left: 0;
}

.footer-brand::after {
    right: 0;
}

.footer-brand .logo {
    max-width: max-content;
    margin-inline: auto;
    margin-block-end: 30px;
}

.footer-brand .logo .headline-2 {
    color: var(--gold-crayola);
    font-size: clamp(2.4rem, 3vw, 3.2rem);
}

.footer-brand :is(.body-4, .label-1) {
    color: var(--quick-silver);
    line-height: var(--lineHeight-3);
}

.footer-brand .contact-link {
    margin-block: 8px;
    transition: var(--transition-1);
    display: inline-block;
}

.footer-brand .contact-link:is(:hover, :focus-visible) {
    color: var(--gold-crayola);
}

.footer-brand .wrapper {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-block: 30px 20px;
}

.footer-brand .separator {
    animation: rotate360 15s linear infinite;
}

/* Newsletter Title */
.footer-brand .title-1 {
    margin-block-end: 10px;
    color: var(--white);
    font-size: var(--fontSize-title-3);
    text-align: center;
}

.footer-brand .label-1 {
    margin-block-end: 20px;
    text-align: center;
}

.footer-brand .label-1 .span {
    display: inline;
    color: var(--white);
}

/* Newsletter Form */
.footer-brand .input-wrapper {
    position: relative;
    max-width: 400px;
    margin-inline: auto;
}

.footer-brand .icon-wrapper {
    position: relative;
    margin-block-end: 20px;
}

.footer-brand .icon-wrapper .input-field {
    background-color: var(--eerie-black-3);
    color: var(--white);
    padding: 12px 20px 12px 45px;
    border: 1px solid var(--white-alpha-10);
    border-radius: 8px;
    font-size: var(--fontSize-body-4);
    width: 100%;
    transition: var(--transition-1);
}

.footer-brand .icon-wrapper .input-field:focus {
    border-color: var(--gold-crayola);
}

.footer-brand .icon-wrapper ion-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-crayola);
    font-size: 18px;
    pointer-events: none;
}

.footer-brand .btn {
    min-width: 100%;
    justify-content: center;
}


/* ========== FOOTER LIST (BOCZNE KOLUMNY) ========== */

.footer-list {
    display: grid;
    gap: 16px;
}

.footer-link {
    color: var(--quick-silver);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letterSpacing-4);
    margin-inline: auto;
    transition: var(--transition-1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fontSize-label-1);
}

.footer-link ion-icon {
    color: var(--gold-crayola);
    font-size: 16px;
    transition: var(--transition-1);
    display: none;
}

.footer-link:is(:hover, :focus-visible) {
    color: var(--gold-crayola);
}

.footer-link:is(:hover, :focus-visible) ion-icon {
    transform: translateX(5px);
}


/* ========== FOOTER BOTTOM ========== */

.footer-bottom {
    padding-block-start: 30px;
    border-block-start: 1px solid var(--white-alpha-10);
}

.copyright {
    color: var(--quick-silver);
    line-height: var(--lineHeight-3);
    font-size: var(--fontSize-label-1);
}

.copyright .link {
    display: inline;
    color: var(--gold-crayola);
    text-decoration: underline;
    transition: var(--transition-1);
}

.copyright .link:is(:hover, :focus-visible) {
    color: var(--white);
}


/* ========== RESPONSIVE FOOTER ========== */

/* Tablet (575px+) */
@media (min-width: 575px) {
    .footer-brand {
        padding: 60px 40px;
    }

    .footer-list {
        gap: 20px;
    }
}

/* Desktop (992px+) */
@media (min-width: 992px) {
    .footer .grid-list {
        grid-template-columns: 0.45fr 1fr 0.45fr;
        align-items: center;
    }

    .footer-brand {
        grid-column: auto;
        order: 1;
        padding-block: 80px;
    }

    .footer-list:last-child {
        order: 2;
    }

    .footer-link {
        margin-inline: 0;
        justify-content: flex-start;
    }

    .footer-list:last-child .footer-link {
        justify-content: flex-end;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .footer-brand {
        max-width: 460px;
        margin-inline: auto;
    }
}




/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/


.back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--gold-crayola);
    color: var(--smoky-black-1);
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-1);
    transition: var(--transition-1);
    opacity: 0;
    visibility: hidden;
    z-index: 4;
}

.back-top-btn:is(:hover, :focus-visible) {
    background-color: var(--white);
    color: var(--gold-crayola);
}

.back-top-btn.active {
    opacity: 1;
    visibility: visible;
}




/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/


@media (min-width: 575px) {
    :root {
        --fontSize-body-2: 2rem;
    }

    .topbar {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding-block: 10px;
        border-block-end: 1px solid var(--white-alpha-20);
        z-index: 4;
        transition: var(--transition-1);
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.13) 0%,
                rgba(17, 17, 17, 0.096) 100%);
        backdrop-filter: blur(10px);
    }

    .topbar:has(~ .header.active) {
        transform: translateY(-100%);
    }

    /* FIX: Topbar text always white — sits on dark hero overlay */
    .topbar,
    .topbar a,
    .topbar .span,
    .topbar .topbar-link,
    .topbar address {
        color: rgba(255, 255, 255, 0.85);
    }

    .topbar ion-icon {
        color: var(--gold-crayola);
    }

    .topbar .separator {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .topbar .container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .topbar-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .topbar-item .icon {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .topbar-item ion-icon {
        --ionicon-stroke-width: 48px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .topbar-item .span {
        font-size: var(--fontSize-label-1);
        white-space: nowrap;
    }

    .topbar .link {
        transition: var(--transition-1);
    }

    .topbar .link:is(:hover, :focus-visible) {
        color: var(--gold-crayola);
    }

    .header {
        top: 51px;
    }

    .header.active {
        top: 0;
    }

    .header .btn {
        display: block;
        margin-inline-start: auto;
    }

    .hero-btn {
        transform: scale(0.7);
    }

    .about .container {
        gap: 80px;
    }

    .menu-card .title-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }

    .menu-card .badge {
        margin-block-start: 0;
    }

    .menu-card .span {
        flex-grow: 1;
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
    }

    .menu-card .span::before {
        content: "";
        height: 6px;
        flex-grow: 1;
        border-block: 1px solid var(--white-alpha-20);
    }
}


@media (min-width: 768px) {
    .grid-list {
        grid-template-columns: 1fr 1fr;
    }

    .hero .slider-btn {
        display: grid;
        position: absolute;
        z-index: 1;
        color: var(--gold-crayola);
        font-size: 2.4rem;
        border: 1px solid var(--gold-crayola);
        width: 45px;
        height: 45px;
        place-items: center;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        transition: var(--transition-1);
    }

    .hero .slider-btn ion-icon {
        transform: rotate(-45deg);
    }

    .hero .slider-btn.prev {
        left: 30px;
    }

    .hero .slider-btn.next {
        right: 30px;
    }

    .hero .slider-btn:is(:hover, :focus-visible) {
        background-color: var(--gold-crayola);
        color: var(--black);
    }
}


@media (min-width: 992px) {
    :root {
        --section-space: 100px;
    }

    .grid-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .about .container {
        grid-template-columns: 0.7fr 1fr;
        gap: 30px;
    }

    .special-dish {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .special-dish-content {
        padding-inline: 50px 25px;
    }

    .special-dish .btn {
        margin-inline: 0;
    }

    .special-dish-content .wrapper {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .menu .grid-list {
        position: relative;
        column-gap: 90px;
    }

    .menu .grid-list::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        border-inline-start: 1px solid var(--white-alpha-20);
    }
}


@media (min-width: 1200px) {
    :root {
        --fontSize-title-2: 2.5rem;
    }

    .container {
        max-width: 1200px;
        width: 100%;
        margin-inline: auto;
    }

    .topbar .container {
        max-width: unset;
    }

    .topbar .separator {
        display: block;
    }

    .nav-open-btn,
    .navbar>*:not(.navbar-list),
    .header .overlay {
        display: none;
    }

    .header .container {
        max-width: unset;
    }

    .navbar,
    .navbar.active,
    .navbar-list {
        all: unset;
    }

    .navbar,
    .navbar.active {
        margin-inline: auto 20px;
    }

    .navbar-list {
        display: flex;
        gap: 30px;
    }

    .navbar-item {
        border-block-start: none;
    }

    .navbar .separator {
        display: none;
    }

    .navbar-link:is(:hover, :focus-visible, .active) .span {
        transform: unset;
    }

    .navbar-link {
        font-weight: var(--weight-bold);
        letter-spacing: var(--letterSpacing-1);
    }

    .navbar-link::after {
        display: block;
    }

    .navbar-link.active::after {
        transform: scaleX(1);
        opacity: 1;
    }

    .header .btn {
        margin-inline-start: 0;
    }

    .hero {
        height: 880px;
    }

    .hero-btn {
        bottom: 50px;
        right: 50px;
        transform: scale(1);
    }

    .special-dish-content {
        padding: 225px 120px;
        padding-inline-end: 0;
    }

    .special-dish-content .container {
        max-width: 460px;
        margin-inline: 0;
    }

    .menu .grid-list {
        gap: 55px 200px;
        margin-block-end: 55px;
    }
}


@media (min-width: 1400px) {
    .navbar {
        margin-inline: auto;
    }

    .about-content {
        padding-inline-end: 90px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   MODULAR LAYOUT SYSTEM — NOWE WARIANTY
   Heroes, Headers, Footers, Sekcje
   ═══════════════════════════════════════════════════════════════════ */


/* ================================================================
   FIX: ABOUT — statystyki (10+, 500+)
   ================================================================ */

.about-info-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.about-info-item {
    text-align: center;
}

.about-info-value {
    color: var(--white);
    font-family: var(--fontFamily-forum);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.2;
    margin-bottom: 6px;
}

.about-info-label {
    color: var(--quick-silver);
    font-size: var(--fontSize-body-4);
}

.about-info-wrapper > .separator {
    flex-shrink: 0;
}


/* ================================================================
   FIX: ABOUT BANNER — usunięcie pustej przestrzeni
   ================================================================ */

.about-banner.has-before::before {
    display: none;
}


/* ================================================================
   FIX: LOCATION — ikony większe, czytelniejsze
   ================================================================ */

.location .location-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 12px 0;
}

.location .location-detail-item ion-icon {
    font-size: 32px;
    color: var(--gold-crayola);
    flex-shrink: 0;
    margin-top: 0;
    min-width: 32px;
}

.location .location-detail-item .title-3 {
    color: var(--white);
    font-family: var(--fontFamily-forum);
    font-size: var(--fontSize-title-3);
    margin-bottom: 6px;
}

.location .location-detail-item .body-4 {
    color: var(--quick-silver);
    line-height: var(--lineHeight-3);
}

.location .location-building img {
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-24);
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .location .location-building img {
        height: 220px;
    }
}

.location .location-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.location .location-map iframe {
    width: 100%;
    min-height: 300px;
    border-radius: var(--radius-24);
}

@media (min-width: 992px) {
    .location .location-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.location .location-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* ================================================================
   FIX: LOCATION MAP-FIRST — ikony większe
   ================================================================ */

.location-mapfirst .location-mapfirst-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 8px 0;
}

.location-mapfirst .location-mapfirst-item ion-icon {
    font-size: 30px;
    color: var(--gold-crayola);
    flex-shrink: 0;
    min-width: 30px;
}

.location-mapfirst .location-mapfirst-item .title-3 {
    color: var(--white);
    font-family: var(--fontFamily-forum);
    font-size: var(--fontSize-title-3);
    margin-bottom: 4px;
}


/* ================================================================
   FIX: RESERVATION — więcej oddechu
   ================================================================ */

.reservation {
    padding-block: calc(var(--section-space) + 20px);
}

.reservation .container {
    padding: 50px 40px;
    gap: 50px;
}

@media (min-width: 992px) {
    .reservation .container {
        padding: 60px 50px;
        gap: 60px;
    }
}

@media (max-width: 767px) {
    .reservation .container {
        padding: 40px 25px;
        gap: 40px;
    }
}

.reservation-left .section-subtitle {
    margin-bottom: 35px;
}

.reservation-form {
    gap: 20px;
}


/* ================================================================
   FIX: TOPBAR — ikony większe i czytelniejsze
   ================================================================ */


/* ================================================================
   HERO — FULLSCREEN
   ================================================================ */

.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-fullscreen-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-fullscreen-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fullscreen-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.8) 100%);
}

.hero-fullscreen-content {
    padding: 120px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-fullscreen-content .section-subtitle {
    color: var(--gold-crayola);
    margin-bottom: 16px;
}

.hero-fullscreen-content .hero-title {
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-fullscreen-content .hero-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-inline: auto;
}


/* ================================================================
   HERO — SPLIT (50/50)
   ================================================================ */

.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 70vh;
}

.hero-split-image {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 30px;
    background: var(--smoky-black-1);
}

.hero-split-content .section-subtitle {
    color: var(--gold-crayola);
    margin-bottom: 12px;
}

.hero-split-content .hero-title {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.hero-split-content .hero-text {
    color: var(--quick-silver);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-split-actions {
    margin-bottom: 30px;
}

.hero-split-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--white-alpha-10);
}

.hero-split-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--quick-silver);
    font-size: var(--fontSize-body-4);
}

.hero-split-info-item ion-icon {
    color: var(--gold-crayola);
    font-size: 20px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr 1fr;
    }

    .hero-split-content {
        padding: 80px 60px;
    }

    .hero-split-info {
        flex-direction: row;
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .hero-split-content {
        padding: 100px 80px;
    }
}


/* ================================================================
   HERO — VIDEO
   ================================================================ */

.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg,
.hero-video-bg-fallback {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-bg-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%);
}

.hero-video-content {
    padding: 120px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-video-content .section-subtitle {
    color: var(--gold-crayola);
    margin-bottom: 16px;
}

.hero-video-content .hero-title {
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-video-content .hero-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-inline: auto;
}


/* ================================================================
   HERO — PARALLAX
   ================================================================ */

.hero-parallax {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.7) 100%);
}

.hero-parallax-content {
    position: relative;
    z-index: 1;
    padding: 120px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-parallax-content .section-subtitle {
    color: var(--gold-crayola);
    margin-bottom: 16px;
}

.hero-parallax-content .hero-title {
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-parallax-content .hero-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-inline: auto;
}

@supports (-webkit-touch-callout: none) {
    .hero-parallax {
        background-attachment: scroll;
    }
}


/* ================================================================
   HEADER — CENTERED
   ================================================================ */

/* Mobile: logo centered na górze, reszta jak classic hamburger */
.header.header-centered .container {
    flex-wrap: wrap;
    justify-content: center;
}

.header.header-centered .header-centered-logo {
    width: 100%;
    text-align: center;
    padding: 8px 0 4px;
    order: -1;
}

.header.header-centered > .container > .btn {
    display: none;
}

/* Desktop: logo centered → nav centered pod spodem */
@media (min-width: 992px) {
    .header.header-centered {
        padding-block: 8px 6px;
    }

    .header.header-centered .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px;
    }

    .header.header-centered .header-centered-logo {
        padding: 4px 0 0;
    }

    .header.header-centered .navbar,
    .header.header-centered .navbar.active {
        all: unset;
    }

    .header.header-centered .navbar {
        display: block;
        width: auto;
    }

    .header.header-centered .navbar .logo,
    .header.header-centered .navbar .close-btn,
    .header.header-centered .navbar .text-center {
        display: none !important;
    }

    .header.header-centered .navbar-list {
        display: flex !important;
        flex-direction: row !important;
        gap: 30px;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .header.header-centered .nav-open-btn,
    .header.header-centered .overlay,
    .header.header-centered > .container > .btn {
        display: none !important;
    }

    /* Nav links: white on hero */
    .header.header-centered .navbar-link .span {
        color: #fff;
        transition: var(--transition-1);
    }

    .header.header-centered .navbar-link:is(:hover, :focus-visible) .span {
        color: var(--gold-crayola);
    }

    .header.header-centered .logo .headline-2 {
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    }

    /* After scroll — theme text colors */
    .header.header-centered.active .navbar-link .span {
        color: var(--white);
    }

    .header.header-centered.active .navbar-link:is(:hover, :focus-visible) .span {
        color: var(--gold-crayola);
    }

    .header.header-centered.active .logo .headline-2 {
        text-shadow: none;
    }
}


/* ================================================================
   HEADER — MINIMAL (transparent)
   ================================================================ */

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    border-bottom: none;
}

.header-transparent.active {
    position: fixed;
    background: var(--header-bg-active);
    backdrop-filter: blur(12px);
}

/* Logo: always accent color */
.header-transparent .logo .headline-2 {
    color: var(--gold-crayola);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.header-transparent.active .logo .headline-2 {
    color: var(--gold-crayola);
    text-shadow: none;
}

/* Nav links: white on hero, theme color after scroll */
.header-transparent .navbar-link .span {
    color: rgba(255, 255, 255, 0.9);
}

.header-transparent .navbar-link:is(:hover, :focus-visible) .span {
    color: var(--gold-crayola);
}

.header-transparent.active .navbar-link .span {
    color: var(--white);
}

.header-transparent.active .navbar-link:is(:hover, :focus-visible) .span {
    color: var(--gold-crayola);
}

/* Hamburger lines */
.header-transparent .nav-open-btn .line {
    background: #fff;
}

.header-transparent.active .nav-open-btn .line {
    background: var(--white);
}

/* Button: accent border always */
.header-transparent .btn-secondary {
    border-color: var(--gold-crayola);
    color: var(--gold-crayola);
}

.header-transparent .btn-secondary:is(:hover, :focus-visible) {
    background: var(--gold-crayola);
    color: var(--black);
}


/* ================================================================
   FOOTER — CLEAN (bez obrazka, kolor tła)
   ================================================================ */

.footer-clean {
    background-color: var(--eerie-black-1);
    background-image: none;
}

.footer-clean::before {
    display: none;
}

.footer-clean .footer-brand {
    background-color: var(--smoky-black-2);
}


/* ================================================================
   FOOTER — MINIMAL (1 linia)
   ================================================================ */

.footer-minimal {
    background-color: var(--eerie-black-1);
    padding: 30px 0 20px;
}

.footer-minimal-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-minimal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--quick-silver);
}

.footer-minimal-info a {
    color: var(--quick-silver);
    transition: var(--transition-1);
}

.footer-minimal-info a:hover {
    color: var(--gold-crayola);
}

.footer-minimal-sep {
    display: none;
}

.footer-minimal-social {
    display: flex;
    gap: 16px;
}

.footer-minimal-social a {
    color: var(--quick-silver);
    font-size: 22px;
    transition: var(--transition-1);
}

.footer-minimal-social a:hover {
    color: var(--gold-crayola);
}

.footer-minimal-bottom {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--white-alpha-10);
    text-align: center;
}

.footer-minimal-bottom .copyright {
    color: var(--quick-silver);
    font-size: var(--fontSize-label-1);
}

@media (min-width: 768px) {
    .footer-minimal-row {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-minimal-info {
        flex-direction: row;
        gap: 0;
    }

    .footer-minimal-sep {
        display: inline;
        margin: 0 12px;
        color: var(--white-alpha-20);
    }
}


/* ================================================================
   SECTION — ABOUT CENTERED
   ================================================================ */

.about-centered .about-centered-text {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--quick-silver);
}

.about-centered .about-centered-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.about-centered .about-centered-banner {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-24);
}

.about-centered .about-centered-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .about-centered .about-centered-banner img {
        height: 500px;
    }
}


/* ================================================================
   SECTION — ABOUT OVERLAP
   ================================================================ */

.about-overlap .about-overlap-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.about-overlap .about-overlap-image {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-24);
}

.about-overlap .about-overlap-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-overlap .about-overlap-card {
    background: var(--smoky-black-1);
    padding: 40px 30px;
    border-radius: var(--radius-24);
    margin-top: -60px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-inline: auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-overlap .about-overlap-card .section-subtitle {
    color: var(--gold-crayola);
    margin-bottom: 10px;
}

.about-overlap .about-overlap-card .about-title {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.about-overlap .about-overlap-card .about-text {
    color: var(--quick-silver);
    margin-bottom: 24px;
}

@media (min-width: 992px) {
    .about-overlap .about-overlap-image img {
        height: 500px;
    }

    .about-overlap .about-overlap-card {
        position: absolute;
        bottom: -40px;
        right: 40px;
        margin: 0;
        max-width: 500px;
        text-align: left;
    }
}


/* ================================================================
   SECTION — FEATURES ICONS (minimalist row)
   ================================================================ */

.features-icons {
    padding-block: 40px;
}

.features-icons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    list-style: none;
    padding: 0;
}

.features-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--quick-silver);
}

.features-icon-item ion-icon {
    font-size: 26px;
    color: var(--gold-crayola);
    flex-shrink: 0;
}

.features-icon-item .label-2 {
    color: var(--white);
    font-weight: var(--weight-bold);
    letter-spacing: var(--letterSpacing-4);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .features-icons {
        padding-block: 50px;
    }

    .features-icons-list {
        gap: 20px 60px;
    }
}


/* ================================================================
   SECTION — REVIEWS INLINE (compact)
   ================================================================ */

.reviews-inline {
    padding-block: 40px;
}

.reviews-inline-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.google-logo-sm {
    flex-shrink: 0;
}

.reviews-inline-stars {
    display: flex;
    gap: 2px;
}

.reviews-inline-stars ion-icon {
    color: var(--gold-crayola);
    font-size: 20px;
}

.reviews-inline-number {
    color: var(--white);
    font-size: var(--fontSize-headline-2);
}

.reviews-inline-count {
    color: var(--quick-silver);
}


/* ================================================================
   SECTION — REVIEWS CARD
   ================================================================ */

.reviews-card .reviews-card-wrapper {
    display: flex;
    justify-content: center;
}

.google-rating-card {
    background: var(--smoky-black-2);
    padding: 40px 50px;
    border-radius: var(--radius-24);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.google-rating-card .google-logo {
    margin-bottom: 16px;
}

.google-rating-card .rating-number {
    font-size: 4.8rem;
    font-weight: var(--weight-bold);
    font-family: var(--fontFamily-forum);
    color: var(--rating-number-color);
    line-height: 1;
    margin-bottom: 10px;
}

.google-rating-card .rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.google-rating-card .rating-stars ion-icon {
    color: var(--gold-crayola);
    font-size: 24px;
}

.google-rating-card .rating-count {
    color: var(--quick-silver);
    margin-bottom: 20px;
}

.google-rating-card .rating-btn {
    width: 100%;
    justify-content: center;
}


/* ================================================================
   SECTION — RESERVATION FULL (pełna szerokość)
   ================================================================ */

.reservation-full {
    background: var(--eerie-black-2);
}

.reservation-full .container {
    grid-template-columns: 1fr !important;
    text-align: center;
}

.reservation-full .section-title {
    font-family: var(--fontFamily-forum);
    color: var(--white);
}

.reservation-full .section-subtitle {
    color: var(--gold-crayola);
}

.reservation-full .reservation-phone-link {
    color: var(--gold-crayola);
    font-weight: var(--weight-bold);
    transition: var(--transition-1);
}

.reservation-full .reservation-phone-link:hover {
    opacity: 0.8;
}

.reservation-full-form {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-full-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.reservation-full-grid .input-field {
    background: var(--smoky-black-1);
    color: var(--white);
    padding: 14px 18px;
    border: 1px solid var(--white-alpha-10);
    border-radius: 8px;
    font-size: var(--fontSize-body-4);
    width: 100%;
    transition: var(--transition-1);
}

.reservation-full-grid .input-field:focus {
    border-color: var(--gold-crayola);
}

.reservation-full-grid textarea {
    min-height: 100px;
    resize: vertical;
}

@media (min-width: 768px) {
    .reservation-full-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reservation-full-grid textarea {
        grid-column: 1 / -1;
    }
}


/* ================================================================
   SECTION — LOCATION CLASSIC
   ================================================================ */

.location .location-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* location detail items — see FIX block at top of modular section */


/* ================================================================
   SECTION — LOCATION MAP FIRST
   ================================================================ */

.location-mapfirst .location-mapfirst-map {
    width: 100%;
    overflow: hidden;
}

.location-mapfirst .location-mapfirst-map iframe {
    width: 100%;
    display: block;
}

.location-mapfirst .location-mapfirst-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
}

.location-mapfirst .location-mapfirst-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.location-mapfirst .location-mapfirst-item ion-icon {
    font-size: 24px;
    color: var(--gold-crayola);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-mapfirst .location-mapfirst-item .title-3 {
    color: var(--white);
    margin-bottom: 4px;
}

.location-mapfirst .location-mapfirst-item .body-4 {
    color: var(--quick-silver);
}

.location-mapfirst .location-mapfirst-item a {
    color: var(--quick-silver);
    transition: var(--transition-1);
}

.location-mapfirst .location-mapfirst-item a:hover {
    color: var(--gold-crayola);
}

@media (min-width: 768px) {
    .location-mapfirst .location-mapfirst-info {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ================================================================
   SECTION — CONTACT INFO SIDE (reservation split)
   ================================================================ */

/* contact-info-side / contact-info-card / contact-list 
   removed — reservation-split uses original classes now */


/* ================================================================
   SECTION — FEATURE CARDS (grid layout fix)
   ================================================================ */

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card .card-icon ion-icon {
    font-size: 42px;
    color: var(--gold-crayola);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ================================================================
   DEMO CONFIGURATOR PANEL
   ================================================================ */

.demo-configurator {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    background: var(--smoky-black-1);
    border: 1px solid var(--white-alpha-10);
    border-right: none;
    border-radius: 16px 0 0 16px;
    padding: 20px 16px;
    width: 240px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.demo-configurator.collapsed {
    transform: translateY(-50%) translateX(calc(100% - 36px));
}

.demo-configurator-toggle {
    position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 80px;
    background: var(--gold-crayola);
    border: none;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    padding: 8px 4px;
}

.demo-configurator-title {
    font-family: var(--fontFamily-forum);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 16px;
    text-align: center;
    font-weight: var(--weight-bold);
}

.demo-configurator-group {
    margin-bottom: 14px;
}

.demo-configurator-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--quick-silver);
    margin-bottom: 5px;
    font-weight: var(--weight-bold);
}

.demo-configurator-select {
    width: 100%;
    padding: 8px 10px;
    background: var(--smoky-black-2);
    color: var(--white);
    border: 1px solid var(--white-alpha-10);
    border-radius: 8px;
    font-size: 12px;
    font-family: var(--fontFamily-dm_sans);
    cursor: pointer;
    transition: var(--transition-1);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.demo-configurator-select:focus {
    border-color: var(--gold-crayola);
    outline: none;
}

.demo-configurator-cta {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    background: var(--gold-crayola);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-1);
}

.demo-configurator-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .demo-configurator {
        position: fixed;
        right: auto;
        left: 0;
        top: auto;
        bottom: 0;
        transform: none;
        width: 100%;
        max-height: 50vh;
        border-radius: 16px 16px 0 0;
        border: 1px solid var(--white-alpha-10);
        border-bottom: none;
        padding: 16px;
    }

    .demo-configurator.collapsed {
        transform: translateY(calc(100% - 48px));
    }

    .demo-configurator-toggle {
        left: 50%;
        top: -36px;
        transform: translateX(-50%);
        width: 80px;
        height: 36px;
        border-radius: 8px 8px 0 0;
        writing-mode: horizontal-tb;
    }

    .demo-configurator-groups {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}