/* Home Page Styles */
.welcome-section {
    text-align: center;
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.tool-card.coming-soon {
    opacity: 0.6;
    cursor: default;
}

.tool-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.tool-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

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

.tool-card h3 {
    color: #667eea;
    margin: 0 0 1rem 0;
}

.tool-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.tool-home {
    text-align: center;
    padding: 2rem 0;
}

.tool-home .actions {
    margin-top: 2rem;
}

/* Recipe specific */
.recipe-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.recipe-box-header h2 {
    margin: 0;
}

.recipe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.recipe-header h2 {
    margin: 0;
}

.recipe-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .recipe-box-header,
    .recipe-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
