/* Landing Page Styles - Independent from Portal CSS */

/* Reset and base styles for landing page */
.landing-page {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: #333;
  background: transparent;
}

/* Hide portal navigation and menu for landing page */
.landing-page .portal-navbar,
.landing-page .portal-menu,
.landing-page .menu-overlay {
  display: none !important;
}

/* Reset portal wrapper layout for landing page */
.landing-page .portal-wrapper {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.landing-page .portal-wrapper.menu-collapsed {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.landing-page .portal-main {
  margin-left: 0 !important;
  padding: 0 !important;
  min-height: 100vh !important;
  background: transparent !important;
  width: 100% !important;
}

/* ===== MODERN LANDING PAGE STYLES ===== */
.testing-page-wrapper {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.testing-page-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 1;
  z-index: 1;
}

.testing-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 60px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== HEADER SECTION ===== */
.testing-header {
  margin-bottom: 30px;
}

.testing-logo {
  max-width: 300px;
  max-height: 120px;
  margin-bottom: 40px;
  border-radius: 16px;
  object-fit: contain;
}

  .testing-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 30px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .testing-subtitle {
    font-size: 1.8rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
  }

/* ===== TESTING DESCRIPTION ===== */
.testing-description {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 20px;
  padding: 60px 50px;
  margin: 50px 0;
  border: 1px solid #e2e8f0;
}

  .testing-description h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 30px 0;
    line-height: 1.2;
  }

  .testing-description p {
    font-size: 1.6rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
  }

/* ===== WIDGET TESTING AREA ===== */
.widget-testing-area {
  background: #ffffff;
  border: 3px dashed #cbd5e0;
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  transition: all 0.3s ease;
}

.widget-testing-area:hover {
  border-color: #4299e1;
  background: #f7fafc;
}

  .widget-instructions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 1.5rem;
    color: #4a5568;
    margin: 0;
    font-weight: 500;
  }

.widget-instructions i {
  color: #4299e1;
  font-size: 1.6rem;
}

/* ===== FEATURES GRID ===== */
.testing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  background: #f7fafc;
  transform: translateY(-2px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.feature-icon i {
  color: #ffffff;
  font-size: 2rem;
}

  .feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .feature-description {
    font-size: 1.3rem;
    color: #718096;
    line-height: 1.5;
    font-weight: 400;
  }

/* ===== FOOTER ===== */
.testing-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.footer-logo i {
  color: #ffffff;
  font-size: 1.5rem;
}

.testing-footer p {
  color: #4a5568;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.footer-tagline {
  color: #718096;
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 1200px) {
    .testing-content {
      padding: 60px 40px;
    }
    
    .testing-title {
      font-size: 3.2rem;
    }
    
    .testing-subtitle {
      font-size: 1.5rem;
    }
    
    .testing-description {
      padding: 50px 40px;
    }
    
    .testing-description h3 {
      font-size: 2.2rem;
    }
    
    .testing-description p {
      font-size: 1.4rem;
    }
    
    .feature-title {
      font-size: 1.6rem;
    }
    
    .feature-description {
      font-size: 1.2rem;
    }
  }

  @media (max-width: 768px) {
    .testing-page-wrapper {
      padding: 20px 15px;
    }

    .testing-content {
      padding: 40px 25px;
    }

    .testing-title {
      font-size: 2.8rem;
    }

    .testing-subtitle {
      font-size: 1.3rem;
    }

    .testing-description {
      padding: 40px 25px;
    }

    .testing-description h3 {
      font-size: 1.8rem;
    }

    .testing-description p {
      font-size: 1.2rem;
    }

    .testing-features {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .feature-card {
      padding: 40px 25px;
    }

    .feature-title {
      font-size: 1.5rem;
    }

    .feature-description {
      font-size: 1.1rem;
    }
    
    .widget-instructions {
      font-size: 1.3rem;
    }
    
    .testing-footer p {
      font-size: 1.1rem;
    }
    
    .footer-tagline {
      font-size: 0.9rem;
    }
  }

@media (max-width: 480px) {
  .testing-content {
    padding: 30px 20px;
  }

  .testing-title {
    font-size: 2.2rem;
  }

  .testing-subtitle {
    font-size: 1.1rem;
  }

  .testing-description {
    padding: 30px 20px;
  }

  .testing-description h3 {
    font-size: 1.5rem;
  }

  .testing-description p {
    font-size: 1rem;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }
  
  .widget-instructions {
    font-size: 1.1rem;
  }
  
  .testing-footer p {
    font-size: 0.95rem;
  }
  
  .footer-tagline {
    font-size: 0.85rem;
  }
}

/* Print styles */
@media print {
  .testing-page-wrapper {
    background: white !important;
  }
  
  .testing-title,
  .testing-subtitle {
    color: #333 !important;
  }
  
  .testing-description,
  .feature-card {
    background: white !important;
    border: 1px solid #ddd !important;
  }
  
  .widget-testing-area {
    display: none !important;
  }
} 