/*
Theme Name: LoviGroup
Theme URI: https://lovigroup.ca
Author: LoviGroup
Author URI: https://lovigroup.ca
Description: Custom theme for LoviGroup - Talent Management, Development & Business Content Creation
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lovigroup
Domain Path: /languages
*/

/* ============================================
   LOVIGROUP â Global Stylesheet
   WordPress-compatible: use as custom CSS or
   enqueue via functions.php
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
  --lovi-purple: #845EC2;
  --lovi-pink: #D65DB1;
  --lovi-coral: #FF6F91;
  --lovi-orange: #FF9671;
  --lovi-yellow: #FFC75F;
  --lovi-lemon: #F9F871;
  --lovi-bg: #F5F0FF;
  --lovi-dark: #1A1025;
  --lovi-text: #2D2A32;
  --lovi-text-light: rgba(45, 42, 50, 0.6);
  --lovi-gradient: linear-gradient(90deg, #845EC2, #D65DB1, #FF6F91, #FF9671);
  --lovi-gradient-full: linear-gradient(90deg, #845EC2, #D65DB1, #FF6F91, #FF9671, #FFC75F);
  --lovi-radius: 16px;
  --lovi-radius-lg: 24px;
  --lovi-radius-pill: 100px;
  --lovi-shadow: 0 4px 24px rgba(132, 94, 194, 0.1);
  --lovi-shadow-hover: 0 8px 40px rgba(132, 94, 194, 0.18);
  --lovi-font: 'Nunito', 'Poppins', 'Inter', -apple-system, sans-serif;
  --lovi-max-width: 1200px;
  --lovi-section-padding: 100px 0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--lovi-font);
  color: var(--lovi-text);
  background: var(--lovi-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--lovi-purple); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--lovi-coral); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--lovi-max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-weight: 900; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
p { font-size: 1.05rem; max-width: 680px; }

.text-gradient {
  background: var(--lovi-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--lovi-purple); opacity: 0.6; margin-bottom: 12px;
}
.gradient-bar { height: 4px; border-radius: 2px; background: var(--lovi-gradient); width: 80px; margin: 20px 0; }
.gradient-bar-full { height: 6px; background: var(--lovi-gradient-full); width: 100%; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: var(--lovi-radius-pill); font-family: var(--lovi-font);
  font-size: 1rem; font-weight: 700; cursor: pointer; border: none; transition: all 0.3s ease;
}
.btn-primary {
  background: var(--lovi-gradient); color: #fff;
  box-shadow: 0 4px 16px rgba(132, 94, 194, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(132, 94, 194, 0.4); color: #fff; }
.btn-outline { background: transparent; color: var(--lovi-purple); border: 2px solid var(--lovi-purple); }
.btn-outline:hover { background: var(--lovi-purple); color: #fff; }
.btn-white { background: #fff; color: var(--lovi-purple); box-shadow: var(--lovi-shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--lovi-shadow-hover); color: var(--lovi-purple); }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245, 240, 255, 0.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(132, 94, 194, 0.08); padding: 16px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--lovi-max-width); margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: baseline; gap: 2px; font-size: 1.6rem; font-weight: 900; }
.nav-logo .l { color: var(--lovi-purple); }
.nav-logo .o { color: var(--lovi-pink); }
.nav-logo .v { color: var(--lovi-coral); }
.nav-logo .i { color: var(--lovi-orange); }
.nav-logo .group { font-size: 0.75rem; font-weight: 500; letter-spacing: 4px; color: var(--lovi-purple); opacity: 0.45; margin-left: 4px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--lovi-text); opacity: 0.7; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--lovi-purple); }
.nav-cta { padding: 10px 24px; font-size: 0.9rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--lovi-text); margin: 6px 0; border-radius: 2px; transition: 0.3s; }

/* Hero */
.hero { padding: 160px 0 100px; text-align: center; position: relative; overflow: hidden; }
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.2rem; color: var(--lovi-text-light); margin: 0 auto 36px; max-width: 560px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.confetti { position: absolute; border-radius: 50%; opacity: 0.3; pointer-events: none; }
.confetti-1 { width: 14px; height: 14px; background: var(--lovi-yellow); top: 15%; left: 8%; }
.confetti-2 { width: 10px; height: 10px; background: var(--lovi-purple); top: 25%; right: 12%; border-radius: 4px; transform: rotate(15deg); }
.confetti-3 { width: 12px; height: 12px; background: var(--lovi-coral); bottom: 20%; left: 15%; }
.confetti-4 { width: 8px; height: 8px; background: var(--lovi-pink); bottom: 30%; right: 8%; border-radius: 3px; transform: rotate(-10deg); }
.confetti-5 { width: 16px; height: 16px; background: var(--lovi-orange); top: 40%; left: 5%; opacity: 0.2; }

