/* ================================
   RetroSuit — Privacy Policy CSS
   ================================ */

/* --------- Root Variables --------- */
:root {
    --bg-dark: #0e0e12;
    --bg-card: #121212;
    --bg-accent: #1f1f27;
    --primary: #4f8cff;
    --secondary: #00d1b2;
    --text-main: #ffffff;
    --text-soft: #e0e0e0;
    --radius: 14px;
    --shadow: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-light: 0 4px 14px rgba(0,0,0,0.3);
    --max-width: 1100px;
    --transition: 0.25s ease;
    --gap-section: 2rem;
    --font-base: "Poppins", sans-serif;
}

/* --------- Base Styles --------- */
body {
    font-family: var(--font-base);
    background: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

h1,h2,h3 {
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1.25rem;
    color: var(--text-main);
}


ul {
    list-style: disc inside;
    margin: 0 0 1.5rem 0;
    padding-left: 1rem;
}

li {
    margin-bottom: 0.75rem;
}

  /* Section */
  section {
    padding: var(--section-gap) 1.5rem;
    max-width: 900px;
    margin: 0 auto;
  }

/* ================================
   Hero Section
   ================================ */
.privacy-hero {
    text-align: center;
    padding: 5rem 1.5rem 4rem;
    background: linear-gradient(140deg, rgba(79,140,255,0.12), transparent 70%);
    border-radius: 40px;
    margin-bottom: var(--gap-section);
}

.privacy-hero h1 {
    font-size: 2.8rem;
}

.privacy-hero p {
    max-width: 700px;
    margin: 2rem auto 0;
    font-size: 1.125rem;
    color: var(--text-soft);
}

/* ================================
   Privacy Section
   ================================ */
.privacy-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto var(--gap-section);
    box-shadow: var(--shadow-light);
}

.privacy-section h2 {
    font-size: 1.75rem;
    margin-top: 1.5rem;
    color: var(--primary);
}

.privacy-section p {
    font-size: 1rem;
}

.privacy-section ul {
    list-style: disc inside;
}

.privacy-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

.privacy-section a:hover {
    color: var(--secondary);
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 0 14px rgba(79,140,255,0.6), 0 0 28px rgba(79,140,255,0.3);
}

/* Ghost-style button */
.btn-ghost {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: #fff;
}

/* ================================
   Responsive Adjustments
   ================================ */
@media (max-width: 900px) {
    .privacy-hero h1 { font-size: 2.4rem; }
    .privacy-hero p { font-size: 1rem; }
    .privacy-section h2 { font-size: 1.55rem; }
}

@media (max-width: 768px) {
    .privacy-section { padding: 2.25rem 1.25rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-columns { flex-direction: column; align-items: center; gap: 1.5rem; }
    .footer-right { flex: unset; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
}
