/* ============================================
   KARTA KLIENTA - SHARED DARK THEME
   Używane przez: kontakt, o-nas, regulamin, polityka
   ============================================ */

:root {
    --gold:        #c9a84c;
    --gold-light:  #e8c97a;
    --gold-dim:    rgba(201,168,76,.12);
    --gold-border: rgba(201,168,76,.22);
    --bg:          #111010;
    --surface:     #191714;
    --card:        #201e1a;
    --border:      rgba(201,168,76,.15);
    --text:        #e8d9c0;
    --muted:       rgba(232,217,192,.55);
    --success:     #6fcf97;
    --error:       #eb5757;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    font-size: 1rem;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

strong { color: var(--text); font-weight: 600; }

/* ── NAVIGATION ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(17,16,16,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: .85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo img { display:block; width:180px; }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .25rem;
    flex-wrap: wrap;
}

.nav-links li a {
    color: var(--muted);
    font-size: .85rem;
    font-weight: 500;
    padding: .4rem .7rem;
    border-radius: 6px;
    transition: color .2s, background .2s;
}

.nav-links li a:hover { color: var(--text); background: var(--gold-dim); }
.nav-links li a.active { color: var(--gold); }

.nav-links .btn-outline {
    color: var(--gold) !important;
    border: 1px solid var(--gold-border) !important;
    border-radius: 8px;
    padding: .4rem 1rem !important;
}
.nav-links .btn-outline:hover {
    background: var(--gold-dim) !important;
}

/* ── HERO ── */
.hero {
    padding: 5rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.08) 0%, transparent 70%);
    border-bottom: 1px solid var(--border);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
}

/* ── SECTIONS ── */
.section { padding: 4rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin-bottom: .75rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

/* ── CARDS ── */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: border-color .2s, box-shadow .2s;
}

.card:hover {
    border-color: rgba(201,168,76,.35);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

/* ── STATS BAR ── */
.stats-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 2rem;
}

.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .35rem;
}

.stat-label { font-size: .85rem; color: var(--muted); }

/* ── CTA SECTION ── */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
    border-top: 1px solid var(--border);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.cta-section p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }

.btn-gold {
    display: inline-block;
    padding: .85rem 2.5rem;
    background: linear-gradient(135deg, #c9a84c, #a8873a);
    color: #111 !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.35);
    color: #111 !important;
}

/* ── FOOTER ── */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3.5rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: .5rem; }
.footer-section ul li a { color: var(--muted); font-size: .9rem; }
.footer-section ul li a:hover { color: var(--gold); }
.footer-section ul li span { color: var(--muted); font-size: .9rem; }

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
    font-size: .85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 3rem 1.25rem 2.5rem; }
    .section { padding: 2.5rem 1.25rem; }
    .stats-section { padding: 2rem 1.25rem; }
    .cta-section { padding: 3rem 1.25rem; }
    footer { padding: 2.5rem 1.25rem 1.5rem; }
}