/* Sections */
.section { padding: var(--lovi-section-padding); }
.section-white { background: #fff; }
.section-dark { background: var(--lovi-dark); color: #fff; }
.section-dark .section-label { color: var(--lovi-yellow); opacity: 0.8; }
.section-dark p { color: rgba(255,255,255,0.65); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { margin: 12px auto 0; color: var(--lovi-text-light); }

/* Card Grid */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.card {
  background: #fff; border-radius: var(--lovi-radius-lg); padding: 40px 32px;
  box-shadow: var(--lovi-shadow); transition: all 0.3s ease; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--lovi-shadow-hover); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--lovi-gradient); opacity: 0; transition: opacity 0.3s;
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; color: #fff;
}
.card-icon-purple { background: var(--lovi-purple); }
.card-icon-pink { background: var(--lovi-pink); }
.card-icon-coral { background: var(--lovi-coral); }
.card-icon-orange { background: var(--lovi-orange); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.95rem; color: var(--lovi-text-light); }

/* Talent Grid */
.talent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.talent-card { background: #fff; border-radius: var(--lovi-radius-lg); overflow: hidden; box-shadow: var(--lovi-shadow); transition: all 0.3s ease; }
.talent-card:hover { transform: translateY(-4px); box-shadow: var(--lovi-shadow-hover); }
.talent-img {
  width: 100%; height: 320px; background: linear-gradient(135deg, var(--lovi-purple), var(--lovi-pink));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 3rem; font-weight: 900;
}
.talent-info { padding: 24px; }
.talent-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.talent-info .talent-handle { font-size: 0.9rem; color: var(--lovi-purple); font-weight: 600; opacity: 0.7; }
.talent-info .talent-stats { display: flex; gap: 16px; margin-top: 12px; font-size: 0.8rem; color: var(--lovi-text-light); }
.talent-info .talent-stats span { font-weight: 700; color: var(--lovi-text); }

/* Stats Row */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; text-align: center; padding: 60px 0; }
.stat-item h2 { font-size: 2.8rem; margin-bottom: 4px; }
.stat-item p { font-size: 0.95rem; opacity: 0.6; }

/* Feature Split */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-visual {
  background: linear-gradient(135deg, rgba(132,94,194,0.08), rgba(214,93,177,0.08));
  border-radius: var(--lovi-radius-lg); padding: 60px;
  display: flex; align-items: center; justify-content: center; min-height: 360px; position: relative;
}

/* Testimonial */
.testimonial { background: #fff; border-radius: var(--lovi-radius-lg); padding: 48px; box-shadow: var(--lovi-shadow); position: relative; }
.testimonial::before { content: '\201C'; font-size: 5rem; font-weight: 900; color: var(--lovi-purple); opacity: 0.1; position: absolute; top: 16px; left: 32px; line-height: 1; }
.testimonial p { font-size: 1.15rem; font-style: italic; margin-bottom: 20px; }
.testimonial-author { font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.85rem; color: var(--lovi-text-light); }

/* CTA Banner */
.cta-banner { background: var(--lovi-gradient); border-radius: var(--lovi-radius-lg); padding: 60px; text-align: center; color: #fff; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0 auto 28px; }

/* Footer */
.footer { background: var(--lovi-dark); color: rgba(255,255,255,0.6); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 300px; }
.footer h4 { color: #fff; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; color: var(--lovi-text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 2px solid rgba(132, 94, 194, 0.15);
  border-radius: 12px; font-family: var(--lovi-font); font-size: 1rem; background: #fff; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--lovi-purple); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(245, 240, 255, 0.98); padding: 24px; gap: 16px;
    border-bottom: 1px solid rgba(132,94,194,0.1);
  }
  .feature-split { grid-template-columns: 1fr; gap: 32px; }
  .feature-split.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 130px 0 60px; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
