/* AP Strony — Complete Static CSS (replaces Tailwind CDN + custom styles) */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    -webkit-font-smoothing: antialiased
}

body {
    margin: 0;
    line-height: inherit
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    text-decoration: inherit
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto
}

button,
input,
textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button {
    cursor: pointer;
    background-color: transparent;
    background-image: none
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --coffee: #2D1F21;
    --icy: #D4A0A7;
    --smart: #5DA271;
    --bred: #898989;
    --cayenne: #C84630;
}

/* ===== HEADING FONT ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', 'Lato', system-ui, sans-serif
}

/* ===== SELECTION & FOCUS ===== */
::selection {
    background-color: var(--cayenne);
    color: #fff
}

:focus-visible {
    outline: 2px solid var(--smart);
    outline-offset: 2px;
    border-radius: 4px
}

/* ===== LAYOUT UTILITIES ===== */
.flex {
    display: flex
}

.grid {
    display: grid
}

.block {
    display: block
}

.hidden {
    display: none
}

.inline-flex {
    display: inline-flex
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.items-center {
    align-items: center
}

.items-start {
    align-items: start
}

.justify-between {
    justify-content: space-between
}

.justify-center {
    justify-content: center
}

.gap-1 {
    gap: .25rem
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

.gap-12 {
    gap: 3rem
}

.flex-shrink-0 {
    flex-shrink: 0
}

.mt-auto {
    margin-top: auto
}

/* Space-y utilities */
.space-y-3>:not([hidden])~:not([hidden]) {
    margin-top: .75rem
}

.space-y-4>:not([hidden])~:not([hidden]) {
    margin-top: 1rem
}

.space-y-5>:not([hidden])~:not([hidden]) {
    margin-top: 1.25rem
}

.space-y-6>:not([hidden])~:not([hidden]) {
    margin-top: 1.5rem
}

/* ===== GRID UTILITIES ===== */
/* grid-cols set via responsive */

/* ===== SIZING ===== */
.w-4 {
    width: 1rem
}

.w-5 {
    width: 1.25rem
}

.w-6 {
    width: 1.5rem
}

.w-7 {
    width: 1.75rem
}

.w-10 {
    width: 2.5rem
}

.w-12 {
    width: 3rem
}

.w-14 {
    width: 3.5rem
}

.w-24 {
    width: 6rem
}

.w-32 {
    width: 8rem
}

.w-48 {
    width: 12rem
}

.w-56 {
    width: 14rem
}

.w-64 {
    width: 16rem
}

.w-full {
    width: 100%
}

.w-1\/3 {
    width: 33.333%
}

.w-1\/4 {
    width: 25%
}

.h-4 {
    height: 1rem
}

.h-5 {
    height: 1.25rem
}

.h-6 {
    height: 1.5rem
}

.h-7 {
    height: 1.75rem
}

.h-10 {
    height: 2.5rem
}

.h-12 {
    height: 3rem
}

.h-14 {
    height: 3.5rem
}

.h-16 {
    height: 4rem
}

.h-20 {
    height: 5rem
}

.h-24 {
    height: 6rem
}

.h-32 {
    height: 8rem
}

.h-48 {
    height: 12rem
}

.h-56 {
    height: 14rem
}

.h-64 {
    height: 16rem
}

.h-full {
    height: 100%
}

.min-h-screen {
    min-height: 100vh
}

.min-h-\[85vh\] {
    min-height: 85vh
}

.min-h-\[280px\] {
    min-height: 280px
}

.min-h-\[320px\] {
    min-height: 320px
}

.min-h-\[3rem\] {
    min-height: 3rem
}

.max-w-sm {
    max-width: 24rem
}

.max-w-xl {
    max-width: 36rem
}

.max-w-2xl {
    max-width: 42rem
}

.max-w-3xl {
    max-width: 48rem
}

.max-w-5xl {
    max-width: 64rem
}

.max-w-7xl {
    max-width: 80rem
}

.aspect-\[16\/10\] {
    aspect-ratio: 16/10
}

/* ===== SPACING ===== */
.p-2 {
    padding: .5rem
}

.p-5 {
    padding: 1.25rem
}

.p-6 {
    padding: 1.5rem
}

.p-8 {
    padding: 2rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem
}

.pb-6 {
    padding-bottom: 1.5rem
}

.pl-2 {
    padding-left: .5rem
}

.pr-4 {
    padding-right: 1rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-16 {
    margin-bottom: 4rem
}

.mt-1 {
    margin-top: .25rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-8 {
    margin-top: 2rem
}

.mt-10 {
    margin-top: 2.5rem
}

/* ===== POSITIONING ===== */
.relative {
    position: relative
}

.absolute {
    position: absolute
}

.sticky {
    position: sticky
}

.top-0 {
    top: 0
}

.top-1\/4 {
    top: 25%
}

.left-0 {
    left: 0
}

.left-1\/2 {
    left: 50%
}

.right-1\/3 {
    right: 33.333%
}

.right-1\/4 {
    right: 25%
}

.bottom-1\/3 {
    bottom: 33.333%
}

.inset-0 {
    inset: 0
}

.-inset-3 {
    inset: -.75rem
}

.-top-3 {
    top: -.75rem
}

.-bottom-4 {
    bottom: -1rem
}

.-right-4 {
    right: -1rem
}

.z-10 {
    z-index: 10
}

.z-40 {
    z-index: 40
}

.z-50 {
    z-index: 50
}

/* ===== TYPOGRAPHY ===== */
.font-sans {
    font-family: 'Lato', system-ui, sans-serif
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.font-bold {
    font-weight: 700
}

.font-extrabold {
    font-weight: 800
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.text-5xl {
    font-size: 3rem;
    line-height: 1
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.uppercase {
    text-transform: uppercase
}

.tracking-tight {
    letter-spacing: -.025em
}

.tracking-wider {
    letter-spacing: .05em
}

.tracking-\[0\.2em\] {
    letter-spacing: .2em
}

.leading-relaxed {
    line-height: 1.625
}

.leading-\[1\.08\] {
    line-height: 1.08
}

.whitespace-nowrap {
    white-space: nowrap
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

/* ===== COLORS ===== */
.text-white {
    color: #fff
}

.text-white\/80 {
    color: rgba(255, 255, 255, .8)
}

.text-coffee {
    color: var(--coffee)
}

.text-cayenne {
    color: var(--cayenne)
}

.text-icy {
    color: var(--icy)
}

.text-icy\/80 {
    color: rgba(212, 160, 167, .8)
}

.text-smart {
    color: var(--smart)
}

.text-bred {
    color: var(--bred)
}

.text-bred\/50 {
    color: rgba(137, 137, 137, .5)
}

.text-green-600 {
    color: #16a34a
}

.text-slate-300 {
    color: #cbd5e1
}

.text-slate-400 {
    color: #94a3b8
}

.text-slate-500 {
    color: #64748b
}

.text-slate-600 {
    color: #475569
}

.text-slate-700 {
    color: #334155
}

.text-slate-900 {
    color: #0f172a
}

.bg-white {
    background-color: #fff
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, .2)
}

.bg-coffee {
    background-color: var(--coffee)
}

.bg-cayenne {
    background-color: var(--cayenne)
}

.bg-cayenne\/10 {
    background-color: rgba(200, 70, 48, .1)
}

.bg-cayenne\/20 {
    background-color: rgba(200, 70, 48, .2)
}

.bg-icy\/10 {
    background-color: rgba(212, 160, 167, .1)
}

.bg-icy\/20 {
    background-color: rgba(212, 160, 167, .2)
}

.bg-icy\/30 {
    background-color: rgba(212, 160, 167, .3)
}

.bg-icy\/50 {
    background-color: rgba(212, 160, 167, .5)
}

.bg-bred\/10 {
    background-color: rgba(137, 137, 137, .1)
}

.bg-green-50 {
    background-color: #f0fdf4
}

.bg-slate-200 {
    background-color: #e2e8f0
}

.bg-slate-300 {
    background-color: #cbd5e1
}

.bg-slate-50\/50 {
    background-color: rgba(248, 250, 252, .5)
}

.bg-\[\#FAFAFA\] {
    background-color: #FAFAFA
}

.bg-\[\#FAFAFA\]\/95 {
    background-color: rgba(250, 250, 250, .95)
}

/* ===== GRADIENTS ===== */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops))
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops))
}

.from-coffee\/95 {
    --tw-gradient-from: rgba(45, 31, 33, .95);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 31, 33, 0))
}

