/* OnlyFanOuts — Home Page (index.php) */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--purple-500) 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
}
.hero .container {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 16px; font-weight: 700; color: white; }
.hero p { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin: 0 auto 24px; color: white; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Hero buttons override base .btn for the landing page context */
.hero .btn {
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero .btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
.hero .btn-primary { background: white; color: var(--blue-500); }
.hero .btn-secondary { background: rgba(255, 255, 255, 0.15); color: white; border: 1px solid rgba(255, 255, 255, 0.3); }

/* Features Grid */
.features { padding: 40px 0; }
.features h2 { text-align: center; font-size: 1.75rem; margin-bottom: 32px; color: var(--gray-900); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }
.feature-card h3 { font-size: 1.125rem; margin-bottom: 8px; color: var(--gray-900); }
.feature-card p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 16px; }
.feature-card a { color: var(--blue-500); text-decoration: none; font-weight: 500; }
.feature-card a:hover { text-decoration: underline; }
.feature-icon { font-size: 2rem; margin-bottom: 12px; }

/* Quick Links */
.quick-links { padding: 40px 0; background: white; border: 1px solid var(--gray-200); margin-top: 40px; border-radius: 12px; }
.quick-links h2 { text-align: center; font-size: 1.5rem; margin-bottom: 24px; }
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--gray-700);
  transition: background 0.2s;
}
.link-item:hover { background: var(--gray-100); text-decoration: none; }
.link-item span { font-size: 1.25rem; }

/* Footer */
.home-footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-400);
  font-size: 0.875rem;
}
.home-footer a { color: var(--gray-500); }

/* Login prompt */
.login-prompt {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  text-align: center;
  margin-bottom: 24px;
}
.login-prompt a { color: #92400e; font-weight: 600; }
