/* Homepage Specific Styles */

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px 40px;
    margin-bottom: 50px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    padding: 0 10px;
}

/* Tool Card */
.tool-card {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Tool Icon */
.tool-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon-active svg {
    color: var(--primary-color);
}

.tool-icon-coming-soon svg,
.tool-icon-development svg {
    color: #9CA3AF;
}

.tool-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.tool-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Tool Buttons */
.tool-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    width: 100%;
    max-width: 200px;
}

.tool-btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.tool-btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

.tool-btn-coming-soon {
    background-color: #FEF3C7;
    color: #000;
    cursor: not-allowed;
}

.tool-btn-coming-soon:disabled {
    opacity: 1;
}

.tool-btn-development {
    background-color: #E5E7EB;
    color: #000;
    cursor: not-allowed;
}

.tool-btn-development:disabled {
    opacity: 1;
}


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

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

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .tool-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px 30px;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .tool-card h3 {
        font-size: 1.1rem;
    }

    .tool-card p {
        font-size: 0.9rem;
    }
}