.from-coffee\/60 {
    --tw-gradient-from: rgba(45, 31, 33, .6);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 31, 33, 0))
}

.from-smart\/20 {
    --tw-gradient-from: rgba(93, 162, 113, .2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 162, 113, 0))
}

.via-coffee\/80 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(45, 31, 33, .8), var(--tw-gradient-to, rgba(45, 31, 33, 0))
}

.via-transparent {
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent)
}

.to-coffee\/30 {
    --tw-gradient-to: rgba(45, 31, 33, .3)
}

.to-coffee\/40 {
    --tw-gradient-to: rgba(45, 31, 33, .4)
}

.to-icy {
    --tw-gradient-to: var(--icy)
}

/* ===== BORDERS ===== */
.border {
    border-width: 1px
}

.border-2 {
    border-width: 2px
}

.border-b {
    border-bottom-width: 1px
}

.border-t {
    border-top-width: 1px
}

.border-dashed {
    border-style: dashed
}

.border-gray-50 {
    border-color: #f9fafb
}

.border-gray-100 {
    border-color: #f3f4f6
}

.border-gray-200 {
    border-color: #e5e7eb
}

.border-gray-300 {
    border-color: #d1d5db
}

.border-slate-200 {
    border-color: #e2e8f0
}

.border-slate-300 {
    border-color: #cbd5e1
}

