/*
 * Hero section and landing page styles
 */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  max-width: 600px;
  margin: 0 auto;
}

.user-type-selection {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-type-selection h2 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.button-group {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.button-group .btn-large {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-group .btn-large:active {
  transform: translateY(-1px) scale(0.98);
}

/* Special styling for sign up buttons - matching login button style */
.button-group .btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.button-group .btn-primary:hover {
  background: white;
  color: #1f2937;
  border-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.button-group .btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.button-group .btn-secondary:hover {
  background: white;
  color: #1f2937;
  border-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.login-section {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 2rem;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.login-section p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.login-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Mobile responsiveness for hero section */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .user-type-selection {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .user-type-selection h2 {
    font-size: 1.4rem;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .button-group .btn-large {
    min-width: 250px;
    padding: 18px 32px;
    font-size: 1.1rem;
  }

  .login-section {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .login-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
