/* ========================================
   PRIVACY POLICY - POSTERGALI
   ======================================== */


/* ---------- CSS Reset ---------- */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: #242424;
    background: #fffdf8;

    line-height: 1.7;
}


/* ---------- Variables ---------- */

:root {
    --primary: #ef7d22;
    --primary-dark: #c95f0e;
    --primary-light: #fff1df;

    --text: #252525;
    --text-light: #666666;

    --background: #fffdf8;
    --surface: #ffffff;

    --border: #ece6df;

    --dark: #1f1f1f;

    --shadow:
        0 10px 40px rgba(0, 0, 0, 0.06);

    --radius: 20px;

    --container: 1180px;
}


/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    width: 100%;

    background: rgba(255, 253, 248, 0.94);

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

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-container {
    width: min(var(--container), calc(100% - 48px));

    min-height: 76px;

    margin: 0 auto;

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

    gap: 20px;
}

.brand {
    color: var(--dark);

    font-size: 1.7rem;
    font-weight: 800;

    text-decoration: none;

    letter-spacing: -0.8px;
}

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

.back-home {
    display: inline-flex;
    align-items: center;

    color: var(--text);

    font-size: 0.95rem;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.back-home:hover {
    color: var(--primary);
}


/* ---------- Hero ---------- */

.privacy-hero {
    position: relative;

    overflow: hidden;

    padding:
        clamp(70px, 10vw, 130px)
        24px
        clamp(60px, 8vw, 100px);

    text-align: center;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(239, 125, 34, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 197, 115, 0.22),
            transparent 30%
        ),
        #fffaf3;
}

.container {
    width: min(850px, 100%);
    margin: 0 auto;
}

.policy-badge {
    display: inline-flex;

    padding: 8px 16px;

    margin-bottom: 22px;

    border: 1px solid rgba(239, 125, 34, 0.2);
    border-radius: 999px;

    color: var(--primary-dark);
    background: var(--primary-light);

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.privacy-hero h1 {
    margin: 0;

    color: var(--dark);

    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -2px;
}

.privacy-hero p {
    max-width: 680px;

    margin:
        24px
        auto
        22px;

    color: var(--text-light);

    font-size: clamp(1rem, 2vw, 1.2rem);

    line-height: 1.7;
}

.last-updated {
    display: inline-block;

    color: #777;

    font-size: 0.9rem;
}

.last-updated strong {
    color: var(--text);
}


/* ---------- Privacy Section ---------- */

.privacy-section {
    padding: 80px 24px 100px;
}

.policy-container {
    width: min(900px, 100%);
    margin: 0 auto;
}


/* ---------- Policy Blocks ---------- */

.policy-block {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 28px;

    padding: 42px 0;

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

.policy-block:first-child {
    padding-top: 0;
}

.section-number {
    width: 48px;
    height: 48px;

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

    flex-shrink: 0;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 14px;

    font-size: 0.82rem;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.section-content h2 {
    margin: 0 0 18px;

    color: var(--dark);

    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 750;

    line-height: 1.25;

    letter-spacing: -0.6px;
}

.section-content h3 {
    margin:
        30px
        0
        12px;

    color: var(--dark);

    font-size: 1.08rem;
    font-weight: 700;
}

.section-content p {
    margin: 0 0 16px;

    color: var(--text-light);

    font-size: 1rem;
}

.section-content strong {
    color: var(--text);
}


/* ---------- Lists ---------- */

.section-content ul {
    margin:
        18px
        0
        20px;

    padding: 0;

    list-style: none;
}

.section-content ul li {
    position: relative;

    padding-left: 28px;

    margin-bottom: 12px;

    color: var(--text-light);
}

.section-content ul li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.72em;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--primary);
}


/* ---------- Notice Box ---------- */

.notice-box {
    margin-top: 24px;

    padding: 20px 22px;

    color: #69451e;

    background: #fff6e8;

    border-left: 4px solid var(--primary);

    border-radius: 0 14px 14px 0;

    font-size: 0.96rem;

    line-height: 1.7;
}


/* ---------- Contact Card ---------- */

.contact-block {
    border-bottom: none;
}

.contact-card {
    margin-top: 24px;

    padding: 30px;

    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.contact-card h3 {
    margin: 0 0 5px;

    color: var(--dark);

    font-size: 1.35rem;
}

.contact-card p {
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.contact-details a {
    width: fit-content;

    color: var(--primary-dark);

    font-weight: 650;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.contact-details a:hover {
    color: var(--primary);

    transform: translateX(3px);
}


/* ---------- Footer ---------- */

.site-footer {
    padding: 35px 24px;

    color: #a7a7a7;

    background: var(--dark);

    text-align: center;
}

.footer-container {
    width: min(var(--container), 100%);
    margin: 0 auto;
}

.site-footer p {
    margin: 4px 0;

    font-size: 0.9rem;
}


/* ---------- Tablet ---------- */

@media (max-width: 768px) {

    .header-container {
        width: min(100%, calc(100% - 32px));

        min-height: 68px;
    }

    .privacy-section {
        padding:
            60px
            18px
            70px;
    }

    .policy-block {
        grid-template-columns: 52px 1fr;

        gap: 18px;

        padding: 34px 0;
    }

    .section-number {
        width: 42px;
        height: 42px;

        border-radius: 12px;

        font-size: 0.75rem;
    }

}


/* ---------- Mobile ---------- */

@media (max-width: 560px) {

    .brand {
        font-size: 1.4rem;
    }

    .back-home {
        font-size: 0.82rem;
    }

    .privacy-hero {
        padding:
            65px
            18px
            60px;
    }

    .privacy-hero h1 {
        letter-spacing: -1.3px;
    }

    .privacy-section {
        padding:
            50px
            16px
            60px;
    }

    .policy-block {
        display: block;

        padding: 30px 0;
    }

    .section-number {
        margin-bottom: 18px;
    }

    .section-content h2 {
        font-size: 1.55rem;
    }

    .section-content h3 {
        margin-top: 25px;
    }

    .section-content p,
    .section-content ul li {
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 22px;
    }

    .notice-box {
        padding: 17px;
    }

}


/* ---------- Small Mobile ---------- */

@media (max-width: 380px) {

    .back-home {
        font-size: 0.75rem;
    }

    .brand {
        font-size: 1.25rem;
    }

    .policy-badge {
        font-size: 0.7rem;

        padding: 7px 12px;
    }

}