.border-cayenne {
    border-color: var(--cayenne)
}

.border-cayenne\/30 {
    border-color: rgba(200, 70, 48, .3)
}

.border-icy\/20 {
    border-color: rgba(212, 160, 167, .2)
}

.border-smart {
    border-color: var(--smart)
}

.border-white\/30 {
    border-color: rgba(255, 255, 255, .3)
}

.rounded {
    border-radius: .25rem
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-xl {
    border-radius: .75rem
}

.rounded-2xl {
    border-radius: 1rem
}

.rounded-full {
    border-radius: 9999px
}

/* ===== SHADOWS ===== */
.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05)
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1)
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1)
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25)
}

/* ===== EFFECTS ===== */
.opacity-30 {
    opacity: .3
}

.blur-2xl {
    filter: blur(40px)
}

.blur-3xl {
    filter: blur(64px)
}

.backdrop-blur {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.backdrop-blur-sm {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.drop-shadow-lg {
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, .04)) drop-shadow(0 4px 3px rgba(0, 0, 0, .1))
}

/* ===== OVERFLOW & OBJECT ===== */
.overflow-hidden {
    overflow: hidden
}

.object-cover {
    object-fit: cover
}

.object-center {
    object-position: center
}

.object-top {
    object-position: top
}

.select-none {
    user-select: none
}

.pointer-events-none {
    pointer-events: none
}

/* ===== TRANSFORMS ===== */
.transform {
    transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) scale(var(--tw-scale-x, 1), var(--tw-scale-y, 1))
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translateX(-50%) translateY(var(--tw-translate-y, 0))
}

.rotate-3 {
    --tw-rotate: 3deg;
    transform: rotate(3deg)
}

.-rotate-2 {
    --tw-rotate: -2deg;
    transform: rotate(-2deg)
}

/* ===== TRANSITIONS ===== */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.duration-300 {
    transition-duration: 300ms
}

/* ===== ANIMATIONS ===== */
.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

