﻿
/* ===== GoldSafari (gs-) Design System - Privacy Page ===== */
:root {
    --gold: #b8890d;
    --muted: #666;
    --bg: #fafafa;
    --card-bg: #ffffff;
}

/* Page layout */
.gs-container {
    direction: rtl;
}

.gs-card {
    border-radius: 15px;
    padding: 16px;
    background: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow .25s ease, transform .25s ease;
}

.gs-card--hoverable:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* Header */
.gs-header {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.gs-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.gs-title {
    font-weight: 700;
    margin: 0;
    font-size: 1.35rem;
}

.gs-updated {
    font-weight: 600;
    color: var(--muted);
    margin: 0;
}

.gs-intro {
    margin-top: 0.5rem;
    color: #333;
    line-height: 1.9rem;
    text-align: justify;
}

/* Info cards (top summary) */
.gs-info-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.gs-info-card {
    flex: 1;
    min-width: 220px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #eee;
    background: var(--card-bg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: transform .25s ease, box-shadow .25s ease;
    text-align: right;
}

    .gs-info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    }

.gs-info-card__img {
    width: 40px;
    display: block;
    margin-bottom: 8px;
}

.gs-info-card__title {
    font-weight: 700;
    margin: 0 0 6px 0;
}

.gs-info-card__text {
    color: #555;
    margin: 0;
    line-height: 1.6rem;
}

/* Hero / banner */
.gs-hero {
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg,#fff7d6,#f4e4b2);
}

.gs-hero__text {
    color: var(--gold);
    font-weight: 700;
    margin: 0;
    line-height: 1.7rem;
}

/* Sections */
.gs-section {
    background: var(--bg);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 1.25rem;
    transition: box-shadow .25s ease;
}

    .gs-section:hover {
        box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    }

.gs-section__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #444;
    margin: 0 0 8px 0;
}

    .gs-section__title img {
        width: 20px;
        opacity: .85;
    }

.gs-section__text {
    margin: 0;
    line-height: 1.9rem;
    color: #333;
    text-align: justify;
}

/* Lists */
.gs-list {
    padding-right: 18px;
    margin: 8px 0 0 0;
}

    .gs-list li {
        margin-bottom: 6px;
        line-height: 1.8rem;
    }

/* Links & small helpers */
.gs-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.gs-strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .gs-info-row {
        gap: 12px;
    }
}

@media (max-width:768px) {
    .gs-info-row {
        flex-direction: column;
    }

    .gs-header__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .gs-card {
        padding: 14px;
    }
}
