/* Homepage Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%);
    color: #fff;
    padding: 4rem 0;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
}

.hero-content { max-width: 720px; }
.hero h1 { font-size: 3rem; margin-bottom: 0.5rem; font-weight: 700; }
.hero h2 { font-size: 1.8rem; margin-bottom: 1rem; font-weight: 500; opacity: 0.9; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-buttons .btn { padding: 0.75rem 1.5rem; border-radius: 2rem; font-weight: 500; transition: all 0.3s ease; }
.btn-primary { background-color: #10B981; color: white; }
.btn-secondary { background-color: #4F46E5; color: white; }
.btn-accent { background-color: #F59E0B; color: white; }

/* Category Sections */
.category-section { padding: 3rem 0; }
.category-section .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.category-section .section-header h2 { font-size: 2rem; }
.view-all-link { color: #4F46E5; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }

.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.tool-card { background-color: #fff; border-radius: 1rem; padding: 1.25rem; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; position: relative; }
.tool-card:hover { transform: translateY(-4px); box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.tool-category { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 1rem; font-size: 0.875rem; margin-bottom: 0.75rem; font-weight: 500; }
.tool-category.web { background-color: #DBEAFE; color: #1E40AF; }
.tool-category.ai { background-color: #D1FAE5; color: #065F46; }
.tool-category.software { background-color: #FEF3C7; color: #92400E; }
.tool-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.tool-description { color: #4B5563; }
.tool-meta { display: flex; justify-content: space-between; margin-top: 0.75rem; font-size: 0.875rem; color: #6B7280; }
.tool-link { display: inline-block; margin-top: 0.75rem; padding: 0.5rem 1rem; background-color: #4F46E5; color: white; border-radius: 0.5rem; text-align: center; font-weight: 500; transition: background-color 0.3s ease; }
.tool-link:hover { background-color: #4338CA; }

/* CTA Section */
.cta-section { padding: 4rem 0; margin: 3rem 0; background: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%); color: white; border-radius: 1rem; }
.cta-content { max-width: 720px; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.25rem; }
  .hero h2 { font-size: 1.25rem; }
  .hero-content { max-width: 100%; }
}