/* ===== HOVER STATES ===== */
.hover\:bg-\[\#B03D2A\]:hover {
    background-color: #B03D2A
}

.hover\:bg-icy\/20:hover {
    background-color: rgba(212, 160, 167, .2)
}

.hover\:border-icy:hover {
    border-color: var(--icy)
}

.hover\:border-smart:hover {
    border-color: var(--smart)
}

.hover\:text-cayenne:hover {
    color: var(--cayenne)
}

.hover\:text-icy:hover {
    color: var(--icy)
}

.hover\:text-smart:hover {
    color: var(--smart)
}

.hover\:opacity-80:hover {
    opacity: .8
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1)
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1)
}

.hover\:-translate-y-0\.5:hover {
    transform: translateY(-2px)
}

.hover\:-translate-y-1:hover {
    transform: translateY(-4px)
}

/* ===== AFTER PSEUDO-ELEMENT (nav underline) ===== */
.after\:absolute::after {
    position: absolute
}

.after\:left-0::after {
    left: 0
}

.after\:-bottom-1::after {
    bottom: -.25rem
}

.after\:h-\[2px\]::after {
    height: 2px
}

.after\:w-full::after {
    width: 100%
}

.after\:origin-left::after {
    transform-origin: left
}

.after\:scale-x-0::after {
    --tw-scale-x: 0;
    transform: scaleX(0)
}

.after\:bg-cayenne::after {
    background-color: var(--cayenne)
}

.after\:transition-transform::after {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms
}

.after\:duration-300::after {
    transition-duration: 300ms
}

.after\:content-\[\'\'\]::after {
    content: ''
}

.hover\:after\:scale-x-100:hover::after {
    transform: scaleX(1)
}

/* ===== GROUP HOVER ===== */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05)
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(.25rem)
}

/* ===== SUPPORTS ===== */
@supports (backdrop-filter:blur(1px)) {
    .supports-\[backdrop-filter\]\:bg-\[\#FAFAFA\]\/60 {
        background-color: rgba(250, 250, 250, .6)
    }
}

/* ===== RESPONSIVE: SM (640px+) ===== */
@media(min-width:640px) {
    .sm\:flex {
        display: flex
    }

    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }
}

/* ===== RESPONSIVE: MD (768px+) ===== */
@media(min-width:768px) {
    .md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1
    }

    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr))
    }

    .md\:col-span-2 {
        grid-column: span 2/span 2
    }

    .md\:col-span-3 {
        grid-column: span 3/span 3
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:w-64 {
        width: 16rem
    }

    .md\:h-64 {
        height: 16rem
    }
}

/* ===== RESPONSIVE: LG (1024px+) ===== */
@media(min-width:1024px) {
    .lg\:flex {
        display: flex
    }

    .lg\:hidden {
        display: none
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .lg\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }
}

/* ===== FAQ ACCORDION ===== */
.faq-item.active .faq-chevron {
    transform: rotate(180deg)
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-item.active .faq-content {
    max-height: 400px
}

/* ===== NAV SCROLL SHADOW ===== */
.header-scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 4px 12px rgba(0, 0, 0, .04)
}

/* ===== MOBILE MENU ===== */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

#mobile-menu.open {
    max-height: 500px
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ===== PACKAGE CARD PULSE ===== */
@keyframes pulse-border {

    0%,
    100% {
        border-color: var(--cayenne)
    }

    50% {
        border-color: var(--icy)
    }
}

.package-featured {
    animation: pulse-border 3s ease-in-out infinite
}

/* ===== GRADIENT TEXT ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--cayenne), var(--icy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* ===== BUTTON GLOW ===== */
.btn-glow {
    box-shadow: 0 0 20px rgba(200, 70, 48, .3);
    transition: all .3s ease
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(200, 70, 48, .5);
    transform: translateY(-2px)
}

/* ===== SCROLL SMOOTH (html) ===== */
.scroll-smooth {
    scroll-behavior: smooth
}