/**
 * Home Page Styles
 * MarketMate Homepage specific styles
 */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 30px;
  opacity: 0.9;
}

.description {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
  max-width: 400px;
  margin: 0 auto 50px;
}

/* Beta Button */
.beta-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: jiggle 5s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.beta-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@keyframes jiggle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  2% {
    transform: translateY(-5px) rotate(-2deg);
  }
  4% {
    transform: translateY(-5px) rotate(2deg);
  }
  6% {
    transform: translateY(-5px) rotate(-2deg);
  }
  8% {
    transform: translateY(0) rotate(0deg);
  }
}

/* About Section */
.about {
  background: rgba(255, 255, 255, 0.05);
  padding: 60px 20px;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
}

/* Features Section */
.features {
  background: rgba(0, 0, 0, 0.2);
  padding: 80px 20px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.feature-section {
  margin-bottom: 80px;
}

.feature-section:last-child {
  margin-bottom: 0;
}

.feature-section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: -0.3px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}

/* Responsive - Home Page */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }

  .subtitle {
    font-size: 24px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 16px;
  }

  .features-title {
    font-size: 32px;
  }

  .feature-section-title {
    font-size: 24px;
  }

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