/* Light Theme - CamGirlPromotions.com */

/* CSS Variables - Light Theme */
:root {
  --bg: #fafbfc;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f8f9fa;
  --line: #e2e8f0;
  --ink: #1a202c;
  --ink-soft: #64748b;
  --brand: #ec4899;
  --brand-2: #f97316;
  --brand-3: #8b5cf6;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
  background-image: 
    radial-gradient(ellipse at 20% 0%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

/* Age Gate - Light */
.age-gate {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

.age-gate-card {
  background: linear-gradient(165deg, #ffffff, #f8f9fa);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.age-kicker {
  color: var(--brand);
}

.age-actions .btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

/* Header - Light */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.brand {
  color: var(--ink);
}

.desktop-nav a {
  color: var(--ink-soft);
}

.desktop-nav a:hover {
  color: var(--brand);
}

/* Hero Section */
.hero-grid {
  position: relative;
}

.hero-copy h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy p {
  color: var(--ink-soft);
  font-size: 1.25rem;
}

.hero-badges li {
  background: white;
  border-color: var(--line);
  color: var(--ink-soft);
}

.hero-visual {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
  overflow: hidden;
}

.hero-visual img {
  border-radius: 24px;
}

/* Deal Cards - Light Theme */
.deal-grid {
  gap: 1.5rem;
}

.deal-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand);
}

.deal-image {
  border-radius: 0;
  border: none;
  aspect-ratio: 16/10;
}

.deal-card h3 {
  padding: 1.25rem 1rem 0.25rem;
  margin: 0;
  font-size: 1.4rem;
}

.deal-fit {
  padding: 0 1rem;
  color: var(--brand) !important;
  font-size: 0.95rem;
}

.deal-card ul {
  padding: 0.5rem 1rem 1rem 2rem;
  color: var(--ink-soft);
}

.deal-card .btn {
  margin: 0 1rem 1rem;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 12px;
}

/* Comparison Table */
.quick-finder {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.quick-finder h2 {
  color: var(--ink);
}

.comparison-table {
  background: var(--surface-2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.comparison-table th {
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
}

.comparison-table td {
  color: var(--ink-soft);
  border-color: var(--line);
}

/* Featured Section */
.featured-spotlight {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 50%, #fff7ed 100%);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid #fed7d7;
}

.featured-spotlight h3 {
  color: var(--brand);
}

/* Footer - Light */
.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.site-footer a {
  color: var(--ink-soft);
}

.site-footer a:hover {
  color: var(--brand);
}

/* Buttons */
.btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
  border-radius: 12px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-copy h1 {
    font-size: 2.5rem;
  }
  
  .deal-grid {
    grid-template-columns: 1fr;
  }
}

/* Age Gate Button Styles */
.age-gate-card .btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
}

.age-gate-card .btn.age-ghost {
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--line);
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* Quiz section */
.quiz-section {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* FAQ */
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.faq-item summary {
  padding: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.faq-item[open] summary {
  color: var(--brand);
}
