@font-face {
    font-family: 'Jost';
    src: url('/fonts/Jost-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Jost';
    src: url('/fonts/Jost-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
    background: #f2efeb;
    color: #000;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #f2efeb;
    z-index: 1000;
}

.header-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    position: relative;
}

.header-mobile .logo {
    width: 80px;
    z-index: 2;
}

.header-mobile .hamburger {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    width: 50px;
    height: 50px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 3;
}

.header-mobile .hamburger span {
    display: block;
    width: 45px;
    height: 2px;
    background: #000;
    margin: 6px 0;
    border-radius: 2px;
}

.privacy-page {
    background: #f2efeb;
    color: #000;
}

.privacy-main {
    padding-top: 80px;
}

.privacy-container {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
}

.privacy-hero {
    background: #f2efeb;
    text-align: center;
    padding: 3rem 0 2rem 0;
}

.privacy-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-hero h1 {
    margin: 2rem 0 0.5rem 0;
    font-size: clamp(2rem, 9vw, 4.5rem);
    line-height: 0.95;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.privacy-subtitle {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.privacy-date {
    margin: 1rem 0 0 0;
    font-size: 0.95rem;
}

.privacy-content {
    padding: 1rem 0 4rem 0;
}

.privacy-section {
    padding: 2.25rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.privacy-section:first-child {
    border-top: none;
}

.privacy-section h2 {
    margin: 0 0 1.5rem 0;
    font-size: clamp(1.25rem, 5vw, 2rem);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.privacy-section p {
    margin: 0 0 1rem 0;
    line-height: 1.65;
    font-size: 1rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ol,
.privacy-section ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 1.35rem;
}

.privacy-section ol ol,
.privacy-section ol ul,
.privacy-section ul ul {
    margin-top: 0.65rem;
    margin-bottom: 0.25rem;
}

.privacy-section li {
    margin-bottom: 0.9rem;
    line-height: 1.65;
    font-size: 1rem;
}

.privacy-section li:last-child {
    margin-bottom: 0;
}

.privacy-section ul li {
    margin-bottom: 0.35rem;
}

.privacy-section strong {
    font-weight: 600;
}

.privacy-section address {
    font-style: normal;
    line-height: 1.65;
    margin: 0.75rem 0;
}

.privacy-section a,
.privacy-back-link,
.privacy-pdf-link {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.privacy-section a:hover,
.privacy-back-link:hover,
.privacy-pdf-link:hover {
    opacity: 0.6;
}

.privacy-back-link,
.privacy-pdf-link {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
}

.privacy-pdf-link {
    margin-top: 1.5rem;
}

.privacy-bottom-actions {
    border-top: 1px solid rgba(0, 0, 0, 0.18);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.privacy-footer {
    background: #f2efeb;
    padding-bottom: 1rem;
}

.footer-text {
    text-align: center;
    font-size: 11px;
}

/* MOBILE MENU */

.mobile-full-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: #f2efeb;
    display: flex;
    flex-direction: column;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-full-menu.active {
    transform: translateX(0);
}

.menu-content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

.lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    gap: 10px;
}

.pl-container,
.eng-container {
    display: inline-block;
    width: 30px;
    text-align: center;
}

.lang-switch .pl,
.lang-switch .eng {
    cursor: pointer;
    color: #888;
    font-weight: 400;
    transition: color 0.2s, font-weight 0.2s;
}

.lang-switch .pl.selected,
.lang-switch .eng.selected {
    color: #000;
    font-weight: 600;
}

.lang-switch .divider {
    display: inline-block;
    width: 1px;
    height: 36px;
    background: #000;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
}

.menu-buttons .menu-item {
    display: flex;
    flex-direction: column;
}

.menu-buttons a {
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    padding: 28px 0;
}

.menu-buttons hr {
    width: 100%;
    border: none;
    border-top: 0.5px solid #999;
    margin: 0;
}

.contact-info {
    text-align: center;
    font-size: 16px;
}

.pawel {
    font-size: 1.1em;
    font-weight: 600;
}

.rotary-phone {
    font-size: 0.95em;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px #000;
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-2px);
}

.phone-number {
    font-weight: 600;
    margin-left: 10px;
}

.menu-bottom-image {
    display: flex;
    justify-content: center;
}

.menu-bottom-image img {
    width: auto;
    height: auto;
    transform: scale(0.85);
    transform-origin: center;
}

/* DESKTOP */

@media (min-width: 768px) {
    .privacy-hero {
        padding: 4.5rem 0 3rem 0;
    }

    .privacy-content {
        padding-bottom: 6rem;
    }

    .privacy-section {
        padding: 3rem 0;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 1.05rem;
    }

    .privacy-bottom-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .privacy-pdf-link {
        margin-top: 0;
    }
}

/* PRINT */

@media print {
    header,
    .mobile-full-menu,
    .privacy-back-link,
    .privacy-pdf-link,
    .footer-text {
        display: none !important;
    }

    .privacy-main {
        padding-top: 0;
    }

    .privacy-container {
        max-width: none;
        padding: 0;
    }

    .privacy-hero {
        padding: 0 0 2rem 0;
    }

    .privacy-hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .privacy-section {
        padding: 1.5rem 0;
        border-top: 1px solid #000;
        page-break-inside: avoid;
    }

    .privacy-section h2 {
        font-size: 18px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 12px;
        line-height: 1.45;
    }
}
