/* SEEG Style Directory */
/* Clean, professional directory for previewing funnel styles */

:root {
  --bg-dark: #0a0f1a;
  --bg-card: #12182a;
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --accent-teal: #14b8a6;
  --accent-gold: #d4a853;
  --border-subtle: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.directory-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.directory-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo span {
  color: var(--accent-teal);
}

.tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border-subtle);
}

/* Hero */
.directory-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.directory-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.directory-hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Styles Section */
.styles-section {
  padding: 40px 0 80px;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* Style Card */
.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.style-card.coming-soon {
  opacity: 0.6;
}

.style-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

/* Style Preview */
.style-preview {
  position: relative;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.style-a-preview {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f172a 100%);
}

.style-b-preview {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.style-a-alt-preview {
  background: linear-gradient(135deg, #0a0f1a 0%, #1a1a2e 100%);
  border: 2px solid #14b8a6;
}

.style-c-preview {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  border-left: 4px solid #dae13f;
}

.style-d-preview {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-bottom: 4px solid #33b47b;
}

.style-d-preview .preview-label,
.style-d-preview .preview-badge {
  color: #1f2937;
}

.style-d-preview .preview-badge {
  background: rgba(0, 0, 0, 0.1);
}

.preview-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-content {
  text-align: center;
}

.preview-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.style-b-preview .preview-label {
  color: #1f2937;
}

/* Style Info */
.style-info {
  padding: 24px;
}

.style-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.style-info p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Tags */
.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  background: var(--accent-teal);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #0d9488;
  transform: translateY(-1px);
}

.btn-disabled {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: not-allowed;
}

/* Page Links */
.page-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.page-links a {
  font-size: 0.875rem;
  color: var(--accent-teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-links a:hover {
  color: #5eead4;
  text-decoration: underline;
}

.page-links.disabled span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Footer */
.directory-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.directory-footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .styles-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .directory-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .directory-header .container {
    flex-direction: column;
    gap: 8px;
  }

  .tagline {
    padding-left: 0;
    border-left: none;
  }

  .directory-hero {
    padding: 40px 0 24px;
  }

  .directory-hero h1 {
    font-size: 1.75rem;
  }

  .directory-hero p {
    font-size: 1rem;
  }
}
