/* ==========================================================
   KAWIARENKA ZEBRA - Stylizacja CSS
   Styl: Młodzieżowy, energiczny róż (#ec4899), ciemny grafit (#09090b),
   akcenty w paski zebry, neonowe poświaty, tablica kredowa.
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=Syne:wght@600;700;800&display=swap');

:root {
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --bg-card-subtle: #27272a;
    --text-primary: #f4f4f5;
    --text-muted: #a1a1aa;
    --pink-primary: #ec4899;
    --pink-hover: #f43f5e;
    --pink-glow: rgba(236, 72, 153, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-hand: 'Caveat', cursive;
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    selection-background-color: var(--pink-primary);
}

::selection {
    background: var(--pink-primary);
    color: #fff;
}

/* Wzór w paski zebry */
.bg-zebra-stripes {
    background-image: repeating-linear-gradient(
        -45deg,
        #09090b 0,
        #09090b 12px,
        #ffffff 12px,
        #ffffff 24px
    );
}

.bg-zebra-subtle {
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.03) 0,
        rgba(255, 255, 255, 0.03) 14px,
        transparent 14px,
        transparent 28px
    );
}

.font-display {
    font-family: var(--font-display);
}

.font-hand {
    font-family: var(--font-hand);
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------------------------------------------
   Dynamiczne Animacje Scrolla (Fade-in-up itp.)
--------------------------------------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.fade-in-up {
    transform: translateY(35px);
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-40px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(40px);
}

.animate-on-scroll.zoom-in {
    transform: scale(0.92);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ---------------------------------------------
   Pasek Nawigacyjny
--------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.navbar-scrolled {
    background: rgba(9, 9, 11, 0.92);
    backdrop-filter: blur(12px);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(236, 72, 153, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #fff;
}

.brand-icon {
    width: 34px;
    height: 34px;
    background: var(--pink-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 12px var(--pink-glow);
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.brand-text span {
    color: var(--pink-primary);
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 4px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon-cart {
    background: #18181b;
    border: 1px solid #27272a;
    color: #fff;
    padding: 0.6rem 0.95rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-icon-cart:hover {
    border-color: var(--pink-primary);
    color: var(--pink-primary);
}

.cart-count-badge {
    background: var(--pink-primary);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 7px;
    border-radius: 9999px;
    font-weight: 800;
}

.btn-primary-reserve {
    background: var(--pink-primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 0 16px var(--pink-glow);
    transition: all 0.2s ease;
}

.btn-primary-reserve:hover {
    background: var(--pink-hover);
    transform: translateY(-1px);
}

.hamburger-btn {
    display: none;
    background: transparent;
    border: 1px solid #27272a;
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
}

/* ---------------------------------------------
   Sekcja Hero
--------------------------------------------- */
.hero-section {
    position: relative;
    padding: 8.5rem 0 5rem 0;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: 20%;
    left: 45%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236,72,153,0.18) 0%, transparent 70%);
    pointer-events-none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--pink-primary);
    margin-bottom: 0.75rem;
}

.hero-handwritten {
    font-family: var(--font-hand);
    font-size: 1.85rem;
    color: #f472b6;
    margin-bottom: 1rem;
    display: inline-block;
    transform: rotate(-1.5deg);
}

/* Animowany nagłówek H1 */
.hero-h1 {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.gradient-text {
    background: linear-gradient(90deg, #f472b6, #fda4af, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.1rem;
    color: #d4d4d8;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 620px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--pink-primary);
    color: #fff;
    padding: 0.9rem 1.6rem;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 0 25px var(--pink-glow);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    background: var(--pink-hover);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: #18181b;
    color: #fff;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid #3f3f46;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-hero-secondary:hover {
    border-color: var(--pink-primary);
    background: #27272a;
}

.hero-meta-row {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

/* Hero Visual Box */
.hero-visual-wrap {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(236, 72, 153, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.hero-image-frame img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.04);
}

.hero-badge-float {
    position: absolute;
    background: rgba(9, 9, 11, 0.92);
    border: 1px solid rgba(236, 72, 153, 0.5);
    backdrop-filter: blur(8px);
    padding: 0.65rem 0.9rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.hero-badge-top {
    top: -15px;
    left: -20px;
}

.hero-badge-bottom {
    bottom: -15px;
    right: -20px;
}

.badge-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.badge-info h5 {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.badge-info p {
    font-size: 0.72rem;
    color: var(--pink-primary);
}

/* ---------------------------------------------
   Pasek Tekstowy Marquee
--------------------------------------------- */
.marquee-bar {
    background: var(--pink-primary);
    color: #fff;
    padding: 0.75rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.marquee-content {
    display: inline-block;
    animation: marquee 24s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------------------------------------------
   Menu Section
--------------------------------------------- */
.menu-section {
    padding: 6rem 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem auto;
}

.section-num {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--pink-primary);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.7rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Filtry menu */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    background: #18181b;
    padding: 0.45rem;
    border-radius: 16px;
    border: 1px solid #27272a;
    display: inline-flex;
}

.menu-filter-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.6rem 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-filter-btn.active, .menu-filter-btn:hover {
    background: var(--pink-primary);
    color: #fff;
    box-shadow: 0 0 14px var(--pink-glow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.menu-card-item {
    background: #18181b;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.menu-card-item:hover {
    border-color: rgba(236, 72, 153, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.15);
}

.card-img-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card-item:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(9, 9, 11, 0.85);
    color: #f472b6;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.card-header-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.6rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.card-price {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--pink-primary);
    background: rgba(236, 72, 153, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
}

.card-ingredients {
    font-size: 0.82rem;
    color: #d4d4d8;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.card-lorem {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

.card-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 12px;
    background: #27272a;
    border: 1px solid #3f3f46;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    background: var(--pink-primary);
    border-color: var(--pink-primary);
    box-shadow: 0 0 15px var(--pink-glow);
}

.add-to-cart-btn.btn-success {
    background: #10b981 !important;
    border-color: #10b981 !important;
}

/* ---------------------------------------------
   Klimat & Tablica Kredowa (Story Section)
--------------------------------------------- */
.story-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    background: #09090b;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.chalkboard-box {
    background: #18181b;
    border: 2px solid rgba(236, 72, 153, 0.35);
    border-radius: 28px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.chalkboard-inner {
    background: #09090b;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #27272a;
    text-align: center;
}

.chalk-main {
    font-family: var(--font-hand);
    font-size: 2.8rem;
    color: #f472b6;
    font-weight: 700;
}

.chalk-sub {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #e4e4e7;
    margin: 0.25rem 0 0.5rem 0;
}

.chalk-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
    padding: 1rem 0;
    margin: 1.5rem 0;
}

.chalk-price {
    font-size: 1.6rem;
    font-family: monospace;
    font-weight: 800;
    color: var(--pink-primary);
}

.zebra-divider {
    height: 18px;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.stats-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    background: #18181b;
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-num {
    font-family: monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--pink-primary);
}

.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* ---------------------------------------------
   Bento Galeria
--------------------------------------------- */
.gallery-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.gallery-grid-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-grid-card:hover {
    border-color: var(--pink-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(236,72,153,0.2);
}

.gallery-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-grid-card:hover img {
    transform: scale(1.06);
}

.gallery-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.gallery-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.gallery-card-info h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.gallery-card-info p {
    font-size: 0.8rem;
    color: #d4d4d8;
    margin-top: 0.25rem;
}

.col-8 { grid-column: span 8; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-7 { grid-column: span 7; }

/* ---------------------------------------------
   Kontakt & Formularz Rezerwacji
--------------------------------------------- */
.contact-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
}

.contact-card-info {
    background: #18181b;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 2.25rem;
}

.contact-row-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #27272a;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.35);
    color: var(--pink-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
}

.form-box {
    background: #18181b;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 2.5rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #d4d4d8;
}

.form-control {
    background: #09090b;
    border: 1px solid #3f3f46;
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--pink-primary);
}

.btn-submit-form {
    width: 100%;
    padding: 1rem;
    background: var(--pink-primary);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 20px var(--pink-glow);
    transition: all 0.2s ease;
}

.btn-submit-form:hover {
    background: var(--pink-hover);
}

.feedback-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    color: #10b981;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* ---------------------------------------------
   Koszyk Drawer & Modale
--------------------------------------------- */
.cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: none;
}

.cart-backdrop.open {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background: #09090b;
    border-left: 1px solid #27272a;
    z-index: 210;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-body {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #18181b;
    padding: 0.85rem;
    border-radius: 14px;
    margin-bottom: 0.85rem;
    border: 1px solid #27272a;
}

.cart-item-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.cart-item-pricing {
    font-size: 0.8rem;
    color: var(--pink-primary);
    font-family: monospace;
    font-weight: 700;
}

.quantity-box {
    display: flex;
    align-items: center;
    background: #09090b;
    border-radius: 8px;
    border: 1px solid #27272a;
    padding: 2px;
}

.quantity-box button {
    background: transparent;
    border: none;
    color: #d4d4d8;
    padding: 2px 7px;
    cursor: pointer;
    font-weight: 700;
}

.quantity-box span {
    padding: 0 6px;
    font-size: 0.82rem;
    font-weight: 800;
}

.btn-remove-item {
    background: transparent;
    border: none;
    color: #71717a;
    cursor: pointer;
    padding: 4px;
    margin-left: 6px;
}

.btn-remove-item:hover {
    color: #ef4444;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #27272a;
    background: #09090b;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-total-row span:last-child {
    font-family: monospace;
    font-weight: 900;
    color: var(--pink-primary);
    font-size: 1.4rem;
}

/* Modal ogólny */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
    z-index: 250;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-card {
    background: #18181b;
    border: 1px solid rgba(236,72,153,0.4);
    border-radius: 28px;
    max-width: 520px;
    width: 100%;
    padding: 2.25rem;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #09090b;
    border: none;
    color: #a1a1aa;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

/* Toast */
.zebra-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%, 60px);
    background: var(--pink-primary);
    color: #fff;
    padding: 0.85rem 1.6rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px var(--pink-glow);
    z-index: 300;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.zebra-toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Stopka */
.footer {
    background: #000;
    border-top: 1px solid #18181b;
    padding: 4rem 0 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #18181b;
    padding-top: 1.5rem;
    margin-top: 3rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Responsywność */
@media (max-width: 680px) {
    .nav-links, .btn-primary-reserve {
        display: none;
    }
    .hamburger-btn {
        display: block;
    }
    .hero-grid, .story-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-h1 {
        font-size: 2.8rem;
    }
    .col-8, .col-4, .col-5, .col-7 {
        grid-column: span 12;
    }
    .gallery-grid-card {
        height: 260px;
    }
}
