/* ===================================
   Home Page Styling
   =================================== */

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  color: white;
  overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* ===== HERO SECTION ===== */
.hero-section {
  margin-bottom: 80px;
  position: relative;
}

.hero-badge {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  color: #1e293b;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1em;
  display: inline-block;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
  animation: slideInDown 1s ease-out;
}

.logo {
  font-size: 5em;
  margin-bottom: 30px;
  display: block;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title {
  font-size: 4em;
  margin-bottom: 30px;
  font-weight: 800;
  background: linear-gradient(45deg, #ffffff, #fbbf24, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-feature-icon {
  font-size: 1.3em;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== STATUS ===== */
.status {
  background: rgba(34, 197, 94, 0.2);
  border: 2px solid rgba(34, 197, 94, 0.4);
  padding: 20px 30px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
  animation: pulse 2s infinite;
}

.status-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 15px;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

.feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature:hover::before {
  left: 100%;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  font-size: 3em;
  margin-bottom: 20px;
  display: block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.feature-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fbbf24;
}

.feature-desc {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 1.1em;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  margin: 60px 0;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5em;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1em;
  opacity: 0.9;
  font-weight: 500;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  margin-top: 60px;
}

.btn {
  display: inline-block;
  padding: 18px 35px;
  margin: 0 15px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ff5252, #26a69a);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 80px;
  opacity: 0.8;
  font-size: 1em;
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.tech-stack {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float-particle 8s infinite linear;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .logo { font-size: 3em; }
  .title { font-size: 2.5em; }
  .subtitle { font-size: 1.2em; }
  .features { grid-template-columns: 1fr; }
  .btn { 
    display: block; 
    margin: 15px auto; 
    max-width: 250px; 
  }
  .stats-grid { grid-template-columns: 1fr; }
} 