/* ============================================
   LearnAndEarn Landing Page - Two Paths Design
   ============================================ */

/* Top Bar (for non-logged-in users) */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-bar-logo a {
  font-size: 1.5em;
  font-weight: 700;
  color: #667eea;
  text-decoration: none;
}

.top-bar-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-bar-link {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.top-bar-link:first-child {
  color: #667eea;
  background: transparent;
}

.top-bar-link:first-child:hover {
  background: #f0f2ff;
}

.top-bar-partner {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.top-bar-partner:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* ============================================
   Two Paths Hero Section
   ============================================ */
.hero-two-paths {
  padding: 60px 20px 80px;
}

.hero-two-paths h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.3em;
  opacity: 0.9;
  margin-bottom: 50px;
}

.two-paths-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Path Cards */
.path-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.path-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.path-icon {
  margin-bottom: 20px;
}

.path-emoji {
  font-size: 4em;
  display: block;
}

.path-card h2 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: white;
  line-height: 1.3;
}

.path-card h2 strong {
  font-size: 1.3em;
  display: block;
}

.path-tagline {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.5;
}

.path-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}

.path-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95em;
}

.path-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

.path-cta {
  margin-top: 20px;
}

.path-button {
  display: inline-block;
  padding: 14px 35px;
  background: #28a745;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.2s ease;
}

.path-card:hover .path-button {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
}

.path-button-partner {
  background: white;
  color: #764ba2;
}

.path-card:hover .path-button-partner {
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Student path - green accent */
.path-student {
  border-color: rgba(74, 222, 128, 0.3);
}

.path-student:hover {
  border-color: rgba(74, 222, 128, 0.5);
}

/* Partner path - white accent */
.path-partner {
  border-color: rgba(255, 255, 255, 0.3);
}

.path-partner:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Partner Highlight Section (Velvet Rope)
   ============================================ */
.partner-highlight-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.partner-highlight-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.partner-highlight-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.partner-highlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.partner-highlight-content h2 {
  font-size: 2.5em;
  margin: 0 0 15px 0;
  position: relative;
  z-index: 1;
}

.partner-highlight-tagline {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.partner-highlight-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 800px;
  margin: 0 auto 35px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.highlight-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.highlight-feature:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
}

.highlight-check {
  color: #4ade80;
  font-size: 1.2em;
  font-weight: bold;
}

.partner-highlight-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.partner-highlight-cta .cta-button {
  padding: 15px 35px;
}

.partner-highlight-cta .cta-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.partner-highlight-cta .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Logged-in Partner State */
.partner-logged-in {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.partner-logged-in h2 {
  font-size: 2em;
}

/* ============================================
   Footer
   ============================================ */
.landing-footer {
  background: #1a1a2e;
  color: white;
  padding: 40px 20px;
  margin-top: 60px;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
  margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .top-bar-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-two-paths h1 {
    font-size: 2.2em;
  }

  .hero-subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .two-paths-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .path-card {
    padding: 30px 25px;
  }

  .path-emoji {
    font-size: 3em;
  }

  .path-card h2 {
    font-size: 1.2em;
  }

  .partner-highlight-content {
    padding: 40px 25px;
  }

  .partner-highlight-content h2 {
    font-size: 1.8em;
  }

  .partner-highlight-tagline {
    font-size: 1.1em;
  }

  .partner-highlight-features {
    grid-template-columns: 1fr;
  }

  .partner-highlight-cta {
    flex-direction: column;
    align-items: center;
  }

  .partner-highlight-cta .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-two-paths {
    padding: 40px 15px 60px;
  }

  .hero-two-paths h1 {
    font-size: 1.8em;
  }

  .path-card {
    padding: 25px 20px;
  }

  .path-features li {
    font-size: 0.9em;
  }

  .path-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}
