/*
Theme Name: LinkForge
Theme URI: https://reopinion.com/linkforge
Author: Reopinion Media / Custom for high-authority link services
Author URI: https://reopinion.com
Description: A complete, conversion-optimized WordPress theme for professional link building agencies and SEO service providers. Features fully functional lead capture, order management system (CPT), client order tracking, and a powerful Backlink Opportunity Scanner tool. Designed for ethical, high-quality DA 20+ contextual backlink campaigns through managed outreach and verified placements. Modern Tailwind UI, fast, mobile-first, and SEO-ready.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: linkforge
Tags: seo, backlinks, link-building, agency, business, landing-page, dark-mode
*/

/* Base custom styles - Tailwind handles most via CDN */
:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --accent: #10b981;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Smooth scroll & nice defaults */
html {
  scroll-behavior: smooth;
}

/* Custom components */
.linkforge-card {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.linkforge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.modal {
  animation: modalPop 0.2s ease-out forwards;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Order status badges */
.status-badge {
  font-size: 0.75rem;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  font-weight: 600;
}

.status-pending { background-color: #fef3c7; color: #92400e; }
.status-processing { background-color: #dbeafe; color: #1e40af; }
.status-completed { background-color: #d1fae5; color: #065f46; }
.status-cancelled { background-color: #fee2e2; color: #991b1b; }

/* Scanner results */
.opportunity-item {
  transition: all 0.2s ease;
}

.opportunity-item:hover {
  background-color: #f8fafc;
  transform: translateX(4px);
}

/* Form styles */
.linkforge-form input, .linkforge-form select, .linkforge-form textarea {
  transition: all 0.2s ease;
}

.linkforge-form input:focus, .linkforge-form select:focus, .linkforge-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Navbar */
.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.25rem !important;
    line-height: 1.1 !important;
  }
}