/* ===== HOME PAGE STYLES ===== */

/* Hero Section */
.hero-section {
  padding: 5rem 2rem;
  background: transparent;
  color: white;
  text-align: center;
  position: relative;
  overflow: visible;
  z-index: 10;
}



.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 20;
  color: #0f172a;
}

.hero-highlight {
  background: linear-gradient(120deg, #60a5fa, #a78bfa) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-secondary {
  background: white;
  color: #1e293b;
  border-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #f1f5f9;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #60a5fa;
  color: #60a5fa;
}

/* Categories Section */
.categories-section {
  padding: 5rem 2rem;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  background: linear-gradient(135deg, #f0f7ff 0%, #eff6ff 100%);
}

.category-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.category-card p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.category-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
}

.category-link:hover {
  color: #2563eb;
  gap: 0.5rem;
}

/* Tools Section */
.tools-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
}

.tools-container {
  max-width: 1000px;
  margin: 0 auto;
}

.tools-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-accent {
  background: linear-gradient(120deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.tool-card {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  align-items: center;
  transition: all 0.3s ease;
}

.tool-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.tool-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 12px;
  border: 2px solid #cffafe;
}

.tool-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.tool-details {
  flex-grow: 1;
}

.tool-details h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}

.tool-details p {
  color: #64748b;
  margin: 0;
  font-size: 1rem;
}

.tool-action {
  flex-shrink: 0;
}

/* Developers Section */
.developers-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
}

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

.developers-container .section-title {
  color: white;
}

.developers-container .section-description {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.developers-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tool-card {
    flex-direction: column;
    text-align: center;
  }

  .tool-icon {
    width: 80px;
    height: 80px;
  }

  .developers-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .categories-section,
  .tools-section,
  .developers-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .category-card {
    padding: 1.5rem;
  }

  .tool-card {
    padding: 1.5rem;
    gap: 1rem;
  }
}
