/* Genesis Sports Management Privacy Policy Styles */

/* SCSS Variables */
:root {
  /* Genesis Color Palette */
  --primary-light: #41748D;
  --primary-light1: #AFC5D0;
  --primary-light2: #E7EEF1;
  --error-notify: #EA4651;
  --text-white: #FFFFFF;
  --text-light: #424242;
  --border-color: #CED4DA;
  
  /* Dark Theme Colors */
  --bg: #0f172a;
  --panel: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #41748D;
  --border: #1f2937;
  --link: #AFC5D0;
  
  /* Typography */
  --font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, sans-serif;
  --font-size-large: clamp(28px, 4vw, 40px);
  --font-size-medium: 1em;
  --font-size-normal: 0.95em;
  --font-size-small: 0.85em;
  
  /* Spacing */
  --spacing-large: 40px;
  --spacing-medium: 30px;
  --spacing-normal: 20px;
  --spacing-small: 15px;
  --spacing-xs: 10px;
  
  /* Layout */
  --container-max-width: 900px;
  --border-radius: 18px;
  --border-radius-small: 12px;
  
  /* Shadows */
  --box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background: linear-gradient(180deg, #0b1220, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 24px 20px 80px;
}

/* Header Section */
header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
}

header h1 {
  font-size: var(--font-size-large);
  margin: 12px 0 8px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

/* Panel/Card Styles */
.panel {
  background: radial-gradient(1200px 600px at 50% -200px, rgba(65,116,141,.08), transparent 50%), var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 22px;
  margin: 16px 0 24px;
  box-shadow: var(--box-shadow);
}

/* Typography */
h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin: 18px 0 8px;
  letter-spacing: -.01em;
  color: #f3f4f6;
}

h3 {
  color: var(--text);
  margin-top: var(--spacing-small);
  margin-bottom: 8px;
  font-size: 1.1em;
  font-weight: 500;
}

p, li {
  font-size: 16px;
  color: var(--text);
  margin-bottom: var(--spacing-small);
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px dashed rgba(175,197,208,.5);
}

a:hover {
  border-bottom-style: solid;
}

/* Callout Styles */
.callout {
  border-left: 3px solid var(--accent);
  padding: 12px 14px;
  margin: 18px 0;
  background: rgba(65,116,141,.06);
  color: var(--text);
  border-radius: var(--border-radius-small);
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Section Numbers */
.section-number {
  font-weight: bold;
  color: var(--accent);
}

/* Footer */
footer {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.nowrap {
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px 16px 60px;
  }
  
  .panel {
    padding: 18px;
    margin: 12px 0 20px;
  }
  
  h2 {
    font-size: 20px;
    margin: 16px 0 6px;
  }
  
  h3 {
    font-size: 1em;
    margin-top: var(--spacing-xs);
  }
  
  p, li {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

/* Print Styles */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  
  .panel {
    background: white !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
  
  h1, h2, h3, p, li {
    color: black !important;
  }
}
