/* ============================================
   HustleProject.org - Styles
   Dark theme with gold accents
   ============================================ */

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

:root {
  --primary-bg: #1a1a2e;
  --secondary-bg: #16213e;
  --accent-color: #0f3460;
  --gold: #FFD700;
  --gold-alt: #FFA500;
  --green: #2E7D32;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --border-color: #2d3561;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-alt);
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
  background-color: var(--secondary-bg);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-light);
}

.logo svg {
  width: 60px;
  height: 60px;
  transition: var(--transition);
}

.logo:hover svg {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-alt));
  transition: var(--transition);
}

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

.nav-links a:hover {
  color: var(--gold);
}

.cta-button {
  background: linear-gradient(135deg, var(--gold), var(--gold-alt));
  color: var(--primary-bg) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  color: var(--primary-bg) !important;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--secondary-bg);
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-container {
    padding: 0 1rem;
  }
}

/* ============================================
   CONTAINERS & SECTIONS
   ============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  background: linear-gradient(135deg, var(--gold), var(--gold-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--accent-color) 100%);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero:after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-alt));
  color: var(--primary-bg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--primary-bg);
  transform: translateY(-3px);
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-alt));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
  transform: translateY(-5px);
}

.card:hover:before {
  transform: scaleX(1);
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-category {
  color: var(--gold);
  font-weight: 600;
}

.article-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* ============================================
   FEATURED SECTION
   ============================================ */

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.featured-main {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-bg));
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.featured-main:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.featured-main h3 {
  position: relative;
  z-index: 1;
  color: var(--gold);
  margin-bottom: 1rem;
}

.featured-main p {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.featured-main .btn {
  position: relative;
  z-index: 1;
}

.featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.featured-item {
  background: var(--secondary-bg);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */

.newsletter-section {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-bg));
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
}

.newsletter-section h3 {
  margin-bottom: 1rem;
}

.newsletter-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px var(--gold);
}

.newsletter-form .btn {
  flex: 1;
  min-width: 150px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.testimonial-title {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.sidebar-widget h4 {
  margin-bottom: 1rem;
  color: var(--gold);
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-widget li:last-child {
  border-bottom: none;
}

.sidebar-widget a {
  display: block;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.95rem;
}

.sidebar-widget a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--gold);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-muted);
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ============================================
   AFFILIATE DISCLOSURE
   ============================================ */

.affiliate-disclosure {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   MONETIZATION ELEMENTS (marked for easy finding)
   ============================================ */

/* Google AdSense placeholder */
.adsense-placeholder {
  background: var(--accent-color);
  border: 2px dashed var(--gold);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  margin: 2rem 0;
  font-size: 0.9rem;
}

.adsense-placeholder:before {
  content: '📍 ';
  color: var(--gold);
}

/* Affiliate button */
.affiliate-btn {
  background: linear-gradient(135deg, var(--green), #1B5E20);
  color: var(--text-light) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.affiliate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

/* Product card for shop */
.product-card {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 200px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-info {
  padding: 1.5rem;
}

.product-info h4 {
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Membership comparison */
.pricing-card {
  background: var(--secondary-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.05);
}

.pricing-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.pricing-tier {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Tool comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--secondary-bg);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table th {
  background: var(--accent-color);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:hover {
  background: rgba(255, 215, 0, 0.05);
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--accent-color);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--gold);
}

.breadcrumbs span {
  color: var(--gold);
}

/* Category filter */
.category-filter {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-light);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

/* Coaching booking section */
.booking-section {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-bg));
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
}

.booking-section h3 {
  margin-bottom: 1rem;
  color: var(--gold);
}

.booking-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Social links */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-bg);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  text-decoration: none;
  color: var(--gold);
}

.social-link:hover {
  background: var(--gold);
  color: var(--primary-bg);
  transform: translateY(-3px);
}

/* Donation button */
.donation-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-alt));
  color: var(--primary-bg) !important;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
  font-size: 1rem;
}

.donation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.opacity-75 {
  opacity: 0.75;
}

/* ============================================
   SOCIAL MEDIA LINKS
   ============================================ */

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--primary-bg);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
