/* ═══════════════════════════════════════════
   TIMILUC SRL — GDPR / Politica de Confidențialitate
   Legal text styling, headings, lists,
   max-width container.
   ═══════════════════════════════════════════ */


/* ─── PAGE WRAPPER ─── */
.tml-gdpr-page {
    background: var(--tml-bg);
    min-height: 100vh;
    padding-top: clamp(100px, 14vw, 140px);
}


/* ─── HERO ─── */
.tml-gdpr-hero {
    text-align: center;
    padding: 0 24px clamp(40px, 6vw, 60px);
}

.tml-gdpr-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--tml-gold);
    margin-bottom: 1rem;
}

.tml-gdpr-hero-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--tml-gold-dim);
}

.tml-gdpr-hero h1 {
    font-family: var(--tml-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--tml-white);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.tml-gdpr-hero p {
    font-size: 0.82rem;
    color: var(--tml-muted);
    font-weight: 400;
}


/* ─── CONTENT CONTAINER ─── */
.tml-gdpr-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px clamp(60px, 10vw, 120px);
}

.tml-gdpr-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: clamp(24px, 4vw, 48px);
}


/* ─── HEADINGS ─── */
.tml-gdpr-content h2 {
    font-family: var(--tml-font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--tml-white);
    line-height: 1.2;
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.tml-gdpr-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.tml-gdpr-content h3 {
    font-family: var(--tml-font-serif);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--tml-white);
    line-height: 1.25;
    margin: 1.5rem 0 0.5rem;
}

.tml-gdpr-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--tml-white);
    margin: 1.25rem 0 0.5rem;
}


/* ─── PARAGRAPHS ─── */
.tml-gdpr-content p {
    font-size: 0.88rem;
    color: var(--tml-txt);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1em;
}

.tml-gdpr-content p:last-child {
    margin-bottom: 0;
}

.tml-gdpr-content strong {
    font-weight: 700;
    color: var(--tml-white);
}


/* ─── LINKS ─── */
.tml-gdpr-content a {
    color: var(--tml-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(0, 206, 209, 0.3);
    transition: text-decoration-color var(--tml-transition);
}

.tml-gdpr-content a:hover {
    text-decoration-color: var(--tml-cyan);
}


/* ─── LISTS ─── */
.tml-gdpr-content ul,
.tml-gdpr-content ol {
    margin-bottom: 1.25em;
    padding-left: 0;
}

.tml-gdpr-content ul {
    list-style: none;
}

.tml-gdpr-content ul li {
    position: relative;
    padding-left: 1.25em;
    margin-bottom: 0.5em;
    font-size: 0.88rem;
    color: var(--tml-txt);
    line-height: 1.7;
    font-weight: 300;
}

.tml-gdpr-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--tml-cyan);
    opacity: 0.5;
}

.tml-gdpr-content ol {
    padding-left: 1.5em;
}

.tml-gdpr-content ol li {
    margin-bottom: 0.5em;
    font-size: 0.88rem;
    color: var(--tml-txt);
    line-height: 1.7;
    font-weight: 300;
}


/* ─── LAST UPDATED ─── */
.tml-gdpr-updated {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    color: var(--tml-muted);
    font-weight: 400;
}


/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
    .tml-gdpr-content {
        padding: 20px;
    }
}
